:root {
      --navy:       #0a1628;
      --navy-mid:   #112240;
      --navy-light: #1a3260;
      --blue:       #1a6ef5;
      --blue-lite:  #3d8bff;
      --blue-pale:  #e8f0fe;
      --orange:     #f97316;
      --orange-dk:  #ea6c0a;
      --orange-pale:#fff3e8;
      --green:      #16a34a;
      --cream:      #f8f5f0;
      --gray:       #6b7280;
      --gray-lt:    #9ca3af;
      --light:      #e8ecf4;
      --white:      #ffffff;
      --radius:     12px;
      --shadow-sm:  0 2px 12px rgba(10,22,40,.08);
      --shadow:     0 8px 32px rgba(10,22,40,.14);
      --shadow-lg:  0 20px 60px rgba(10,22,40,.18);
    }

    /* ── RESET ──────────────────────────────────────────── */
    , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      color: var(--navy);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    /* ── UTIL ───────────────────────────────────────────── */
    .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 88px 24px; }
    .section-label {
      font-family: 'Sora', sans-serif;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 10px;
    }
    .section-title {
      font-family: 'Sora', sans-serif;
      font-size: clamp(1.75rem, 3.2vw, 2.6rem);
      font-weight: 800;
      line-height: 1.18;
      letter-spacing: -.4px;
      color: var(--navy);
      margin-bottom: 14px;
    }
    .section-sub {
      font-size: 1.02rem;
      color: var(--gray);
      max-width: 560px;
      margin-bottom: 52px;
    }

    /* ── TOP BAR ────────────────────────────────────────── */
    .topbar {
      background: var(--navy);
      color: rgba(255,255,255,.75);
      font-size: .8rem;
      padding: 8px 24px;
      display: flex;
      justify-content: center;
      gap: 28px;
      flex-wrap: wrap;
    }
    .topbar-item { display: flex; align-items: center; gap: 6px; }
    .topbar-item svg { color: var(--orange); flex-shrink:0; }

    /* ── NAV ────────────────────────────────────────────── */
    nav {
      background: var(--white);
      border-bottom: 1px solid var(--light);
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: var(--shadow-sm);
    }
    .logo {
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: 1.22rem;
      color: var(--navy);
      letter-spacing: -.3px;
    }
    .logo span { color: var(--blue); }
    .logo em {
      font-style: normal;
      font-size: .7rem;
      font-weight: 600;
      color: var(--gray-lt);
      display: block;
      letter-spacing: .04em;
      margin-top: -4px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-size: .9rem;
      font-weight: 500;
      color: var(--gray);
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--navy); }
    .nav-cta {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .btn-nav-call {
      display: flex;
      align-items: center;
      gap: 7px;
      background: var(--orange);
      color: var(--white);
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: .88rem;
      padding: 10px 20px;
      border-radius: 8px;
      transition: background .2s, transform .15s;
      white-space: nowrap;
    }
    .btn-nav-call:hover { background: var(--orange-dk); transform: translateY(-1px); }
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      color: var(--navy);
    }

    /* ── HERO ───────────────────────────────────────────── */
    .hero {
      background: var(--navy);
      position: relative;
      overflow: hidden;
      padding: 100px 24px 120px;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 100% 0%, rgba(26,110,245,.28) 0%, transparent 65%),
        radial-gradient(ellipse 50% 60% at 0% 100%, rgba(249,115,22,.15) 0%, transparent 60%),
        radial-gradient(ellipse 30% 40% at 50% 50%, rgba(26,110,245,.08) 0%, transparent 70%);
    }
    /* Decorative grid pattern */
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
    }
    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 1140px;
      margin: 0 auto;
      text-align: center;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(249,115,22,.15);
      border: 1px solid rgba(249,115,22,.35);
      color: #ffb347;
      font-size: .78rem;
      font-weight: 700;
      padding: 6px 16px;
      border-radius: 24px;
      margin-bottom: 24px;
      letter-spacing: .06em;
      text-transform: uppercase;
    }
    .hero-badge-dot {
      width: 6px; height: 6px;
      background: var(--orange);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: .5; transform: scale(1.4); }
    }
    .hero h1 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(2.4rem, 5.5vw, 4rem);
      font-weight: 800;
      line-height: 1.12;
      color: var(--white);
      letter-spacing: -.6px;
      margin-bottom: 22px;
      max-width: 820px;
      margin-left: auto;
      margin-right: auto;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--orange);
      position: relative;
    }
    .hero-sub {
      font-size: 1.15rem;
      color: rgba(255,255,255,.68);
      max-width: 580px;
      margin: 0 auto 44px;
      line-height: 1.65;
    }

    /* ── ZIP SEARCH ─────────────────────────────────────── */
    .zip-form {
      display: flex;
      max-width: 520px;
      margin: 0 auto 48px;
      background: var(--white);
      border-radius: 14px;
      padding: 8px 8px 8px 20px;
      box-shadow: 0 16px 48px rgba(0,0,0,.3);
      align-items: center;
      gap: 10px;
    }
    .zip-form-icon { color: var(--gray); flex-shrink:0; }
    .zip-input {
      flex: 1;
      border: none;
      outline: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 1.05rem;
      color: var(--navy);
      background: transparent;
      min-width: 0;
    }
    .zip-input::placeholder { color: var(--gray-lt); }
    .zip-btn {
      background: var(--blue);
      color: var(--white);
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: .92rem;
      padding: 12px 22px;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      transition: background .2s, transform .15s;
      flex-shrink: 0;
    }
    .zip-btn:hover { background: var(--blue-lite); transform: translateY(-1px); }
    .zip-hint {
      font-size: .8rem;
      color: rgba(255,255,255,.4);
      margin-top: -32px;
      margin-bottom: 48px;
    }

    /* ── HERO TRUST ─────────────────────────────────────── */
    .hero-trust {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 28px;
    }
    .hero-trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,.7);
      font-size: .88rem;
    }
    .hero-trust-item svg { color: var(--orange); }

    /* ── WAVE ───────────────────────────────────────────── */
    .wave { display: block; line-height: 0; }
    .wave svg { display: block; width: 100%; }

    /* ── CITY CARDS ─────────────────────────────────────── */
    .cities-section { background: var(--cream); padding: 88px 24px; }
    .city-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }
    .city-card {
      background: var(--white);
      border: 1.5px solid var(--light);
      border-radius: 16px;
      padding: 26px 22px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      transition: box-shadow .2s, transform .2s, border-color .2s;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    .city-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--blue);
      transform: scaleX(0);
      transition: transform .25s;
      transform-origin: left;
    }
    .city-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-4px);
      border-color: rgba(26,110,245,.2);
    }
    .city-card:hover::before { transform: scaleX(1); }
    .city-flag { font-size: 1.6rem; }
    .city-name {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--navy);
    }
    .city-state {
      font-size: .8rem;
      color: var(--gray);
    }
    .city-services {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-top: 4px;
    }
    .city-service-tag {
      background: var(--blue-pale);
      color: var(--blue);
      font-size: .72rem;
      font-weight: 600;
      padding: 3px 8px;
      border-radius: 20px;
    }
    .city-link {
      display: flex;
      align-items: center;
      gap: 5px;
      color: var(--blue);
      font-size: .82rem;
      font-weight: 600;
      margin-top: auto;
    }

    /* ── SERVICES OVERVIEW ──────────────────────────────── */
    .services-section { background: var(--white); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .service-card {
      border: 1.5px solid var(--light);
      border-radius: 18px;
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: box-shadow .2s, transform .2s;
      position: relative;
      overflow: hidden;
    }
    .service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
    .service-icon-wrap {
      width: 52px; height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      flex-shrink: 0;
    }
    .service-card h3 {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--navy);
    }
    .service-card p { font-size: .88rem; color: var(--gray); line-height: 1.55; }
    .service-card-link {
      margin-top: auto;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: .84rem;
      font-weight: 600;
      color: var(--blue);
    }

    /* ── HOW IT WORKS ───────────────────────────────────── */
    .how-section { background: var(--navy); padding: 88px 24px; }
    .how-section .section-label { color: #5b9aff; }
    .how-section .section-title { color: var(--white); }
    .how-section .section-sub { color: rgba(255,255,255,.55); }
    .steps-track {
      display: grid;
      grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
      align-items: center;
      gap: 0;
    }
    .step-box {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 18px;
      padding: 32px 24px;
      text-align: center;
    }
    .step-num-circle {
      width: 48px; height: 48px;
      background: var(--blue);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--white);
      margin: 0 auto 16px;
    }
    .step-box h3 {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: .98rem;
      color: var(--white);
      margin-bottom: 8px;
    }
    .step-box p { font-size: .84rem; color: rgba(255,255,255,.5); }
    .step-arrow { text-align: center; color: rgba(255,255,255,.2); font-size: 1.4rem; }

    /* ── WHY US ─────────────────────────────────────────── */
    .why-section { background: var(--cream); }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .why-visual {
      position: relative;
    }
    .why-main-card {
      background: var(--navy);
      border-radius: 24px;
      padding: 40px;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    .why-main-card::before {
      content: '';
      position: absolute;
      top: -30px; right: -30px;
      width: 180px; height: 180px;
      background: radial-gradient(circle, rgba(26,110,245,.35), transparent 70%);
    }
    .why-main-card::after {
      content: '';
      position: absolute;
      bottom: -20px; left: -20px;
      width: 140px; height: 140px;
      background: radial-gradient(circle, rgba(249,115,22,.2), transparent 70%);
    }
    .why-card-label {
      font-family: 'Sora', sans-serif;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #5b9aff;
      margin-bottom: 20px;
      position: relative;
    }
    .why-stat-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      position: relative;
    }
    .why-stat {
      background: rgba(255,255,255,.08);
      border-radius: 14px;
      padding: 20px;
    }
    .why-stat-num {
      font-family: 'Sora', sans-serif;
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
      margin-bottom: 4px;
    }
    .why-stat-num span { color: var(--orange); }
    .why-stat-label { font-size: .8rem; color: rgba(255,255,255,.55); }
    .why-float-badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--orange);
      color: var(--white);
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: .82rem;
      padding: 12px 18px;
      border-radius: 12px;
      box-shadow: var(--shadow);
      white-space: nowrap;
    }
    .why-content .section-sub { margin-bottom: 36px; }
    .why-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .why-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .why-icon {
      width: 44px; height: 44px;
      background: var(--blue-pale);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blue);
      flex-shrink: 0;
    }
    .why-item h4 {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: .95rem;
      margin-bottom: 3px;
    }
    .why-item p { font-size: .86rem; color: var(--gray); }

    /* ── REVIEWS ────────────────────────────────────────── */
    .reviews-section { background: var(--white); }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .review-card {
      background: var(--cream);
      border: 1.5px solid var(--light);
      border-radius: 18px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .review-stars { color: var(--orange); font-size: .95rem; letter-spacing: 2px; }
    .review-text {
      font-size: .92rem;
      color: var(--navy);
      line-height: 1.6;
      font-style: italic;
      flex: 1;
    }
    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .review-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: .9rem;
      color: var(--white);
      flex-shrink: 0;
    }
    .review-name {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: .88rem;
    }
    .review-meta { font-size: .78rem; color: var(--gray); }

    /* ── FAQ ────────────────────────────────────────────── */
    .faq-section { background: var(--cream); }
    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      max-width: 960px;
    }
    .faq-card {
      background: var(--white);
      border: 1.5px solid var(--light);
      border-radius: 14px;
      padding: 24px;
    }
    .faq-card h3 {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: .95rem;
      color: var(--navy);
      margin-bottom: 8px;
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }
    .faq-q { color: var(--blue); flex-shrink: 0; }
    .faq-card p { font-size: .87rem; color: var(--gray); line-height: 1.6; }

    /* ── BOTTOM CTA ─────────────────────────────────────── */
    .cta-section {
      background: linear-gradient(135deg, var(--blue) 0%, #0b47cc 50%, var(--navy) 100%);
      padding: 96px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    .cta-section h2 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800;
      color: var(--white);
      letter-spacing: -.4px;
      margin-bottom: 16px;
      position: relative;
    }
    .cta-section p {
      color: rgba(255,255,255,.7);
      font-size: 1.05rem;
      max-width: 520px;
      margin: 0 auto 40px;
      position: relative;
    }
    .cta-buttons {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--orange);
      color: var(--white);
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      padding: 16px 34px;
      border-radius: 12px;
      transition: background .2s, transform .15s;
    }
    .btn-primary:hover { background: var(--orange-dk); transform: translateY(-2px); }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,.12);
      border: 2px solid rgba(255,255,255,.3);
      color: var(--white);
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      padding: 16px 34px;
      border-radius: 12px;
      transition: background .2s;
    }
    .btn-secondary:hover { background: rgba(255,255,255,.22); }

    /* ── FOOTER ─────────────────────────────────────────── */
    footer {
      background: var(--navy);
      padding: 64px 24px 32px;
    }
    .footer-top {
      max-width: 1140px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .footer-brand .logo { margin-bottom: 14px; }
    .footer-brand p {
      font-size: .87rem;
      color: rgba(255,255,255,.45);
      line-height: 1.6;
      max-width: 280px;
    }
    .footer-col h4 {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: .82rem;
      color: rgba(255,255,255,.5);
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col a {
      font-size: .87rem;
      color: rgba(255,255,255,.5);
      transition: color .2s;
    }
    .footer-col a:hover { color: var(--white); }
    .footer-bottom {
      max-width: 1140px;
      margin: 32px auto 0;
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: space-between;
      align-items: center;
    }
    .footer-copy { font-size: .8rem; color: rgba(255,255,255,.3); }
    .footer-legal-links {
      display: flex;
      gap: 20px;
    }
    .footer-legal-links a {
      font-size: .8rem;
      color: rgba(255,255,255,.3);
      transition: color .2s;
    }
    .footer-legal-links a:hover { color: rgba(255,255,255,.6); }
    .disclosure {
      max-width: 1140px;
      margin: 24px auto 0;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,.06);
      font-size: .74rem;
      color: rgba(255,255,255,.25);
      line-height: 1.65;
    }

    /* ── ANIMATIONS ─────────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-inner > * { animation: fadeUp .65s ease both; }
    .hero-inner > *:nth-child(1) { animation-delay: .05s; }
    .hero-inner > *:nth-child(2) { animation-delay: .18s; }
    .hero-inner > *:nth-child(3) { animation-delay: .28s; }
    .hero-inner > *:nth-child(4) { animation-delay: .38s; }
    .hero-inner > *:nth-child(5) { animation-delay: .46s; }

    /* ── MOBILE ─────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .city-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-toggle { display: block; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .steps-track { grid-template-columns: 1fr; gap: 16px; }
      .step-arrow { display: none; }
      .why-grid { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .faq-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .section { padding: 64px 20px; }
      .hero { padding: 72px 20px 96px; }
      .city-grid { grid-template-columns: 1fr 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .zip-form { padding: 6px 6px 6px 14px; }
      .footer-top { grid-template-columns: 1fr; gap: 28px; }
      .topbar { display: none; }
    }