@font-face {
  font-family: "FF Dax";
  src: url("/fonts/ff-dax-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FF Dax";
  src: url("/fonts/ff-dax-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FF Dax";
  src: url("/fonts/ff-dax-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FF Dax Condensed";
  src: url("/fonts/ff-dax-condensed-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

: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, 0.12);
  --shadow-soft: 0 12px 32px rgba(8, 35, 63, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
  --font-title: "FF Dax Condensed", "FF Dax", Arial, sans-serif;
  --font-body: "FF Dax", Arial, 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 0.2s ease;
}
.skip-link:focus {
  top: 16px;
}

.topbar {
  background: var(--navy-3);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.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 0.2s ease;
}
.topbar a:hover {
  color: var(--cyan-2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 227, 238, 0.82);
  backdrop-filter: blur(16px);
  transition:
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(8, 35, 63, 0.08);
  background: rgba(255, 255, 255, 0.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, 0.1);
  border: 1px solid rgba(35, 189, 240, 0.22);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.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: 0.92rem;
  font-weight: 700;
  border-radius: 999px;
  transition:
    background 0.2s ease,
    color 0.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 0.2s ease,
    opacity 0.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: 0.94rem;
  line-height: 1.1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.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, 0.28);
}
.btn--primary:hover {
  box-shadow: 0 16px 36px rgba(35, 189, 240, 0.34);
}
.btn--light {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(6, 24, 43, 0.16);
}
.btn--whatsapp {
  color: #ffffff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.28);
}

.btn--whatsapp:hover {
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.34);
}

.btn--whatsapp img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
}
.btn--outline {
  color: var(--navy);
  background: transparent;
  border: 1px solid rgba(21, 101, 192, 0.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-color: var(--navy-3);
  background-image:
    linear-gradient(
      90deg,
      rgba(4, 18, 35, 0.84) 0%,
      rgba(8, 35, 63, 0.72) 42%,
      rgba(8, 35, 63, 0.34) 68%,
      rgba(8, 35, 63, 0.18) 100%
    ),
    url("/images/banner-pc.jpeg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}

.hero::before,
.hero::after,
.hero__bg {
  display: none;
}

.hero__grid {
  min-height: min(690px, calc(100vh - 114px));
  padding: 52px 0;
  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: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero h1,
.section h2,
.quick-links h2,
.site-footer h2 {
  font-family: var(--font-title);
  color: var(--ink);
  letter-spacing: -0.04em;
}
.hero h1 {
  max-width: 740px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 4.45rem);
  line-height: 0.98;
}
.hero__lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.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, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
}
.hero__badges svg {
  color: var(--cyan-2);
}
.hero-form-card {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  color: var(--text);
  box-shadow:
    0 24px 72px rgba(4, 18, 35, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.267);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  overflow: hidden;
}

.hero-form-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.342),
    rgba(35, 189, 240, 0.212),
    rgba(255, 255, 255, 0.089)
  );
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.hero-form-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(35, 189, 240, 0.16),
      transparent 38%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.04)
    );
  pointer-events: none;
}

.hero-form-card > * {
  position: relative;
  z-index: 1;
}

.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: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(21, 101, 192, 0.18);
  box-shadow: 0 10px 24px rgba(8, 35, 63, 0.08);
}

.form-card__head strong {
  display: block;
  color: var(--navy-3);
  font-size: 1.08rem;
  line-height: 1.25;
  font-weight: 800;
}

.form-card__head p {
  margin: 4px 0 0;
  color: var(--line);
  font-size: 0.9rem;
  line-height: 1.4;
}

.hero-form-card .lead-form span {
  color: var(--line);
}

.hero-form-card .lead-form input,
.hero-form-card .lead-form textarea {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(155, 184, 207, 0.74);
  color: var(--ink);
}

.hero-form-card .lead-form input::placeholder,
.hero-form-card .lead-form textarea::placeholder {
  color: rgba(53, 71, 92, 0.62);
}

.hero-form-card .form-status {
  color: var(--navy-3);
}

.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, 0.95fr) minmax(280px, 0.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, 0.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: 0.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, 0.03);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 189, 240, 0.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, 0.16),
    rgba(21, 101, 192, 0.08)
  );
  border: 1px solid rgba(21, 101, 192, 0.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: -0.025em;
}
.card p,
.step p,
.proof-card p,
.cta__box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.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, 0.24);
}
.card--cta h3,
.card--cta p:not(.eyebrow) {
  color: var(--white);
}
.card--cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.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: 0.86rem;
  letter-spacing: 0.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, 0.03);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.segment:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 189, 240, 0.5);
  box-shadow: var(--shadow-soft);
}
.segment > svg {
  margin-inline: auto;
  margin-bottom: 14px;
}
.segment h3 {
  font-size: 0.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: 0.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: -0.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, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, #f5fbff, #eaf6fd);
  border: 1px solid rgba(21, 101, 192, 0.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: 0.93rem;
  font-weight: 700;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.coverage__locations a:hover {
  color: var(--navy);
  background: #eaf7fe;
  border-color: rgba(35, 189, 240, 0.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, 0.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: -0.04em;
}
.cta__content p:not(.eyebrow) {
  max-width: 660px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.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, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.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, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
}
.cta__box p {
  margin-bottom: 22px;
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.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: -0.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 0.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: 0.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 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.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, 0.42);
  box-shadow: var(--shadow-soft);
}
.quick-links__grid svg {
  color: var(--blue);
}

.site-footer {
  padding: 58px 0 26px;
  color: rgba(255, 255, 255, 0.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, 0.08);
  color: var(--cyan-2);
  border-color: rgba(255, 255, 255, 0.14);
}
.site-footer h2 {
  margin: 0 0 13px;
  color: var(--white);
  font-size: 0.98rem;
  letter-spacing: -0.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, 0.76);
  background: transparent;
  border: 0;
  padding: 0;
  text-decoration: none;
  text-align: left;
  transition: color 0.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, 0.12);
  font-size: 0.9rem;
}
.site-footer__bottom p {
  margin: 0;
}

.site-footer__credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 96px;
  opacity: 0.82;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.site-footer__credit:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.site-footer__credit img {
  width: 118px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 640px) {
  .site-footer__credit {
    margin-right: 0;
  }

  .site-footer__credit img {
    width: 108px;
  }
}

.lead-form {
  display: grid;
  gap: 14px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.form-grid--compact {
  gap: 11px;
}
.form-grid--single {
  grid-template-columns: 1fr;
}
.lead-form label {
  display: grid;
  gap: 7px;
}
.lead-form span {
  color: var(--navy);
  font-size: 0.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 0.2s ease,
    box-shadow 0.2s ease,
    background 0.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, 0.15);
}
.lead-form input.is-invalid,
.lead-form textarea.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}
.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}
.form-status.is-error {
  color: #b42318;
}
.form-note {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 480;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 0;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.22));
}

.floating-whatsapp__icon {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: contain;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  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, 0.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, 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: -0.04em;
}
.modal__header p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.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, 0.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: 0.82rem;
  }
  .site-header__cta svg {
    display: none;
  }
  .site-nav.is-open {
    grid-template-columns: 1fr;
    left: 14px;
    right: 14px;
  }
  .hero {
    background-image:
      linear-gradient(
        180deg,
        rgba(4, 18, 35, 0.82) 0%,
        rgba(8, 35, 63, 0.66) 48%,
        rgba(8, 35, 63, 0.9) 100%
      ),
      url("/images/banner-mobile.jpeg");
    background-position: center top;
    background-size: cover;
  }

  .hero__grid {
    min-height: auto;
    padding: 46px 0 34px;
  }

  .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: 16px;
    bottom: 16px;
    width: 66px;
    height: 66px;
  }

  .floating-whatsapp__icon {
    width: 66px;
    height: 66px;
  }
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

.reviews-section {
  background:
    radial-gradient(
      circle at top left,
      rgba(35, 189, 240, 0.12),
      transparent 34%
    ),
    linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

.reviews-widget {
  margin-top: 34px;
  padding: 22px;
  border: 1px solid rgba(11, 44, 82, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(11, 44, 82, 0.09);
  overflow: hidden;
}

.reviews-widget > div {
  min-height: 220px;
}

@media (max-width: 767px) {
  .reviews-widget {
    margin-top: 24px;
    padding: 14px;
    border-radius: 22px;
  }
}
