:root {
  --bg: #131313;
  --surface: #1a1a1a;
  --surface-2: #202020;
  --text: #ffffff;
  --muted: #c9c9c9;
  --primary-soft: #ffec90;
  --primary: #ffe046;
  --accent-warm: #ed6a4b;
  --accent-blue: #1786fe;
  --border: #343434;
  --radius-pill: 99px;
  --radius-card: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

h1,
h2,
h3,
h4 {
  font-family: "Dela Gothic One", system-ui, sans-serif;
  margin: 0;
  line-height: 1.15;
  letter-spacing: 0.5px;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(19, 19, 19, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.desktop-nav {
  display: none;
  gap: 18px;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--muted);
}

.desktop-nav a:hover {
  color: var(--primary);
}

.mobile-menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #3a3a3a;
  background: #181818;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu-toggle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.mobile-menu-panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #141414;
}

.mobile-menu-panel.open {
  display: block;
}

.mobile-menu-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0 18px;
}

.mobile-menu-links {
  display: grid;
  gap: 10px;
}

.mobile-menu-links a {
  text-decoration: none;
  color: var(--text);
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 4px;
}

.mobile-menu-cta {
  margin-top: 12px;
}

.btn {
  min-height: 48px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #131313;
}

.btn-dark {
  background: #111;
  color: #fff;
  border-color: #111;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-sm {
  min-height: 40px;
  padding: 0 15px;
}

.site-header .nav-wrap > .btn {
  display: none;
}

.page {
  padding: 40px 0 72px;
}

.hero-page {
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #1a1a1a, #161616);
  padding: 26px;
}

.eyebrow {
  margin: 0 0 10px;
  display: inline-flex;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 224, 70, 0.12);
  color: var(--primary);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

.section {
  margin-top: 24px;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 22px;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 14px;
}

.card {
  border-radius: 18px;
  border: 1px solid #3a3a3a;
  background: var(--surface-2);
  padding: 16px;
}

.card h3 {
  font-size: 1rem;
}

.card p {
  margin-top: 8px;
  color: var(--muted);
}

.page-rates .grid-3 .card,
.page-rates .grid-2 .card,
.page-responsible .grid-3 .card,
.page-responsible .grid-2 .card,
.page-contact .grid-3 .card {
  border: none;
  background: none;
  box-shadow: none;
}

.contact-card {
  position: relative;
  padding-top: 18px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255, 224, 70, 0.12), rgba(255, 224, 70, 0.04));
  color: var(--primary);
  margin-bottom: 12px;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

th,
td {
  border-bottom: 1px solid #343434;
  padding: 12px 10px;
  text-align: left;
}

th {
  color: var(--primary);
  font-weight: 600;
}

.form-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border-radius: var(--radius-pill);
  border: 1px solid #666;
  background: transparent;
  color: var(--text);
  padding: 0 16px;
  font: inherit;
}

textarea {
  min-height: 140px;
  border-radius: 24px;
  padding: 12px 16px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: auto;
}

.status-box {
  margin-top: 10px;
  border-radius: 14px;
  border: 1px solid #3e3e3e;
  background: #181818;
  padding: 10px 12px;
  display: none;
}

.status-box.show {
  display: block;
}

.status-error {
  color: #ff9c89;
}

.status-success {
  color: #a9f2b4;
}

.legal-content h2 {
  margin: 18px 0 10px;
  font-size: 1.2rem;
}

.legal-content h3 {
  margin: 14px 0 8px;
  font-size: 1rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  margin: 8px 0 0 18px;
  padding: 0;
}

.badge-ssl {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  border-radius: var(--radius-pill);
  border: 1px solid #44556d;
  background: #111a27;
  color: #d4e8ff;
  padding: 0 12px;
  font-size: 0.82rem;
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid #2c2c2c;
  padding: 34px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.footer-group h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer-group a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  margin-bottom: 7px;
}

.footer-group .logo {
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.footer-group p,
.footer-group .small-copy {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.site-footer .footer-links {
  display: block;
}

.footer-disclaimer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #2f2f2f;
}

.footer-disclaimer p {
  color: #bdbdbd;
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0;
}

.footer-disclaimer p + p {
  margin: 10px 0 0;
}

.centered-box {
  max-width: 540px;
  margin: 0 auto;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 24px;
}

.success-check {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: #1f8b3d;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin: 0 auto 12px;
}

@media (min-width: 860px) {
  .mobile-menu-toggle,
  .mobile-menu-panel {
    display: none !important;
  }

  .site-header .nav-wrap > .btn {
    display: inline-flex;
  }

  .desktop-nav {
    display: flex;
  }

  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
