:root {
  --navy: #0b2c52;
  --navy-2: #123f70;
  --navy-3: #08233f;
  --blue: #1565c0;
  --cyan: #23bdf0;
  --cyan-2: #65d9ff;
  --ink: #102033;
  --text: #35475c;
  --muted: #6d7f94;
  --line: #d8e3ee;
  --soft: #f4f8fc;
  --soft-2: #eaf6fd;
  --white: #ffffff;
  --shadow: 0 18px 52px rgba(8, 35, 63, .12);
  --shadow-soft: 0 12px 32px rgba(8, 35, 63, .08);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
  --font-title: "Poppins", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
svg { width: 1em; height: 1em; stroke-width: 2; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--cyan);
  color: var(--navy-3);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.topbar {
  background: var(--navy-3);
  color: rgba(255, 255, 255, .86);
  font-size: .84rem;
}
.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar__contact, .topbar__links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar__contact span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.topbar__contact svg { color: var(--cyan); }
.topbar a {
  text-decoration: none;
  transition: color .2s ease;
}
.topbar a:hover { color: var(--cyan-2); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(216, 227, 238, .82);
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(8, 35, 63, .08);
  background: rgba(255, 255, 255, .96);
}
.site-header__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--navy);
  text-decoration: none;
  min-width: 0;
}
.brand img {
  width: 174px;
  max-height: 52px;
  object-fit: contain;
}
.brand span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(35, 189, 240, .1);
  border: 1px solid rgba(35, 189, 240, .22);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 7px 12px;
  color: var(--text);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 700;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.site-nav a:hover, .site-nav a.is-active {
  color: var(--navy);
  background: var(--soft-2);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 14px;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 19px;
  border: 0;
  border-radius: 999px;
  color: var(--navy-3);
  background: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: .94rem;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  color: var(--navy-3);
  background: linear-gradient(135deg, var(--cyan), #5bd8ff);
  box-shadow: 0 12px 26px rgba(35, 189, 240, .28);
}
.btn--primary:hover { box-shadow: 0 16px 36px rgba(35, 189, 240, .34); }
.btn--light {
  color: var(--navy);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 28px rgba(6, 24, 43, .16);
}
.btn--outline {
  color: var(--navy);
  background: transparent;
  border: 1px solid rgba(21, 101, 192, .32);
}
.btn--outline:hover { background: var(--soft-2); }
.btn--large { min-height: 52px; padding-inline: 24px; }
.btn--block { width: 100%; }

.hero {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background: radial-gradient(circle at 18% 18%, rgba(35, 189, 240, .28), transparent 32%), linear-gradient(135deg, var(--navy-3) 0%, var(--navy) 52%, #0e477c 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -34% auto;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(35, 189, 240, .24), transparent 62%);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .78), transparent 92%);
  z-index: -3;
}
.hero__bg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 760px;
  height: 220px;
  border: 1px solid rgba(101, 217, 255, .18);
  border-radius: 999px;
  transform: translate(-50%, -50%) rotate(-12deg);
  z-index: -1;
}
.hero__bg::before, .hero__bg::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(101, 217, 255, .13);
  border-radius: inherit;
}
.hero__bg::after { inset: 52px; }
.hero__grid {
  min-height: 560px;
  padding: 54px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 410px);
  align-items: center;
  gap: 42px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero h1, .section h2, .quick-links h2, .site-footer h2 {
  font-family: var(--font-title);
  color: var(--ink);
  letter-spacing: -.04em;
}
.hero h1 {
  max-width: 740px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 4.45rem);
  line-height: .98;
}
.hero__lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.55;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}
.hero__badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 700;
}
.hero__badges svg { color: var(--cyan-2); }
.hero-form-card {
  position: relative;
  padding: 22px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: var(--radius);
  color: var(--text);
  box-shadow: 0 24px 72px rgba(4, 18, 35, .26);
  backdrop-filter: blur(18px);
}
.hero-form-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .72), rgba(35, 189, 240, .5), rgba(255, 255, 255, .18));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.form-card__head {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.form-card__icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(35, 189, 240, .18), rgba(21, 101, 192, .08));
  border: 1px solid rgba(21, 101, 192, .14);
}
.form-card__head strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}
.form-card__head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.4;
}

.section {
  padding: clamp(74px, 8vw, 106px) 0;
}
.section-soft {
  background: linear-gradient(180deg, var(--soft) 0%, #fff 100%);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .72fr);
  align-items: end;
  gap: 44px;
}
.section-heading h2, .quick-links h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.08;
}
.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}
.section-action { margin-top: 26px; }

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -24px;
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(216, 227, 238, .9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #f7fbfe 100%);
}
.trust-item > svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--blue);
}
.trust-item strong {
  display: block;
  color: var(--navy);
  line-height: 1.25;
}
.trust-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
}

.cards {
  display: grid;
  gap: 18px;
}
.cards--three { grid-template-columns: repeat(3, 1fr); }
.cards--benefits { grid-template-columns: repeat(4, 1fr); }
.card {
  position: relative;
  min-height: 100%;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 0 rgba(8, 35, 63, .03);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 189, 240, .52);
  box-shadow: var(--shadow-soft);
}
.card__icon, .proof-card > svg, .segment > svg {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(35, 189, 240, .16), rgba(21, 101, 192, .08));
  border: 1px solid rgba(21, 101, 192, .14);
  border-radius: 15px;
}
.card__icon svg, .proof-card > svg, .segment > svg {
  width: 22px;
  height: 22px;
}
.card h3, .segment h3, .step h3, .proof-card h3, .cta__box h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: var(--font-title);
  font-size: 1.07rem;
  line-height: 1.26;
  letter-spacing: -.025em;
}
.card p, .step p, .proof-card p, .cta__box p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.58;
}
.card--benefit:nth-child(1), .card--benefit:nth-child(4), .card--benefit:nth-child(7) {
  background: linear-gradient(180deg, #fff 0%, #f4fbff 100%);
}
.card--cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-2) 100%);
  border-color: rgba(21, 101, 192, .24);
}
.card--cta h3, .card--cta p:not(.eyebrow) { color: var(--white); }
.card--cta p:not(.eyebrow) { color: rgba(255, 255, 255, .74); }

.table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
th, td {
  padding: 17px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
thead th {
  color: var(--navy);
  background: var(--soft);
  font-size: .86rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
thead th:nth-child(2) {
  color: var(--white);
  background: var(--navy);
}
tbody th {
  color: var(--ink);
  font-weight: 700;
}
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
td.is-highlight {
  color: var(--navy);
  background: #eaf7fe;
  font-weight: 800;
}
.comparison__note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 16px 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.comparison__note svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--blue);
}
.comparison__note p { margin: 0; color: var(--muted); }
.comparison__note a { color: var(--blue); font-weight: 800; }

.segments {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.segment {
  padding: 24px 16px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 0 rgba(8, 35, 63, .03);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.segment:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 189, 240, .5);
  box-shadow: var(--shadow-soft);
}
.segment > svg { margin-inline: auto; margin-bottom: 14px; }
.segment h3 { font-size: .98rem; margin: 0; }

.how { background: #fff; }
.steps {
  list-style: none;
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
}
.step {
  position: relative;
  padding: 26px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}
.step::after {
  content: "";
  position: absolute;
  top: 46px;
  right: -18px;
  width: 18px;
  height: 1px;
  background: var(--line);
}
.step:last-child::after { display: none; }
.step > span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 14px;
  font-weight: 800;
}

.coverage__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  align-items: center;
}
.coverage__content {
  padding: 10px 0;
}
.coverage__content h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-title);
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.coverage__content p {
  margin: 16px 0 26px;
  color: var(--muted);
}
.coverage__panel {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.coverage__map {
  min-height: 156px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--blue);
  background:
    radial-gradient(circle at 20% 30%, rgba(35, 189, 240, .18), transparent 28%),
    linear-gradient(135deg, #f5fbff, #eaf6fd);
  border: 1px solid rgba(21, 101, 192, .12);
  border-radius: 18px;
}
.coverage__map svg { width: 42px; height: 42px; }
.coverage__map span { color: var(--navy); font-weight: 800; }
.coverage__locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.coverage__locations a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 13px;
  color: var(--text);
  background: var(--soft);
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  font-size: .93rem;
  font-weight: 700;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.coverage__locations a:hover {
  color: var(--navy);
  background: #eaf7fe;
  border-color: rgba(35, 189, 240, .36);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.proof-card {
  padding: 26px;
  background: linear-gradient(180deg, #fff, #f8fbfe);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}
.proof-card > svg { display: inline-block; }

.cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy) 56%, #0f477b 100%);
  overflow: hidden;
}
.cta__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 430px);
  align-items: center;
  gap: 38px;
}
.cta__grid::before {
  content: "";
  position: absolute;
  right: 22%;
  top: -110px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 189, 240, .22), transparent 65%);
  pointer-events: none;
}
.cta h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.5vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: -.04em;
}
.cta__content p:not(.eyebrow) {
  max-width: 660px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: 1.05rem;
}
.cta__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.cta__contacts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  font-size: .9rem;
}
.cta__contacts svg { color: var(--cyan-2); }
.cta__box {
  position: relative;
  z-index: 1;
  padding: 28px;
  color: var(--text);
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: var(--radius);
  box-shadow: 0 22px 58px rgba(0, 0, 0, .22);
}
.cta__box p { margin-bottom: 22px; }

.faq__grid {
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: 44px;
  align-items: start;
}
.faq__intro h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-title);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.faq__intro p:not(.eyebrow) {
  margin: 14px 0 24px;
  color: var(--muted);
}
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 20px;
  color: var(--navy);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 800;
}
.faq-question svg {
  flex: 0 0 auto;
  color: var(--blue);
  transition: transform .2s ease;
}
.faq-question[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer {
  padding: 0 20px 20px;
}
.faq-answer p {
  margin: 0;
  color: var(--muted);
}

.quick-links {
  padding: 54px 0;
  background: var(--soft);
}
.quick-links__inner {
  display: grid;
  grid-template-columns: .45fr 1fr;
  gap: 28px;
  align-items: center;
}
.quick-links h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
}
.quick-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.quick-links__grid a, .quick-links__grid button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  text-align: left;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.quick-links__grid button { width: 100%; }
.quick-links__grid a:hover, .quick-links__grid button:hover {
  transform: translateY(-2px);
  color: var(--navy);
  border-color: rgba(35, 189, 240, .42);
  box-shadow: var(--shadow-soft);
}
.quick-links__grid svg { color: var(--blue); }

.site-footer {
  padding: 58px 0 26px;
  color: rgba(255, 255, 255, .76);
  background: var(--navy-3);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 34px;
}
.site-footer .brand span { background: rgba(255, 255, 255, .08); color: var(--cyan-2); border-color: rgba(255, 255, 255, .14); }
.site-footer h2 {
  margin: 0 0 13px;
  color: var(--white);
  font-size: .98rem;
  letter-spacing: -.02em;
}
.site-footer p { margin: 8px 0 0; }
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}
.site-footer a, .site-footer button {
  color: rgba(255, 255, 255, .76);
  background: transparent;
  border: 0;
  padding: 0;
  text-decoration: none;
  text-align: left;
  transition: color .2s ease;
}
.site-footer a:hover, .site-footer button:hover { color: var(--cyan-2); }
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .9rem;
}
.site-footer__bottom p { margin: 0; }

.lead-form {
  display: grid;
  gap: 14px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.form-grid--compact { gap: 11px; }
.lead-form label {
  display: grid;
  gap: 7px;
}
.lead-form span {
  color: var(--navy);
  font-size: .82rem;
  font-weight: 800;
}
.lead-form input, .lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f7fbfe;
  border: 1px solid #c9dce9;
  border-radius: 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.lead-form--compact input { min-height: 46px; }
.lead-form textarea {
  resize: vertical;
  min-height: 112px;
}
.lead-form input:focus, .lead-form textarea:focus {
  background: #fff;
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(35, 189, 240, .15);
}
.lead-form input.is-invalid, .lead-form textarea.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, .12);
}
.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--blue);
  font-size: .9rem;
  font-weight: 800;
  text-align: center;
}
.form-status.is-error { color: #b42318; }
.form-note {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 55;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 18px;
  color: #fff;
  background: #1fb85c;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(31, 184, 92, .34);
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}
.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(31, 184, 92, .42);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.modal.is-open { display: flex; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 18, 35, .72);
  backdrop-filter: blur(7px);
}
.modal__dialog {
  position: relative;
  width: min(100%, 650px);
  max-height: calc(100vh - 44px);
  overflow: auto;
  padding: 30px;
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .34);
}
.modal__close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 50%;
}
.modal__header {
  padding-right: 44px;
  margin-bottom: 22px;
}
.modal__header h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.modal__header p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-header__inner { grid-template-columns: auto auto auto; justify-content: space-between; }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    padding: 14px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .site-nav a { justify-content: center; }
  .menu-toggle { display: inline-flex; order: 3; }
  .site-header__cta { order: 2; }
  .hero__grid { grid-template-columns: 1fr; min-height: auto; padding-top: 46px; }
  .hero h1 { max-width: 840px; }
  .hero-form-card { max-width: 640px; }
  .trust-strip { margin-top: 0; padding: 20px 0 0; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .cards--benefits { grid-template-columns: repeat(2, 1fr); }
  .segments { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .topbar__inner { justify-content: center; }
  .topbar__links { display: none; }
  .site-header__inner { min-height: 68px; gap: 14px; }
  .brand img { width: 150px; }
  .brand span { display: none; }
  .section-heading--split, .coverage__grid, .cta__grid, .faq__grid, .quick-links__inner { grid-template-columns: 1fr; }
  .cards--three, .proof-grid, .steps { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .quick-links__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .topbar { display: none; }
  .site-header__cta {
    min-height: 42px;
    padding: 10px 13px;
    font-size: .82rem;
  }
  .site-header__cta svg { display: none; }
  .site-nav.is-open { grid-template-columns: 1fr; left: 14px; right: 14px; }
  .hero__grid { padding: 38px 0 30px; gap: 28px; }
  .hero h1 { font-size: clamp(2rem, 12vw, 3rem); }
  .hero__lead { font-size: 1rem; }
  .hero__actions .btn { width: 100%; }
  .hero-form-card { padding: 18px; border-radius: 20px; }
  .form-grid, .form-grid--compact, .trust-strip__grid, .cards--benefits, .segments, .coverage__locations, .quick-links__grid, .site-footer__grid { grid-template-columns: 1fr; }
  .trust-strip__grid { padding: 12px; }
  .section { padding: 62px 0; }
  .table-wrap { overflow-x: auto; }
  .cta__box, .modal__dialog { padding: 22px; border-radius: 22px; }
  .modal { padding: 14px; }
  .modal__header { padding-right: 36px; }
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 12px 14px;
  }
  .floating-whatsapp span { display: none; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
