
    :root {
      --brand: #e88a00;
      --brand-dark: #cf432d;
      --brand-soft: #fff0eb;
      --ink: #102f3d;
      --ink-2: #294957;
      --muted: #637985;
      --line: #dce7eb;
      --soft: #f5f8f9;
      --cream: #fffaf7;
      --white: #ffffff;
      --success: #0f8065;
      --success-soft: #e8f7f1;
      --warning: #98610b;
      --warning-soft: #fff5dc;
      --danger: #b5392f;
      --danger-soft: #fff0ee;
      --shadow-sm: 0 12px 30px rgba(15, 23, 42, .08);
      --shadow-lg: 0 28px 80px rgba(15, 23, 42, .15);
      --radius-sm: 12px;
      --radius: 20px;
      --radius-lg: 30px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--white);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    body.menu-open { overflow: hidden; }
    img, svg { display: block; max-width: 100%; }
    button, input, select, textarea { font: inherit; }
    button { cursor: pointer; }
    a { color: inherit; text-decoration: none; }
    h1, h2, h3, p { margin-top: 0; }
    h1, h2, h3 { line-height: 1.08; letter-spacing: -.04em; }
    h1 { margin-bottom: 22px; font-size: clamp(2.7rem, 6vw, 5.7rem); max-width: 12ch; }
    h2 { margin-bottom: 18px; font-size: clamp(2rem, 4.1vw, 3.7rem); }
    h3 { margin-bottom: 10px; font-size: 1.28rem; }
    p { color: var(--muted); }

    .container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
    .narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
    .section { padding: clamp(76px, 8vw, 118px) 0; }
    .section-soft { background: var(--soft); }
    .section-dark { color: var(--white); background: var(--ink); }
    .section-dark p { color: #bad0d9; }
    .section-head { max-width: 760px; margin: 0 auto 46px; text-align: center; }
    .section-head p { margin-bottom: 0; font-size: 1.08rem; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 15px;
      color: var(--brand-dark);
      font-size: .78rem;
      font-weight: 900;
      letter-spacing: .13em;
      text-transform: uppercase;
    }
    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--brand);
      box-shadow: 0 0 0 5px var(--brand-soft);
    }
    .eyebrow-light { color: #ffc7bb; }
    .eyebrow-light::before { box-shadow: 0 0 0 5px rgba(240, 90, 63, .2); }

    .skip-link {
      position: fixed;
      z-index: 2000;
      top: -70px;
      left: 14px;
      padding: 10px 15px;
      color: var(--white);
      background: var(--ink);
      border-radius: 10px;
    }
    .skip-link:focus { top: 14px; }

    .site-header {
      position: sticky;
      z-index: 1000;
      top: 0;
      background: rgba(255,255,255,.93);
      border-bottom: 1px solid rgba(220,231,235,.85);
      backdrop-filter: blur(18px);
    }
    .header-inner {
      min-height: 78px;
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 1.24rem;
      font-weight: 900;
      letter-spacing: -.04em;
    }
    .logo-mark {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      color: var(--white);
      background: var(--brand);
      border-radius: 12px;
      box-shadow: 0 9px 24px rgba(240, 90, 63, .28);
    }
    .logo span:last-child { color: var(--brand); }
    .desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
    .desktop-nav a {
      padding: 10px 12px;
      color: var(--ink-2);
      border-radius: 10px;
      font-size: .94rem;
      font-weight: 750;
    }
    .desktop-nav a:hover,
    .desktop-nav a[aria-current="page"] { color: var(--brand-dark); background: var(--brand-soft); }
    .header-actions { display: flex; align-items: center; gap: 8px; }
    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      margin-left: auto;
      border: 1px solid var(--line);
      background: var(--white);
      border-radius: 12px;
    }
    .menu-toggle i,
    .menu-toggle i::before,
    .menu-toggle i::after {
      width: 20px;
      height: 2px;
      display: block;
      margin: auto;
      background: var(--ink);
      border-radius: 999px;
      transition: .2s ease;
    }
    .menu-toggle i { position: relative; }
    .menu-toggle i::before,
    .menu-toggle i::after { content: ""; position: absolute; left: 0; }
    .menu-toggle i::before { top: -6px; }
    .menu-toggle i::after { top: 6px; }
    .menu-open .menu-toggle i { background: transparent; }
    .menu-open .menu-toggle i::before { top: 0; transform: rotate(45deg); }
    .menu-open .menu-toggle i::after { top: 0; transform: rotate(-45deg); }

    .button {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 12px 19px;
      border: 1px solid transparent;
      border-radius: 13px;
      font-weight: 850;
      line-height: 1.2;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .button:hover { transform: translateY(-2px); }
    .button-primary { color: var(--white); background: var(--brand); box-shadow: 0 12px 28px rgba(240, 90, 63, .25); }
    .button-primary:hover { background: var(--brand-dark); }
    .button-secondary { color: var(--ink); background: var(--white); border-color: var(--line); box-shadow: var(--shadow-sm); }
    .button-secondary:hover { border-color: #b9cbd2; }
    .button-small { min-height: 42px; padding: 10px 15px; font-size: .9rem; }
    .button-full { width: 100%; }

    .hero {
      position: relative;
      overflow: hidden;
      padding: clamp(70px, 9vw, 128px) 0 94px;
      background:
        radial-gradient(circle at 84% 14%, rgba(240,90,63,.18), transparent 29%),
        linear-gradient(145deg, #fff 0%, var(--cream) 100%);
    }
    .hero::after {
      content: "";
      position: absolute;
      right: -245px;
      bottom: -300px;
      width: 560px;
      height: 560px;
      border: 1px solid rgba(240,90,63,.18);
      border-radius: 50%;
      box-shadow: 0 0 0 70px rgba(240,90,63,.035), 0 0 0 140px rgba(240,90,63,.025);
    }
    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      align-items: center;
      gap: clamp(46px, 7vw, 90px);
    }
    .hero-copy > p { max-width: 650px; font-size: clamp(1.06rem, 1.7vw, 1.25rem); }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 22px; }
    .hero-facts { display: flex; flex-wrap: wrap; gap: 12px 18px; }
    .hero-facts span { display: inline-flex; align-items: center; gap: 7px; color: var(--ink-2); font-size: .9rem; font-weight: 750; }
    .hero-facts svg { width: 18px; height: 18px; color: var(--success); }

    .checker-card {
      padding: clamp(22px, 4vw, 34px);
      background: rgba(255,255,255,.96);
      border: 1px solid rgba(190,207,214,.78);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }
    .checker-head { margin-bottom: 22px; }
    .checker-head h2 { margin-bottom: 9px; font-size: clamp(1.75rem, 3.2vw, 2.65rem); }
    .checker-head p { margin-bottom: 0; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
    .field { display: grid; gap: 7px; }
    .field-full { grid-column: 1 / -1; }
    label { color: var(--ink-2); font-size: .88rem; font-weight: 800; }
    input, select, textarea {
      width: 100%;
      min-height: 50px;
      padding: 12px 13px;
      color: var(--ink);
      background: var(--white);
      border: 1px solid #cbd9df;
      border-radius: 12px;
      outline: none;
      transition: border .18s ease, box-shadow .18s ease;
    }
    input:focus, select:focus, textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft); }
    textarea { min-height: 95px; resize: vertical; }
    .form-note { margin: 12px 0 0; font-size: .8rem; }
    .form-result {
      display: none;
      margin-top: 17px;
      padding: 16px 17px;
      border-radius: 14px;
      border: 1px solid transparent;
    }
    .form-result.show { display: block; }
    .form-result strong { display: block; margin-bottom: 3px; }
    .form-result p { margin: 0; font-size: .9rem; }
    .form-result.success { background: var(--success-soft); border-color: #bde6d8; }
    .form-result.success strong { color: var(--success); }
    .form-result.warning { background: var(--warning-soft); border-color: #efd7a4; }
    .form-result.warning strong { color: var(--warning); }
    .form-result.danger { background: var(--danger-soft); border-color: #efc1bb; }
    .form-result.danger strong { color: var(--danger); }

    .service-strip { background: var(--white); border-block: 1px solid var(--line); }
    .service-strip-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
    .service-strip-item {
      min-height: 122px;
      display: grid;
      align-content: center;
      grid-template-columns: 42px 1fr;
      gap: 10px 12px;
      padding: 22px 18px;
      border-right: 1px solid var(--line);
    }
    .service-strip-item:last-child { border-right: 0; }
    .icon-box {
      width: 42px;
      height: 42px;
      grid-row: span 2;
      display: grid;
      place-items: center;
      color: var(--brand-dark);
      background: var(--brand-soft);
      border-radius: 12px;
    }
    .icon-box svg { width: 21px; height: 21px; }
    .service-strip-item strong { align-self: end; font-size: .9rem; }
    .service-strip-item small { align-self: start; color: var(--muted); font-size: .78rem; }

    .card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .card {
      padding: 27px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 9px 28px rgba(15,23,42,.05);
    }
    .card .icon-box { margin-bottom: 22px; }
    .card p { margin-bottom: 0; }

    .coverage-layout {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      align-items: center;
      gap: clamp(44px, 7vw, 88px);
    }
    .map-panel {
      position: relative;
      min-height: 520px;
      overflow: hidden;
      padding: 26px;
      background: #eaf1f2;
      border: 1px solid #cddde2;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }
    .map-panel::before,
    .map-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .38;
      background-image:
        linear-gradient(rgba(15,23,42,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,42,.07) 1px, transparent 1px);
      background-size: 34px 34px;
    }
    .map-panel::after {
      opacity: .25;
      transform: rotate(18deg) scale(1.4);
      background-size: 58px 58px;
    }
    .map-ui {
      position: absolute;
      z-index: 3;
      top: 20px;
      left: 20px;
      right: 20px;
      display: flex;
      justify-content: space-between;
      gap: 14px;
    }
    .map-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 12px;
      color: var(--ink-2);
      background: rgba(255,255,255,.94);
      border: 1px solid var(--line);
      border-radius: 12px;
      box-shadow: var(--shadow-sm);
      font-size: .82rem;
      font-weight: 800;
    }
    .map-chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--success); }
    .route-svg { position: absolute; z-index: 2; inset: 74px 25px 25px; width: calc(100% - 50px); height: calc(100% - 99px); }
    .pin {
      position: absolute;
      z-index: 4;
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      color: var(--white);
      background: var(--brand);
      border: 4px solid var(--white);
      border-radius: 50% 50% 50% 8px;
      box-shadow: 0 12px 24px rgba(15,23,42,.2);
      transform: rotate(-45deg);
    }
    .pin svg { width: 17px; height: 17px; transform: rotate(45deg); }
    .pin-a { left: 19%; top: 35%; }
    .pin-b { right: 20%; bottom: 23%; background: var(--ink); }
    .map-summary {
      position: absolute;
      z-index: 5;
      left: 20px;
      right: 20px;
      bottom: 20px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 17px 18px;
      background: rgba(255,255,255,.96);
      border: 1px solid var(--line);
      border-radius: 16px;
      box-shadow: var(--shadow-sm);
    }
    .map-summary strong, .map-summary small { display: block; }
    .map-summary small { color: var(--muted); }
    .status-pill {
      padding: 8px 10px;
      color: var(--warning);
      background: var(--warning-soft);
      border-radius: 999px;
      font-size: .74rem;
      font-weight: 900;
      white-space: nowrap;
    }

    .check-list { list-style: none; padding: 0; margin: 25px 0; display: grid; gap: 13px; }
    .check-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-2); }
    .check-list svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 3px; color: var(--success); }
    .notice {
      padding: 18px 20px;
      color: var(--ink-2);
      background: var(--warning-soft);
      border-left: 4px solid #d79a2c;
      border-radius: 12px;
    }
    .notice strong { display: block; margin-bottom: 3px; color: var(--ink); }

    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: steps; }
    .step {
      position: relative;
      min-height: 245px;
      padding: 72px 27px 27px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 8px 26px rgba(15,23,42,.045);
    }
    .step::before {
      counter-increment: steps;
      content: counter(steps);
      position: absolute;
      top: 25px;
      left: 27px;
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      color: var(--white);
      background: var(--brand);
      border-radius: 50%;
      font-size: .82rem;
      font-weight: 900;
    }

    .table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
    table { width: 100%; border-collapse: collapse; min-width: 680px; }
    th, td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--line); }
    th { color: var(--ink); background: #f8fafb; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
    td { color: var(--ink-2); }
    tr:last-child td { border-bottom: 0; }
    .availability {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 6px 9px;
      border-radius: 999px;
      font-size: .78rem;
      font-weight: 850;
      white-space: nowrap;
    }
    .availability::before { content: ""; width: 8px; height: 8px; border-radius: 50%; }
    .availability.yes { color: var(--success); background: var(--success-soft); }
    .availability.yes::before { background: var(--success); }
    .availability.check { color: var(--warning); background: var(--warning-soft); }
    .availability.check::before { background: #d79a2c; }
    .availability.no { color: var(--danger); background: var(--danger-soft); }
    .availability.no::before { background: var(--danger); }

    .restriction-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .restriction {
      display: grid;
      grid-template-columns: 45px 1fr;
      gap: 14px;
      padding: 22px;
      color: var(--ink);
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 17px;
    }
    .restriction .icon-box { color: #ffc8bb; background: rgba(240,90,63,.16); }
    .restriction p { margin-bottom: 0; font-size: .9rem; }

    .faq-list { display: grid; gap: 13px; }
    .faq-item { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 15px; }
    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 20px 22px;
      color: var(--ink);
      background: transparent;
      border: 0;
      text-align: left;
      font-weight: 850;
    }
    .faq-question span:last-child {
      width: 30px;
      height: 30px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      color: var(--brand-dark);
      background: var(--brand-soft);
      border-radius: 50%;
      transition: transform .2s ease;
    }
    .faq-item.open .faq-question span:last-child { transform: rotate(45deg); }
    .faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
    .faq-item.open .faq-answer { grid-template-rows: 1fr; }
    .faq-answer > div { overflow: hidden; }
    .faq-answer p { margin: 0; padding: 0 22px 21px; }

    .final-cta {
      position: relative;
      overflow: hidden;
      padding: clamp(34px, 6vw, 64px);
      color: var(--white);
      background: linear-gradient(140deg, #183f4e, var(--ink));
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }
    .final-cta::after {
      content: "";
      position: absolute;
      right: -80px;
      top: -130px;
      width: 310px;
      height: 310px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 50%;
      box-shadow: 0 0 0 55px rgba(255,255,255,.035), 0 0 0 110px rgba(255,255,255,.02);
    }
    .final-cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
    .final-cta h2 { margin-bottom: 12px; max-width: 14ch; }
    .final-cta p { max-width: 650px; margin-bottom: 0; color: #bdd0d8; }

    .site-footer { padding: 66px 0 28px; background: #0b2733; color: var(--white); }
    .footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 46px; }
    .footer-brand p { max-width: 340px; color: #a9c0ca; }
    .footer-col h3 { margin-bottom: 16px; font-size: .95rem; letter-spacing: 0; }
    .footer-col a { display: block; margin: 9px 0; color: #a9c0ca; font-size: .9rem; }
    .footer-col a:hover { color: var(--white); }
    .footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #8faab5; font-size: .82rem; }

    @media (max-width: 980px) {
      .desktop-nav, .header-actions { display: none; }
      .menu-toggle { display: block; }
      .desktop-nav {
        position: fixed;
        inset: 78px 0 auto;
        display: none;
        padding: 18px 20px 26px;
        flex-direction: column;
        align-items: stretch;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
      }
      .menu-open .desktop-nav { display: flex; }
      .desktop-nav a { padding: 13px 14px; }
      .hero-grid, .coverage-layout { grid-template-columns: 1fr; }
      .hero-copy { max-width: 760px; }
      .service-strip-grid { grid-template-columns: repeat(3, 1fr); }
      .service-strip-item:nth-child(3) { border-right: 0; }
      .service-strip-item:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
      .service-strip-item:nth-child(4) { grid-column: 1 / 2; }
      .card-grid, .steps { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
      .footer-col:last-child { grid-column: 2 / 4; }
    }

    @media (max-width: 700px) {
      .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
      .hero { padding-top: 58px; }
      h1 { font-size: clamp(2.55rem, 13vw, 4.3rem); }
      .form-grid, .card-grid, .steps, .restriction-grid, .footer-grid { grid-template-columns: 1fr; }
      .field-full { grid-column: auto; }
      .service-strip-grid { grid-template-columns: 1fr; }
      .service-strip-item { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
      .service-strip-item:last-child { border-bottom: 0; }
      .service-strip-item:nth-child(4) { grid-column: auto; }
      .map-panel { min-height: 470px; }
      .map-ui { flex-direction: column; align-items: flex-start; }
      .map-summary { grid-template-columns: 1fr; }
      .status-pill { width: fit-content; }
      .final-cta-inner { grid-template-columns: 1fr; }
      .final-cta .button { width: 100%; }
      .footer-col:last-child { grid-column: auto; }
      .footer-bottom { flex-direction: column; }
    }
  