    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
    }

    :root {
      --dark:      #08152b;
      --navy:      #0d2044;
      --navy-mid:  #1a3a6e;
      --teal:      #3aadde;
      --teal-dim:  #2d96c8;
      --blue:      #3aadde;
      --white:     #ffffff;
      --bg:        #f7f8fc;
      --bg-alt:    #eef1f8;
      --text:      #0d1e3a;
      --muted:     #64748b;
      --border:    #e2e8f0;
      --radius-sm: 8px;
      --radius:    14px;
      --radius-lg: 20px;
    }

    body {
      font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ── NAV ──────────────────────────────────────────────── */
    nav {
      position: sticky;
      top: 0;
      z-index: 200;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 0 40px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: inherit;
    }
    .nav-logo-primary {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .nav-logo-primary > img {
      width: auto;
      height: 45px;
      object-fit: contain;
      display: block;
      flex-shrink: 0;
    }

    .nav-logo-fallback {
      display: flex;
      align-items: center;
      gap: 6px;
      text-decoration: none;
    }
    .nav-logo-fallback-icon {
      width: auto;
      height: 45px;
      display: block;
      flex-shrink: 0;
    }
    .nav-logo .wm,
    .nav-logo-fallback .wm {
      font-size: 20px;
      font-weight: 900;
      color: var(--text);
      letter-spacing: -0.5px;
    }
    .nav-logo .sub,
    .nav-logo-fallback .sub {
      font-size: 8px;
      font-weight: 700;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      color: var(--muted);
      display: block;
    }

    .nav-right { display: flex; align-items: center; gap: 20px; }

    .nav-link {
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      transition: color .15s;
    }
    .nav-link:hover { color: var(--text); }
    .nav-link-tel,
    .nav-link-tel:visited {
      color: var(--muted);
      -webkit-text-fill-color: var(--muted);
    }
    .nav-link-tel:hover {
      color: var(--text);
      -webkit-text-fill-color: var(--text);
    }

    .nav-cta {
      background: var(--teal);
      color: var(--dark);
      padding: 9px 20px;
      border-radius: 100px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      transition: background .15s, transform .1s;
      white-space: nowrap;
    }
    .nav-cta:hover { background: var(--teal-dim); transform: translateY(-1px); }

    /* ── HERO ─────────────────────────────────────────────── */
    .hero {
      background-color: var(--dark);
      background-image: radial-gradient(rgba(58,173,222,.26) 1px, transparent 1px);
      background-size: 26px 26px;
      background-attachment: fixed;
      position: relative;
      overflow: hidden;
      padding: 80px 40px 0;
    }

    /* Footer dot-grid — scoped via position:absolute */
    .dot-grid {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(58,173,222,.26) 1px, transparent 1px);
      background-size: 26px 26px;
      background-attachment: fixed;
      pointer-events: none;
      z-index: 0;
    }

    .float-card   { will-change: transform; }
    .hero-watermark { will-change: transform; }

    .hero-watermark {
      position: absolute;
      right: -40px;
      bottom: -60px;
      width: 520px;
      height: 520px;
      opacity: .04;
      pointer-events: none;
      z-index: 0;
      user-select: none;
    }
    .hero-watermark svg { width: 100%; height: 100%; }

    .hero::after {
      content: "";
      position: absolute;
      width: 700px; height: 700px;
      top: -220px; left: -180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(58,173,222,.09) 0%, transparent 65%);
      pointer-events: none;
      z-index: 0;
    }

    .hero-container {
      position: relative;
      z-index: 1;
      max-width: 1020px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: flex-end;
    }
    @media (max-width: 860px) {
      .hero-container {
        grid-template-columns: 1fr;
        align-items: start;
      }
    }

    .hero-left {
      padding-bottom: 80px;
      display: flex;
      flex-direction: column;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(58,173,222,.1);
      border: 1px solid rgba(58,173,222,.25);
      color: var(--teal);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 28px;
      width: fit-content;
    }
    .hero-badge::before {
      content: "";
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--teal);
      animation: pulse 2s infinite;
      flex-shrink: 0;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: .5; transform: scale(.75); }
    }

    .hero h1 {
      font-size: clamp(36px, 4.2vw, 60px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.06;
      letter-spacing: -2px;
      margin-bottom: 22px;
    }

    .hero h1 .highlight {
      position: relative;
      display: inline-block;
      color: var(--white);
    }
    .hero h1 .highlight::after {
      content: "";
      position: absolute;
      left: 0; right: 0;
      bottom: 4px;
      height: 3px;
      border-radius: 2px;
      background: var(--teal);
    }

    .hero-left p {
      font-size: 16px;
      color: rgba(255,255,255,.55);
      max-width: 420px;
      margin-bottom: 36px;
      line-height: 1.8;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 44px;
    }

    .hero-proof {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .proof-avatars { display: flex; }
    .proof-avatars span {
      width: 32px; height: 32px;
      border-radius: 50%;
      border: 2px solid var(--dark);
      background: var(--navy-mid);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      color: var(--teal);
      margin-left: -8px;
      overflow: hidden;
    }
    .proof-avatars span:first-child { margin-left: 0; }
    .proof-text { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.5; }
    .proof-text strong { color: rgba(255,255,255,.75); display: block; }

    .hero-right {
      position: relative;
      align-self: flex-end;
    }

    .photo-card {
      position: relative;
      border-radius: 24px 24px 0 0;
      overflow: hidden;
      box-shadow: 0 -24px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.07);
    }

    .photo-card img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      object-position: center top;
      transform: scale(1.12);
      will-change: transform;
      display: block;
    }

    .photo-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(8,21,43,.55) 0%, transparent 40%);
      pointer-events: none;
    }

    .float-card {
      position: absolute;
      z-index: 10;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      background: rgba(12,28,56,.82);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 16px;
      padding: 14px 18px;
      box-shadow: 0 8px 32px rgba(0,0,0,.4);
    }

    .float-card-1 { bottom: 32px; left: -28px; min-width: 170px; }
    .float-card-1 .fc-label {
      font-size: 10px; font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase; color: var(--teal); margin-bottom: 4px;
    }
    .float-card-1 .fc-val {
      font-size: 28px; font-weight: 900; color: var(--white);
      letter-spacing: -1px; line-height: 1; margin-bottom: 2px;
    }
    .float-card-1 .fc-sub { font-size: 11px; color: rgba(255,255,255,.45); }

    .float-card-2 { top: 28px; right: -24px; display: flex; align-items: center; gap: 10px; min-width: 200px; }
    .fc-icon {
      width: 36px; height: 36px; border-radius: 10px;
      background: rgba(58,173,222,.15); border: 1px solid rgba(58,173,222,.25);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; color: var(--teal);
    }
    .fc-icon svg { width: 17px; height: 17px; }
    .fc-text .fc-name { font-size: 13px; font-weight: 700; color: var(--white); }
    .fc-text .fc-role { font-size: 11px; color: rgba(255,255,255,.45); }

    .float-card-3 { bottom: 100px; right: -20px; text-align: center; min-width: 130px; }
    .fc-stars { color: #f59e0b; font-size: 13px; letter-spacing: 2px; margin-bottom: 4px; }
    .fc-rating { font-size: 22px; font-weight: 900; color: var(--white); line-height: 1; }
    .fc-reviews { font-size: 10px; color: rgba(255,255,255,.4); margin-top: 2px; }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--teal); color: var(--dark);
      padding: 14px 28px; border-radius: 100px; text-decoration: none;
      font-size: 15px; font-weight: 700;
      transition: background .15s, transform .1s;
    }
    .btn-primary:hover { background: var(--teal-dim); transform: translateY(-2px); }

    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
      color: rgba(255,255,255,.8); padding: 14px 28px; border-radius: 100px;
      text-decoration: none; font-size: 15px; font-weight: 600;
      transition: background .15s;
    }
    .btn-ghost:hover { background: rgba(255,255,255,.12); }

    .btn-icon { width: 16px; height: 16px; }

    /* ── TRUST STRIP ──────────────────────────────────────── */
    .trust-strip {
      background: var(--navy);
      border-bottom: 1px solid rgba(255,255,255,.06);
      padding: 20px 40px;
    }
    .trust-strip-inner {
      max-width: 1020px; margin: 0 auto;
      display: flex; align-items: center; justify-content: center;
      gap: 48px; flex-wrap: wrap;
    }
    .trust-item {
      display: flex; align-items: center; gap: 9px;
      color: rgba(255,255,255,.5); font-size: 13px;
      font-weight: 500; white-space: nowrap;
    }
    a.trust-item,
    a.trust-item:visited {
      text-decoration: none;
      color: rgba(255,255,255,.5);
      -webkit-text-fill-color: rgba(255,255,255,.5);
    }
    .trust-item a,
    .trust-item a:visited {
      color: inherit;
      text-decoration: none;
      font-weight: inherit;
      -webkit-text-fill-color: currentColor;
    }
    .trust-item svg { color: var(--teal); opacity: .8; width: 15px; height: 15px; flex-shrink: 0; }

    /* ── COVERAGE + SEO FAQ (below fold) ─────────────────── */
    .section-coverage {
      border-top: 1px solid var(--border);
    }
    .section-coverage .eyebrow,
    .section-coverage .section-title,
    .section-coverage .section-sub {
      text-align: center;
    }
    .section-sub--lg {
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
    }
    .coverage-callout {
      max-width: 1020px;
      margin: 0 auto 2rem;
      padding: 1.25rem 1.25rem 1.25rem 1.35rem;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      border-left: 3px solid var(--teal);
      box-shadow: 0 1px 2px rgba(13, 32, 68, 0.04);
    }
    .coverage-callout .coverage-lead {
      margin: 0;
      text-align: left;
    }
    .coverage-lead {
      font-size: 16px;
      line-height: 1.7;
      color: var(--text);
    }
    .coverage-terms-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
      margin: 0 0 2.5rem;
    }
    .coverage-term-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 24px;
      box-sizing: border-box;
      transition: box-shadow 0.2s;
    }
    .coverage-term-card:hover {
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
    }
    .coverage-term-card__title {
      font-size: 16px;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.3px;
      margin: 0 0 10px;
      line-height: 1.25;
    }
    .coverage-term-card__body {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.75;
      margin: 0;
    }
    .coverage-term-card__body strong {
      color: var(--text);
    }
    .seo-faq { margin-top: 0.5rem; }
    .seo-faq.seo-faq--coverage {
      margin-top: 2rem;
    }
    .seo-faq__title {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--navy);
      margin: 0 0 1rem;
      letter-spacing: -0.3px;
    }
    .seo-faq__list { display: flex; flex-direction: column; gap: 0.5rem; }
    .seo-faq__item {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--white);
      padding: 0 1rem;
    }
    .seo-faq__item summary {
      cursor: pointer;
      list-style: none;
      font-weight: 600;
      font-size: 15px;
      color: var(--navy);
      padding: 0.9rem 0;
      user-select: none;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }
    .seo-faq__item summary::-webkit-details-marker { display: none; }
    .seo-faq__item summary::after {
      content: "";
      width: 0.5rem;
      height: 0.5rem;
      border-right: 2px solid var(--teal);
      border-bottom: 2px solid var(--teal);
      transform: rotate(45deg);
      margin-top: 0.35rem;
      flex-shrink: 0;
      transition: transform 0.15s;
    }
    .seo-faq__item[open] summary::after { transform: rotate(225deg); }
    .seo-faq__a {
      padding: 0 0 1rem;
      font-size: 15px;
      line-height: 1.7;
      color: var(--muted);
      border-top: 1px solid var(--border);
    }
    .seo-faq__a p { margin: 0.75rem 0 0; }
    .seo-faq__a p:first-child { margin-top: 0.5rem; }
    .seo-faq__a strong { color: var(--text); }

    /* ── SECTION BASE ─────────────────────────────────────── */
    .section { padding: 88px 40px; }
    .section-alt { background: var(--white); }
    .section-dark { background: var(--navy); }
    .section-inner { max-width: 1020px; margin: 0 auto; }

    .eyebrow {
      font-size: 11px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--teal); margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(26px, 4vw, 40px); font-weight: 900;
      letter-spacing: -0.8px; line-height: 1.1;
      color: var(--text); margin-bottom: 16px;
    }
    .section-dark .section-title { color: var(--white); }

    .section-sub {
      font-size: 16px; color: var(--muted);
      max-width: 520px; margin-bottom: 52px; line-height: 1.7;
    }
    .section-dark .section-sub { color: rgba(255,255,255,.5); }

    /* ── HOW IT WORKS ─────────────────────────────────────── */
    .steps-wrapper { position: relative; }

    .steps-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2px; background: var(--border);
      border-radius: var(--radius-lg); overflow: hidden;
      position: relative; z-index: 1;
    }
    @media (max-width: 680px) { .steps-grid { grid-template-columns: 1fr; } }

    .step-card {
      background: var(--white); padding: 36px 30px 36px;
      position: relative; display: flex; flex-direction: column;
      align-items: center; text-align: center;
      opacity: 0; transform: translateY(20px);
      transition: opacity .9s ease, transform 1s cubic-bezier(0.34, 1.2, 0.64, 1);
    }
    .step-card.is-visible { opacity: 1; transform: translateY(0); }

    .sc-node-wrap { position: relative; z-index: 3; margin-bottom: 20px; flex-shrink: 0; }

    .sc-ring {
      position: absolute; top: 50%; left: 50%;
      width: 36px; height: 36px; border-radius: 50%;
      border: 1.5px solid var(--teal);
      transform: translate(-50%, -50%) scale(0.5);
      opacity: 0; pointer-events: none;
    }
    .sc-node-wrap.is-active .sc-ring {
      animation: ring-expand 1.8s cubic-bezier(0.2, 0.8, 0.4, 1) forwards;
    }
    @keyframes ring-expand {
      0%   { transform: translate(-50%, -50%) scale(0.5); opacity: .6; }
      100% { transform: translate(-50%, -50%) scale(2.6); opacity: 0; }
    }

    .sc-node {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--white); border: 2px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 800; color: var(--muted);
      position: relative;
      transition: background .7s ease, border-color .7s ease,
                  color .7s ease, transform .8s cubic-bezier(0.34, 1.56, 0.64, 1),
                  box-shadow .7s ease;
    }
    .sc-node-wrap.is-active .sc-node {
      background: var(--navy); border-color: var(--navy); color: var(--white);
      transform: scale(1.15); box-shadow: 0 4px 18px rgba(13,32,68,.3);
    }

    .step-card h3 { font-size: 17px; font-weight: 800; color: var(--text); letter-spacing: -0.3px; margin-bottom: 10px; }
    .step-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

    /* ── WHY IT MATTERS ───────────────────────────────────── */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
    }
    .stat-card {
      background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius); padding: 30px 24px;
    }
    .stat-card .num {
      font-size: 34px; font-weight: 900; letter-spacing: -1.5px;
      color: var(--white); line-height: 1; margin-bottom: 8px;
    }
    .stat-card .num .accent { color: var(--teal); }
    .stat-card p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.6; }

    /* ── ABOUT JAY ────────────────────────────────────────── */
    .about-grid {
      display: grid; grid-template-columns: 340px 1fr;
      gap: 64px; align-items: start;
    }
    @media (max-width: 720px) { .about-grid { grid-template-columns: 1fr; } }

    .about-photo { position: relative; }

    .photo-frame {
      width: 100%; aspect-ratio: 4/5;
      background: linear-gradient(160deg, #d4e8f5 0%, #b8d4ec 100%);
      border-radius: var(--radius-lg); border: 1px solid var(--border);
      display: flex; flex-direction: column; align-items: center;
      justify-content: center; gap: 12px; color: var(--muted);
      font-size: 13px; font-weight: 500; overflow: hidden;
      isolation: isolate;
    }
    .photo-frame::before,
    .photo-frame::after {
      content: none !important;
    }
    .photo-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      border-radius: var(--radius-lg);
      filter: none;
      mix-blend-mode: normal;
    }
    .photo-frame svg { width: 44px; height: 44px; opacity: .35; }

    .cred-badge {
      position: absolute; bottom: -16px; right: -12px;
      background: var(--dark); color: var(--white);
      padding: 12px 18px; border-radius: var(--radius);
      font-size: 13px; font-weight: 800;
      box-shadow: 0 8px 24px rgba(0,0,0,.22);
      border: 1px solid rgba(255,255,255,.08); line-height: 1.3;
    }
    .cred-badge .sub { font-size: 10px; font-weight: 500; color: var(--teal); display: block; margin-top: 2px; }

    .about-content { padding-top: 8px; }
    .about-content .section-title { margin-bottom: 4px; }

    .about-role { font-size: 14px; font-weight: 600; color: var(--teal); letter-spacing: .3px; margin-bottom: 28px; }
    .about-content p { font-size: 15px; color: #4a5568; line-height: 1.8; margin-bottom: 16px; }

    .phone-btn {
      display: inline-flex; align-items: center; gap: 9px;
      font-size: 15px; font-weight: 700;
      text-decoration: none; border: 1.5px solid var(--teal-dim);
      padding: 11px 22px; border-radius: 100px;
      transition: background .15s, color .15s;
    }
    .phone-btn,
    .phone-btn:visited {
      color: var(--teal-dim);
      -webkit-text-fill-color: var(--teal-dim);
    }
    .phone-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--dark); -webkit-text-fill-color: var(--dark); }
    .phone-btn svg { width: 15px; height: 15px; }

    /* ── TESTIMONIALS (Pinterest-style column masonry) ──── */
    .testi-masonry-wrap {
      position: relative;
      margin-top: 4px;
    }

    .testi-grid {
      column-count: 3;
      column-gap: 20px;
    }

    .testi-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 24px;
      transition: box-shadow 0.2s;
      break-inside: avoid;
      -webkit-column-break-inside: avoid;
      page-break-inside: avoid;
      margin-bottom: 20px;
      display: inline-block;
      width: 100%;
      box-sizing: border-box;
      vertical-align: top;
    }

    .testi-masonry-fade {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 100px;
      background: linear-gradient(
        to top,
        var(--bg) 0%,
        rgba(247, 248, 252, 0.65) 35%,
        rgba(247, 248, 252, 0) 100%
      );
      pointer-events: none;
      z-index: 1;
    }
    .testi-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.07); }

    .stars { color: #f59e0b; font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }

    .testi-card blockquote {
      font-size: 14px; color: #374151; font-style: italic;
      line-height: 1.75; margin-bottom: 20px;
      border-left: 3px solid var(--teal); padding-left: 14px;
    }
    .testi-footer {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 4px;
    }
    .testi-avatar {
      flex-shrink: 0;
    }
    .testi-avatar span {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2px solid #fff;
      box-shadow: 0 0 0 1px rgba(13, 32, 68, 0.12);
      background: #e8eef4;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      color: var(--navy);
    }
    .testi-author { font-size: 13px; font-weight: 700; color: var(--navy); flex: 1; min-width: 0; }
    .testi-author span { display: block; font-weight: 400; color: var(--muted); font-size: 12px; }

    /* ── CTA BANNER ───────────────────────────────────────── */
    .cta-section {
      background: var(--dark);
      padding: 96px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 70% at 50% 110%, rgba(58,173,222,.15) 0%, transparent 65%),
        radial-gradient(ellipse 50% 50% at 20% -10%, rgba(58,155,213,.1) 0%, transparent 55%);
      pointer-events: none;
    }

    .cta-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }

    .cta-section h2 {
      font-size: clamp(28px, 4.5vw, 46px);
      font-weight: 900;
      letter-spacing: -1px;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .cta-section p {
      font-size: 16px;
      color: rgba(255,255,255,.55);
      margin-bottom: 36px;
      line-height: 1.7;
    }

    .cta-proof {
      justify-content: center;
      margin-top: 22px;
    }
    .cta-proof .proof-text {
      text-align: left;
    }

    /* ── FOOTER ───────────────────────────────────────────── */
    footer {
      background: #040e1c; padding: 28px 40px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px; position: relative; overflow: hidden;
    }
    footer p { font-size: 12px; color: rgba(255,255,255,.3); position: relative; z-index: 1; }
    footer a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .15s; }
    footer a:hover { color: rgba(255,255,255,.8); }
    footer a.footer-tel,
    footer a.footer-tel:visited {
      color: rgba(255,255,255,.4);
      -webkit-text-fill-color: rgba(255,255,255,.4);
    }
    footer a.footer-tel:hover {
      color: rgba(255,255,255,.8);
      -webkit-text-fill-color: rgba(255,255,255,.8);
    }
    .footer-links { display: flex; gap: 20px; position: relative; z-index: 1; }

    /* ════════════════════════════════════════════════════════
       RESPONSIVE
       ════════════════════════════════════════════════════════ */

    /* ── Nav: hide text links before they wrap (logo + CTA stay) ── */
    @media (max-width: 1140px) {
      .nav-link { display: none; }
    }

    /* ── Tablet  (≤ 900px) ──────────────────────────────── */
    @media (max-width: 900px) {
      .section         { padding: 72px 32px; }
      .trust-strip     { padding: 18px 32px; }
      .cta-section     { padding: 80px 32px; }
      footer           { padding: 24px 32px; }
      .hero            { padding: 72px 32px 0; }
      .trust-strip-inner { gap: 32px; }
      .float-card-1 { left: 0; }
      .float-card-2 { right: 0; }
      .float-card-3 { right: 0; }
      .testi-grid { column-count: 2; }
    }

    /* ── Mobile  (≤ 640px) ──────────────────────────────── */
    @media (max-width: 640px) {

      nav { padding: 0 20px; height: 56px; }
      .nav-cta { padding: 8px 16px; font-size: 13px; }

      .hero { padding: 48px 20px 0; }
      .hero-container { gap: 28px; }
      .hero-left { padding-bottom: 40px; }
      .hero-badge { font-size: 10px; letter-spacing: 1px; padding: 5px 11px; margin-bottom: 20px; }
      .hero h1 { letter-spacing: -1.2px; margin-bottom: 18px; }
      .hero-left p { font-size: 15px; margin-bottom: 28px; }
      .hero-actions { margin-bottom: 32px; gap: 10px; }
      .btn-primary, .btn-ghost { padding: 13px 22px; font-size: 14px; }

      .float-card { display: none; }

      .photo-card { border-radius: 16px 16px 0 0; }
      .photo-card img {
        aspect-ratio: 4/3;
        object-position: center top;
        transform: none;
        will-change: auto;
      }
      .hero-right { padding-bottom: 0; }

      .trust-strip { padding: 14px 20px; }
      .trust-strip-inner {
        display: grid; grid-template-columns: 1fr 1fr;
        gap: 10px 16px; justify-items: start;
      }
      .trust-item { font-size: 12px; white-space: normal; }

      .section      { padding: 56px 20px; }
      .cta-section  { padding: 64px 20px; }
      .section-sub  { font-size: 15px; margin-bottom: 36px; }

      .step-card { padding: 28px 22px; }

      .stats-grid { grid-template-columns: 1fr 1fr; }
      .stat-card  { padding: 24px 18px; }
      .stat-card .num { font-size: 26px; }

      .about-grid { gap: 40px; }
      /* Taller frame than 3/2 so cover-crop favors width fill and keeps heads (with object-position: top) */
      .photo-frame { aspect-ratio: 4/5; }
      .cred-badge { right: 0; bottom: -14px; }

      .testi-grid { column-count: 1; }
      .testi-masonry-fade { height: 72px; }
      .cta-section h2 { letter-spacing: -0.5px; }
      .cta-section p  { font-size: 15px; }

      footer { padding: 20px; flex-direction: column; align-items: flex-start; gap: 14px; }
      .footer-links { flex-wrap: wrap; gap: 14px 20px; }
    }

    /* ── Extra-small phones  (≤ 390px) ─────────────────── */
    @media (max-width: 390px) {
      .hero-actions { flex-direction: column; align-items: stretch; }
      .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
      .trust-strip-inner { grid-template-columns: 1fr; gap: 8px; }
      .stats-grid { grid-template-columns: 1fr; }
      .hero-badge { font-size: 9px; }
    }
