*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --royal:   #2E2BD4;
    --indigo:  #3F37D0;
    --navy:    #090b32;
    --navy2:   #0f1260;
    --navy3:   #151A7A;
    --orange:  #EAA05F;
    --orange2: #D4894A;
    --amber:   #EAA05F;
    --amber2:  #D4894A;
    --purple:  #7A6BCB;
    --white:   #ffffff;
    --off:     #D8CCC3;
    --neutral: #CFC6BF;
    --muted:   #b8aed9;
    --border:  rgba(255,255,255,0.085);
    --serif:   'Playfair Display', Georgia, serif;
    --sans:    'Plus Jakarta Sans', system-ui, sans-serif;
    --content-max: 1120px;
    --page-pad: clamp(20px, 4vw, 48px);
    --radius:  10px;
    --radius-sm: 6px;
    --shadow-card: 0 20px 48px -28px rgba(0,0,0,0.55);
    --surface-inset: inset 0 1px 0 rgba(255,255,255,0.06);
    --bg-light:       #ffffff;
    --bg-light-soft:  #f4f6fb;
    --text-on-light:  #090b32;
    --muted-on-light: #5c5878;
    --border-on-light: rgba(9,11,50,0.1);
    --shadow-on-light: 0 12px 36px -16px rgba(9,11,50,0.12);
  }

  html {
    scroll-behavior: auto;
  }

  body {
    font-family: var(--sans);
    background: var(--navy);
    color: var(--white);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .shell {
    width: 100%;
    max-width: var(--content-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(9,11,50,0.92);
    backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid var(--border);
    padding: 0;
  }
  nav .shell {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
  }
  .nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--sans);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--amber);
    letter-spacing: -0.02em;
    text-decoration: none;
  }
  .nav-logo-img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
  }
  .nav-logo-text {
    line-height: 1.25;
  }
  .nav-logo-text span { color: var(--white); font-weight: 600; }
  .nav-phone {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.92rem; font-weight: 600; color: var(--white);
    text-decoration: none;
  }
  .nav-phone .phone-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4caf50;
    animation: pulse 1.8s infinite;
  }
  @keyframes pulse {
    0%,100%{ box-shadow: 0 0 0 0 rgba(76,175,80,0.5); }
    50%{ box-shadow: 0 0 0 6px rgba(76,175,80,0); }
  }
  @keyframes pulse-red {
    0%,100%{ box-shadow: 0 0 0 0 rgba(229,57,53,0.45); }
    50%{ box-shadow: 0 0 0 8px rgba(229,57,53,0); }
  }
  .nav-cta {
    background: var(--amber); color: var(--navy);
    padding: 10px 22px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.8125rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--amber2); }
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
  }

  /* ── HERO ── */
  .hero {
    padding: 112px 0 72px;
    background:
      linear-gradient(155deg, rgba(63,55,208,0.14) 0%, transparent 48%),
      radial-gradient(ellipse 90% 55% at 85% 15%, rgba(234,160,95,0.09) 0%, transparent 52%),
      radial-gradient(ellipse 65% 50% at 12% 85%, rgba(63,55,208,0.18) 0%, transparent 58%),
      var(--navy);
  }
  .hero .shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 72px);
    align-items: start;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(63,55,208,0.12);
    border: 1px solid rgba(63,55,208,0.35);
    color: var(--orange);
    font-size: 0.8125rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 9px 18px; border-radius: 100px;
    margin-bottom: 28px;
  }
  .hero-badge::before {
    content: '';
    width: 8px; height: 8px; border-radius: 50%;
    background: #e53935;
    animation: pulse-red 2.4s infinite;
  }
  .hero-copy h1 {
    font-family: var(--serif);
    font-size: clamp(2.35rem, 4.2vw, 3.45rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 22px;
    letter-spacing: -0.02em;
  }
  h1 em {
    font-style: normal;
    color: var(--amber);
  }
  .hero-sub {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 500px;
    margin-bottom: 36px;
    line-height: 1.7;
  }
  .cta-group {
    display: flex; flex-wrap: wrap; gap: 14px;
    align-items: center;
  }
  .btn-primary {
    background: var(--amber); color: var(--navy);
    padding: 15px 28px; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 0.9375rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: transform 0.15s, background 0.2s;
    display: inline-block;
    box-shadow: var(--surface-inset), 0 12px 28px -12px rgba(234,160,95,0.35);
  }
  .btn-primary:hover { background: var(--amber2); transform: translateY(-1px); }

  .btn-outline {
    border: 1px solid rgba(255,255,255,0.22);
    color: var(--white);
    padding: 14px 26px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.9375rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--amber); background: rgba(245,166,35,0.08); }

  /* ── VIDEO CARD ── */
  .hero-video {
    position: relative;
  }
  .video-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--navy2);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    aspect-ratio: 16/9;
    cursor: pointer;
  }
  .video-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, #090b32 0%, #151A7A 100%);
  }
  .play-btn {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--amber);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 24px -8px rgba(234,160,95,0.45);
  }
  .play-btn:hover { transform: scale(1.05); box-shadow: 0 12px 32px -8px rgba(234,160,95,0.5); }
  .play-btn svg { margin-left: 4px; }
  .video-label {
    font-size: 0.88rem; color: var(--muted); text-align: center;
  }
  .video-label strong { color: var(--white); display: block; margin-bottom: 4px; font-size: 1rem; }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--navy2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
  }
  .trust-bar .shell {
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: center;
    gap: 10px 12px;
  }
  .trust-bar .trust-divider {
    display: none;
  }
  .trust-bar .trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    background: var(--white);
    color: var(--text-on-light);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: 0 10px 28px -14px rgba(0,0,0,0.45);
  }
  .trust-bar .trust-item .icon {
    width: 20px; height: 20px;
    color: var(--amber);
    flex-shrink: 0;
  }

  /* ── SECTIONS ── */
  section { padding: 96px 0; }

  .section-tag {
    font-size: 0.6875rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 14px;
  }
  h2 {
    font-family: var(--sans);
    font-weight: 700;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    line-height: 1.18;
    letter-spacing: -0.035em;
    color: var(--white);
    margin-bottom: 18px;
  }
  h2 em { font-style: normal; color: var(--amber); }
  .lead {
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 48px;
    line-height: 1.65;
  }

  /* ── LIGHT SECTIONS ── */
  .section--light {
    background: var(--bg-light);
    color: var(--text-on-light);
  }
  .section--light h2 {
    color: var(--text-on-light);
  }
  .section--light h2 em {
    color: var(--amber);
  }
  .section--light .lead {
    color: var(--muted-on-light);
  }

  .section--light .step {
    background: var(--bg-light-soft);
    border: 1px solid var(--border-on-light);
    border-top: 2px solid var(--royal);
    box-shadow: var(--shadow-on-light);
  }
  .section--light .step-num {
    color: rgba(46,43,212,0.14);
  }
  .section--light .step-icon {
    background: rgba(122,107,203,0.14);
  }
  .section--light .step h3 {
    color: var(--text-on-light);
  }
  .section--light .step p {
    color: var(--muted-on-light);
  }

  .section--light .why-title {
    color: var(--text-on-light);
  }
  .section--light .why-desc {
    color: var(--muted-on-light);
  }
  .section--light .why-check {
    background: rgba(122,107,203,0.1);
    border-color: rgba(122,107,203,0.35);
  }

  .section--light .profile-card {
    background: var(--bg-light-soft);
    border: 1px solid var(--border-on-light);
    border-top: 2px solid var(--royal);
    box-shadow: var(--shadow-on-light);
  }
  .section--light .profile-photo-wrap {
    background: var(--bg-light);
  }
  .section--light .profile-name {
    color: var(--text-on-light);
  }
  .section--light .profile-bio {
    color: var(--muted-on-light);
  }

  .section--light.section--soft {
    background: var(--bg-light-soft);
  }
  .testimonials-section.section--light .testimonial {
    background: var(--bg-light);
    border: 1px solid var(--border-on-light);
    box-shadow: var(--shadow-on-light);
  }
  .testimonials-section.section--light.section--soft .testimonial {
    background: var(--bg-light);
  }
  .section--light .testimonial blockquote {
    color: var(--muted-on-light);
  }
  .section--light .reviewer-name {
    color: var(--text-on-light);
  }
  .section--light .reviewer-role {
    color: var(--muted-on-light);
  }
  .section--light .reviewer {
    border-top-color: var(--border-on-light);
  }

  /* ── PROBLEM / ALERT ── */
  .alert-section { background: var(--navy2); }
  .alert-box {
    background: rgba(122,107,203,0.06);
    border: 1px solid rgba(122,107,203,0.22);
    border-radius: var(--radius-sm);
    padding: 32px 36px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px 28px;
    align-items: start;
    margin-bottom: 40px;
  }
  .alert-icon {
    width: 48px; height: 48px;
    background: rgba(122,107,203,0.14);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--purple);
    font-size: 1.5rem;
    flex-shrink: 0;
  }
  .alert-title {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 8px;
  }
  .alert-body { color: var(--muted); line-height: 1.7; }
  .alert-body strong { color: var(--off); }

  .stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .stat-card {
    background: var(--navy3);
    border: 1px solid var(--border);
    border-bottom: 2px solid var(--royal);
    border-radius: var(--radius-sm);
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--surface-inset);
  }
  .stat-number {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 2.25rem;
    letter-spacing: -0.03em;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 8px;
  }
  .stat-label { font-size: 0.88rem; color: var(--muted); }

  /* ── HOW IT WORKS ── */
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }
  .step {
    background: var(--navy2);
    border: 1px solid var(--border);
    border-top: 2px solid var(--royal);
    border-radius: var(--radius-sm);
    padding: 32px 26px;
    position: relative;
    box-shadow: var(--surface-inset);
  }
  .step-num {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 2.75rem;
    color: rgba(122,107,203,0.2);
    position: absolute;
    top: 16px; right: 20px;
    line-height: 1;
    font-weight: 900;
  }
  .step-icon {
    width: 44px; height: 44px;
    background: rgba(122,107,203,0.12);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  .step h3 {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 1.0625rem;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 10px;
  }
  .step p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }

  /* ── COVERAGE GRID ── */
  .coverage-section { background: var(--navy2); }
  .coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
  }
  .coverage-item {
    background: var(--navy3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 22px 20px;
    box-shadow: var(--surface-inset);
    display: flex; gap: 14px; align-items: flex-start;
  }
  .cov-icon {
    width: 38px; height: 38px; flex-shrink: 0;
    background: rgba(122,107,203,0.12);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
  }
  .cov-title { font-weight: 600; font-size: 0.95rem; color: var(--white); margin-bottom: 4px; }
  .cov-desc { font-size: 0.83rem; color: var(--muted); }

  .coverage-cta-wrap {
    margin-top: 40px;
    display: flex;
    justify-content: center;
  }

  /* ── WHY US ── */
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .why-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
  .why-item {
    display: flex; gap: 16px; align-items: flex-start;
  }
  .why-check {
    width: 28px; height: 28px; flex-shrink: 0;
    background: rgba(122,107,203,0.14);
    border: 1px solid rgba(122,107,203,0.35);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--purple);
    margin-top: 2px;
  }
  .why-check svg { width: 14px; height: 14px; }
  .why-title { font-weight: 600; color: var(--white); margin-bottom: 4px; }
  .why-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

  .profile-card {
    background: var(--navy2);
    border: 1px solid var(--border);
    border-top: 2px solid var(--royal);
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--shadow-card), var(--surface-inset);
  }
  .profile-photo-wrap {
    margin-bottom: 22px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    line-height: 0;
    box-shadow: var(--surface-inset);
    background: var(--navy3);
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .profile-photo {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
  }
  .profile-name {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 4px;
  }
  .profile-title { font-size: 0.88rem; color: var(--amber); margin-bottom: 20px; }
  .profile-bio { font-size: 0.92rem; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
  .badges { display: flex; flex-wrap: wrap; gap: 8px; }
  .profile-cta-wrap {
    margin-top: 24px;
  }
  .profile-cta {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
  .badge {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.02em;
    padding: 6px 12px; border-radius: 100px;
    background: rgba(122,107,203,0.12);
    border: 1px solid rgba(122,107,203,0.28);
    color: var(--purple);
  }

  /* ── TESTIMONIALS ── */
  .testimonials-section { background: var(--navy2); }
  .testimonials-section.section--light.section--soft {
    background: var(--bg-light-soft);
    color: var(--text-on-light);
  }
  .testimonials-section.section--light.section--soft h2 {
    color: var(--text-on-light);
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  .testimonial {
    background: var(--navy3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 28px 24px;
    box-shadow: var(--surface-inset);
  }
  .stars {
    color: var(--amber);
    font-size: 0.9rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
  }
  .testimonial blockquote {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--off);
    line-height: 1.65;
    margin-bottom: 20px;
    font-style: normal;
    letter-spacing: -0.01em;
  }
  .reviewer {
    display: flex; gap: 12px; align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 16px;
  }
  .reviewer-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(122,107,203,0.14);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700; color: var(--purple);
    border: 1px solid rgba(122,107,203,0.28);
    flex-shrink: 0;
  }
  .reviewer-name { font-size: 0.9rem; font-weight: 600; color: var(--white); }
  .reviewer-role { font-size: 0.78rem; color: var(--muted); }

  .reviews-more {
    margin-top: 36px;
    text-align: center;
  }
  .reviews-more a {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--royal);
    text-decoration: none;
    transition: color 0.2s;
  }
  .reviews-more a:hover {
    color: var(--amber);
  }
  .section--light .reviews-more a {
    color: var(--royal);
  }
  .section--light .reviews-more a:hover {
    color: var(--amber2);
  }

  /* ── FORM SECTION ── */
  .form-section {
    background:
      linear-gradient(175deg, rgba(63,55,208,0.12) 0%, transparent 45%),
      radial-gradient(ellipse 65% 55% at 90% 85%, rgba(234,160,95,0.07) 0%, transparent 58%),
      var(--navy);
    scroll-margin-top: 88px;
  }
  .form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .form-left h2 { margin-bottom: 16px; }
  .form-left .lead { margin-bottom: 32px; }
  .trust-mini { display: flex; flex-direction: column; gap: 12px; }
  .trust-mini-item {
    display: flex; gap: 10px; align-items: center;
    font-size: 0.9rem; color: var(--muted);
  }
  .trust-mini-item svg { color: var(--orange); flex-shrink: 0; width: 16px; height: 16px; }

  .form-card {
    background: var(--navy2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 38px 34px;
    box-shadow: var(--shadow-card), var(--surface-inset);
  }
  .form-card h3 {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 1.375rem;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 6px;
  }
  .form-card .form-sub {
    font-size: 0.9rem; color: var(--muted);
    margin-bottom: 28px;
  }
  .form-group { margin-bottom: 18px; }
  label {
    display: block;
    font-size: 0.85rem; font-weight: 600;
    color: var(--off); margin-bottom: 6px;
  }
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    width: 100%;
    background: var(--navy3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
  }
  input::placeholder, textarea::placeholder { color: rgba(184,174,217,0.45); }
  input:focus, select:focus, textarea:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(245,166,35,0.12);
  }
  select { cursor: pointer; }
  select option { background: var(--navy2); }
  textarea { resize: vertical; min-height: 90px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .submit-btn {
    width: 100%;
    background: var(--amber); color: var(--navy);
    border: none; border-radius: var(--radius-sm);
    padding: 16px; font-family: var(--sans);
    font-size: 1rem; font-weight: 700;
    cursor: pointer; margin-top: 8px;
    transition: background 0.2s, transform 0.15s;
  }
  .submit-btn:hover { background: var(--amber2); transform: translateY(-1px); }
  .form-disclaimer {
    text-align: center;
    font-size: 0.78rem; color: var(--muted);
    margin-top: 14px;
    line-height: 1.5;
  }
  .success-msg {
    display: none;
    background: rgba(76,175,80,0.1);
    border: 1px solid rgba(76,175,80,0.3);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    text-align: center;
    color: #81c784;
    font-weight: 600;
    margin-top: 16px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--navy2);
    border-top: 1px solid var(--border);
    padding: 52px 0 36px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-logo {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
    color: var(--amber);
    text-decoration: none;
    display: block; margin-bottom: 12px;
  }
  .footer-logo span { color: var(--white); }
  .footer-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; max-width: 280px; }
  .footer-h { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--off); margin-bottom: 14px; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { font-size: 0.9rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--amber); }
  .footer-contact { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-contact li { font-size: 0.9rem; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; }
  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.82rem; color: var(--muted);
    flex-wrap: wrap; gap: 10px;
  }

  /* ── STICKY CTA (mobile) ── */
  .sticky-cta {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 99;
    padding: 14px 20px;
    background: var(--navy2);
    border-top: 1px solid var(--border);
    text-align: center;
  }
  .sticky-cta a {
    background: var(--amber); color: var(--navy);
    font-weight: 700; font-size: 1rem;
    padding: 13px 0; border-radius: var(--radius-sm);
    display: block; text-decoration: none;
    width: 100%;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero { padding-top: 100px; }
    .hero .shell { grid-template-columns: 1fr; }
    .hero-video { order: -1; }
    .coverage-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .form-container { grid-template-columns: 1fr; gap: 40px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-phone { display: none; }
    .sticky-cta { display: block; }
    body { padding-bottom: 80px; }
    .nav-logo {
      align-items: flex-start;
    }
    .nav-logo-img {
      margin-top: 2px;
    }
    .nav-logo-text {
      line-height: 1.12;
    }
  }
  @media (max-width: 600px) {
    section { padding: 72px 0; }
    .form-row { grid-template-columns: 1fr; }
    .alert-box { grid-template-columns: 1fr; }
    .trust-divider { display: none; }
    .coverage-grid { grid-template-columns: 1fr; }
    .nav-logo-text {
      line-height: 1.06;
    }
  }

  /* Fade-in on scroll */
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /*
   * WordPress / parent themes often set height:100% + overflow:hidden on body
   * for boxed layouts. That traps wheel scrolling on desktop while touch still pans.
   * Scoped to this landing template via body.summit-landing-page (see template PHP).
   */
  body.summit-landing-page {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    height: auto !important;
    min-height: 100vh !important;
    position: relative !important;
    overscroll-behavior-y: auto;
    touch-action: pan-y;
  }
