:root {
    --bg: #F3F4F6;
    --surface: #FFFFFF;
    --navy: #0A2540;
    --navy-2: #11315A;
    --navy-soft: #1B3A66;
    --ink: #0A2540;
    --ink-2: #41526B;
    --ink-3: #6B7A90;
    --line: #E4E7EC;
    --line-2: #EFF1F4;
    --accent: #00AEEF;
    --accent-ink: #007FAE;
    --accent-soft: #E6F7FE;
    --radius: 14px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06), 0 1px 3px rgba(10, 37, 64, 0.04);
    --shadow-md: 0 6px 24px -8px rgba(10, 37, 64, 0.12), 0 2px 6px rgba(10, 37, 64, 0.04);
    --shadow-lg: 0 24px 60px -24px rgba(10, 37, 64, 0.22), 0 4px 12px rgba(10, 37, 64, 0.04);
    --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    --container: 1100px;
    --pad-x: clamp(20px, 4vw, 48px);
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  /* Sticky-navbar offset so #quote / #checkout / #message anchors don't
     slide under the 72px header when clicked from the nav CTA. */
  section[id] { scroll-margin-top: 76px; }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }

  .container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-inline: var(--pad-x);
  }

  /* Typography */
  h1, h2, h3, h4 { font-family: var(--font-sans); margin: 0; letter-spacing: -0.02em; color: var(--ink); }
  h1 { font-weight: 800; font-size: clamp(36px, 5.2vw, 60px); line-height: 1.04; letter-spacing: -0.03em; }
  h2 { font-weight: 700; font-size: clamp(28px, 3.6vw, 44px); line-height: 1.08; letter-spacing: -0.025em; }
  h3 { font-weight: 700; font-size: clamp(20px, 1.6vw, 22px); line-height: 1.25; }
  p  { margin: 0; color: var(--ink-2); }

  .eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .eyebrow::before {
    content: "";
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.16);
  }

  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    height: 46px; padding: 0 22px;
    border-radius: 999px;
    font-weight: 600; font-size: 15px;
    border: 1px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--navy); color: #fff;
    box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 8px 18px -8px rgba(10,37,64,0.45);
  }
  .btn-primary:hover { background: #062039; transform: translateY(-1px); box-shadow: 0 14px 26px -10px rgba(10,37,64,0.5); }
  .btn-accent {
    background: var(--accent); color: #fff;
  }
  .btn-accent:hover { background: var(--accent-ink); transform: translateY(-1px); }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
  .btn-ghost:hover { background: #fff; border-color: #D5DAE2; }
  .btn-link { background: transparent; color: var(--navy); padding: 0; height: auto; }
  .btn-link:hover { color: var(--accent-ink); }
  .btn .arrow { transition: transform .18s ease; }
  .btn:hover .arrow { transform: translateX(3px); }

  /* Reusable card */
  .card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .card-hover:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: #D9DEE7;
  }

  /* Sections */
  section { padding-block: clamp(40px, 5.5vw, 76px); }
  .section-head { max-width: 720px; margin-bottom: clamp(22px, 3vw, 38px); }
  .section-head p { font-size: 17px; color: var(--ink-2); margin-top: 12px; }

  /* Header */
  .site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(243, 244, 246, 0.78);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, background .2s ease;
  }
  .site-header.scrolled { border-color: var(--line); background: rgba(243, 244, 246, 0.92); }
  .nav {
    height: 60px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
  }
  .nav-left { display: flex; align-items: center; gap: 40px; }
  .brand {
    display: inline-flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 18px; letter-spacing: 0.02em; color: var(--navy);
  }
  .brand .mark {
    width: 30px; height: 30px;
    background: var(--navy); color: #fff;
    border-radius: 8px;
    display: grid; place-items: center;
    position: relative; overflow: hidden;
  }
  .nav-links { display: flex; align-items: center; gap: 4px; }
  .nav-link {
    padding: 8px 14px; border-radius: 999px;
    font-size: 14px; font-weight: 500;
    color: var(--ink-2);
    white-space: nowrap;
    transition: color .15s ease, background .15s ease;
  }
  .nav-link:hover, .nav-link.active { color: var(--navy); background: rgba(10,37,64,0.05); }
  .nav-right { display: flex; align-items: center; gap: 12px; }
  .lang-toggle {
    display: inline-flex;
    padding: 3px;
    background: rgba(10,37,64,0.06);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
  }
  .lang-toggle button {
    border: none; background: transparent;
    padding: 6px 12px;
    border-radius: 999px;
    color: var(--ink-3);
    letter-spacing: 0.06em;
  }
  .lang-toggle button.active { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }

  .menu-btn { display: none; }

  @media (max-width: 980px) {
    .nav-links { display: none; }
    .menu-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); background: #fff; }
    .nav-right .btn-primary { display: none; }
  }

  /* Hero — cinematic, full-bleed-right */
  .hero { padding-top: clamp(26px, 4vw, 48px); padding-bottom: clamp(44px, 6vw, 84px); overflow: hidden; }
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
  }
  .hero h1 .accent { color: var(--accent); }
  .hero .lede { font-size: 19px; line-height: 1.5; color: var(--ink-2); margin-top: 22px; max-width: 520px; }
  .hero-ctas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
  .hero-ctas .btn-ghost { background: #fff; }
  .hero-features {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 12px; margin-top: 40px; max-width: 540px;
  }
  .hero-feature {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
  }
  .hero-feature svg { width: 18px; height: 18px; color: var(--accent); flex: 0 0 18px; }
  .hero-feature span { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: -0.01em; }

  /* Cinematic photo — bleeds to right edge of viewport */
  .hero-visual { position: relative; }
  .hero-photo {
    position: relative;
    aspect-ratio: 16/9;
    width: calc(100% + var(--pad-x));
    margin-right: calc(-1 * var(--pad-x));
    border-radius: 28px 0 0 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px -30px rgba(10,37,64,0.35), 0 8px 30px -8px rgba(10,37,64,0.15);
    background: #cdd6e0;
  }
  .hero-photo img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 55%;
    display: block;
  }
  .hero-photo::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(10,37,64,0.18) 0%, rgba(10,37,64,0) 35%, rgba(10,37,64,0) 100%);
    pointer-events: none;
  }
  .hero-photo .floating-card {
    position: absolute;
    bottom: 24px; left: 24px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 16px;
    padding: 14px 18px;
    display: flex; align-items: center; gap: 14px;
    box-shadow: var(--shadow-lg);
  }
  .hero-photo .floating-card .pill {
    width: 38px; height: 38px;
    background: var(--accent-soft); color: var(--accent-ink);
    border-radius: 11px;
    display: grid; place-items: center;
    flex: 0 0 38px;
  }
  .hero-photo .floating-card .ttl { font-size: 12.5px; color: var(--ink-3); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }
  .hero-photo .floating-card .val { font-size: 16px; color: var(--navy); font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; }

  /* State chips on hero photo */
  .hero-photo .state-chips {
    position: absolute; top: 22px; right: 22px;
    display: flex; gap: 8px;
  }
  .hero-photo .state-chip {
    background: rgba(10,37,64,0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em;
    padding: 6px 10px;
    border-radius: 999px;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .hero-photo .state-chip::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent); box-shadow: 0 0 0 3px rgba(0,174,239,0.25);
  }

  @media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-photo {
      width: calc(100% + var(--pad-x) * 2);
      margin-left: calc(-1 * var(--pad-x));
      margin-right: calc(-1 * var(--pad-x));
      border-radius: 0;
      aspect-ratio: 16/9;
    }
    .hero-features { grid-template-columns: repeat(3, 1fr); max-width: none; }
  }
  @media (max-width: 560px) {
    .hero-features { grid-template-columns: 1fr; }
    .hero-photo .floating-card { left: 16px; right: 16px; bottom: 16px; }
  }

  /* Why Fleetro */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .why-card { padding: 28px; }
  .why-card .ico-tile {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--accent-soft); color: var(--accent-ink);
    display: grid; place-items: center;
    margin-bottom: 22px;
  }
  .why-card h3 { font-size: 18px; margin-bottom: 8px; }
  .why-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
  @media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

  /* Coverage */
  .coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .coverage-card {
    padding: 32px;
    display: flex; flex-direction: column;
    min-height: 280px;
  }
  .coverage-card .ico-tile {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--navy); color: #fff;
    display: grid; place-items: center;
    margin-bottom: 24px;
    position: relative;
  }
  .coverage-card .ico-tile::after {
    content: ""; position: absolute; inset: 0;
    border-radius: 14px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  }
  .coverage-card h3 { font-size: 19px; margin-bottom: 10px; }
  .coverage-card p { font-size: 14.5px; color: var(--ink-2); flex: 1; }
  .coverage-card .learn {
    margin-top: 22px;
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600;
    color: var(--navy);
  }
  .coverage-card:hover .learn { color: var(--accent-ink); }
  .coverage-card .learn svg { width: 14px; height: 14px; transition: transform .2s ease; }
  .coverage-card:hover .learn svg { transform: translateX(3px); }
  @media (max-width: 900px) { .coverage-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .coverage-grid { grid-template-columns: 1fr; } }

  /* Compliance — split panel */
  .compliance {
    background: var(--navy);
    color: #fff;
    border-radius: 28px;
    overflow: hidden;
    padding: clamp(40px, 5vw, 64px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 4vw, 56px);
    position: relative;
  }
  .compliance::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(600px 300px at 90% 10%, rgba(0,174,239,0.18), transparent 60%),
      radial-gradient(400px 280px at 0% 100%, rgba(0,174,239,0.10), transparent 60%);
    pointer-events: none;
  }
  .compliance > * { position: relative; }
  .compliance h2 { color: #fff; }
  .compliance .lede { color: rgba(255,255,255,0.72); font-size: 17px; margin-top: 16px; max-width: 460px; }
  .compliance .eyebrow { color: var(--accent); }
  .compliance-list { display: grid; gap: 2px; }
  .compliance-item {
    display: grid; grid-template-columns: 36px 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 18px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: padding .2s ease;
  }
  .compliance-item:last-child { border-bottom: 0; }
  .compliance-item:hover { padding-left: 12px; }
  .compliance-item .ico {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(0,174,239,0.14); color: var(--accent);
    display: grid; place-items: center;
  }
  .compliance-item .title { font-weight: 600; font-size: 16px; color: #fff; }
  .compliance-item .desc { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 2px; }
  .compliance-item .chev { color: rgba(255,255,255,0.4); transition: color .15s ease, transform .15s ease; }
  .compliance-item:hover .chev { color: var(--accent); transform: translateX(3px); }
  @media (max-width: 860px) { .compliance { grid-template-columns: 1fr; } }

  /* Process */
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
  }
  .process-step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    position: relative;
    transition: border-color .2s ease, transform .2s ease;
  }
  .process-step:hover { border-color: var(--accent); transform: translateY(-2px); }
  .process-step .num {
    font-family: var(--font-mono);
    font-size: 12px; font-weight: 500;
    color: var(--accent-ink);
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .process-step .num .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
  .process-step h3 { font-size: 18px; margin-bottom: 10px; }
  .process-step p { font-size: 14px; color: var(--ink-2); }
  @media (max-width: 980px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

  /* Testimonials */
  .testimonial-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr;
    gap: 18px;
  }
  .testi-card {
    padding: 32px;
    display: flex; flex-direction: column; gap: 24px;
  }
  .testi-card .quote-mark { color: var(--accent); }
  .testi-card .body { font-size: 17px; line-height: 1.55; color: var(--navy); font-weight: 500; letter-spacing: -0.01em; flex: 1; }
  .testi-card.feature .body { font-size: 22px; line-height: 1.4; font-weight: 600; letter-spacing: -0.02em; }
  .testi-card .person { display: flex; align-items: center; gap: 12px; }
  .testi-card .avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, #C7DBEA, #98B7CF);
    display: grid; place-items: center;
    color: var(--navy); font-weight: 700; font-size: 14px;
    flex: 0 0 44px;
  }
  .testi-card .meta-name { font-weight: 600; font-size: 14px; color: var(--navy); }
  .testi-card .meta-role { font-size: 12.5px; color: var(--ink-3); }
  .testi-card .stars { display: flex; gap: 2px; color: var(--accent); }
  @media (max-width: 980px) { .testimonial-grid { grid-template-columns: 1fr 1fr; } .testi-card.feature { grid-column: 1 / -1; } }
  @media (max-width: 600px) { .testimonial-grid { grid-template-columns: 1fr; } .testi-card.feature { grid-column: auto; } }

  /* Quote CTA */
  .quote-cta {
    background: linear-gradient(180deg, #fff 0%, #F8FAFC 100%);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: clamp(26px, 3.4vw, 44px);
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
    box-shadow: var(--shadow-sm);
  }
  .quote-cta > div:first-child { position: sticky; top: 84px; align-self: start; }
  @media (max-width: 860px) { .quote-cta > div:first-child { position: static; } }
  .quote-cta h2 { font-size: clamp(28px, 3.4vw, 40px); }
  .quote-cta .lede { font-size: 17px; color: var(--ink-2); margin-top: 14px; max-width: 460px; }
  .quote-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow-md);
  }
  .quote-form .fld { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
  .quote-form label { font-size: 12px; font-weight: 600; color: var(--ink-2); letter-spacing: 0.02em; text-transform: uppercase; }
  .quote-form input, .quote-form select {
    height: 44px;
    padding: 0 14px;
    background: #F7F8FA;
    border: 1px solid var(--line);
    border-radius: 10px;
    font: inherit; font-size: 14px; color: var(--navy);
    transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
  }
  .quote-form input:focus, .quote-form select:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0,174,239,0.12);
  }
  .quote-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .quote-form .submit { width: 100%; margin-top: 8px; }
  .quote-form .tinytext { font-size: 11.5px; color: var(--ink-3); margin-top: 12px; text-align: center; }
  /* GoHighLevel embedded form — sits inside the existing premium card.
     GHL's form_embed.js sets the iframe height to fit content; min-height
     just prevents a collapse before the script runs. */
  .quote-form.is-embed { padding: 14px; overflow: hidden; }
  .quote-form.is-embed iframe { display: block; width: 100%; min-height: 420px; border: none; border-radius: 10px; background: #fff; }
  @media (max-width: 860px) { .quote-cta { grid-template-columns: 1fr; } }

  /* Footer */
  footer.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding-block: 54px 26px;
    margin-top: 0;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    gap: 40px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-grid h4 { color: #fff; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 16px; }
  .footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
  .footer-grid a { font-size: 14px; color: rgba(255,255,255,0.62); transition: color .15s ease, transform .15s ease; }
  .footer-grid li > a { display: inline-block; }
  .footer-grid li > a:hover { color: #fff; transform: translateX(3px); }
  .footer-meta { font-size: 13px; color: rgba(255,255,255,0.42); }
  .footer-brand-text { font-size: 14px; line-height: 1.6; margin-top: 16px; max-width: 280px; }
  .footer-brand .brand .mark { background: var(--accent); }
  .footer-brand .brand { color: #fff; }
  .footer-bottom {
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; flex-wrap: wrap;
    font-size: 12.5px;
    color: rgba(255,255,255,0.5);
  }
  .footer-bottom .legal-links { display: flex; gap: 22px; }
  .footer-bottom .legal-links a { position: relative; transition: color .15s ease; }
  .footer-bottom .legal-links a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: -3px;
    height: 1px; background: var(--accent); transition: right .2s ease;
  }
  .footer-bottom .legal-links a:hover { color: #fff; }
  .footer-bottom .legal-links a:hover::after { right: 0; }
  @media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 700px) { .footer-bottom { justify-content: center; text-align: center; } }
  @media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

  /* Tooltip-ish badge */
  .badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 10px;
    background: var(--accent-soft); color: var(--accent-ink);
    border-radius: 999px;
    font-size: 11.5px; font-weight: 600;
    letter-spacing: 0.02em;
  }

  /* Fade-in on scroll */
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }

  /* Photo placeholder pattern when image-slot empty */
  .truck-photo {
    width: 100%; height: 100%;
    background: var(--navy);
    background-image:
      linear-gradient(135deg, rgba(0,174,239,0.18) 0%, transparent 50%),
      linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.35) 100%);
    position: relative;
    display: grid; place-items: center;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  /* ==================== About Us ==================== */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 5vw, 72px);
    align-items: center;
  }
  .about-visual { position: relative; }
  .about-visual .photo {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #cdd6e0;
  }
  .about-visual .photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .9s ease; }
  .about-visual:hover .photo img { transform: scale(1.04); }
  .about-visual .map-pin {
    position: absolute;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 600; color: var(--navy);
  }
  .about-visual .map-pin svg { color: var(--accent); }
  .about-visual .map-pin.fl { top: 36%; right: -16px; }
  .about-visual .map-pin.tx { bottom: 18%; left: -16px; }
  .about-visual .stat-pill {
    position: absolute;
    top: -16px; right: 22px;
    background: var(--navy); color: #fff;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 14px;
  }
  .about-visual .stat-pill .n { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
  .about-visual .stat-pill .l { font-size: 11px; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.1em; }

  .about-body h2 { letter-spacing: -0.025em; }
  .about-body .lede { font-size: 17px; margin-top: 16px; max-width: 520px; }
  .mvv {
    margin-top: 36px;
    display: grid; gap: 4px;
  }
  .mvv-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    align-items: start;
  }
  .mvv-row:last-child { border-bottom: 1px solid var(--line); }
  .mvv-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent-ink);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding-top: 2px;
  }
  .mvv-text { font-size: 15.5px; color: var(--ink-2); line-height: 1.55; }
  .mvv-text b { color: var(--navy); font-weight: 600; }
  @media (max-width: 860px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-visual .map-pin.fl { right: 16px; }
    .about-visual .map-pin.tx { left: 16px; }
    .mvv-row { grid-template-columns: 1fr; gap: 4px; }
  }

  /* ==================== Payments ==================== */
  .payments-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
  }
  .pay-card {
    background: linear-gradient(160deg, #0A2540 0%, #112E4F 100%);
    color: #fff;
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px -24px rgba(10,37,64,0.4);
  }
  .pay-card::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(400px 200px at 100% 0%, rgba(0,174,239,0.2), transparent 60%),
      radial-gradient(300px 200px at 0% 100%, rgba(0,174,239,0.12), transparent 60%);
    pointer-events: none;
  }
  .pay-card > * { position: relative; }
  .pay-card .head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 36px;
  }
  .pay-card .brand-row {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 800; font-size: 14px; letter-spacing: 0.02em;
  }
  .pay-card .brand-row .mk {
    width: 22px; height: 22px;
    background: var(--accent); border-radius: 6px;
    display: grid; place-items: center;
  }
  .pay-card .secure-tag {
    font-family: var(--font-mono); font-size: 10.5px;
    color: rgba(255,255,255,0.7);
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.08);
    padding: 5px 10px; border-radius: 999px;
  }
  .pay-card .card-num {
    font-family: var(--font-mono);
    font-size: 22px; letter-spacing: 0.12em;
    margin-bottom: 28px;
    display: flex; justify-content: space-between;
    color: #fff;
  }
  .pay-card .card-num .dot-group { opacity: 0.45; }
  .pay-card .card-bottom {
    display: flex; justify-content: space-between; align-items: end;
  }
  .pay-card .card-bottom .lbl { font-size: 10.5px; opacity: 0.55; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 4px; font-family: var(--font-mono); }
  .pay-card .card-bottom .val { font-size: 15px; font-weight: 600; letter-spacing: 0.02em; }
  .pay-card .scheme {
    font-weight: 800; letter-spacing: -0.02em;
    font-size: 22px;
    font-style: italic;
    color: rgba(255,255,255,0.9);
  }

  .pay-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-md);
  }
  .pay-form .row-3 { display: grid; grid-template-columns: 1fr 90px 90px; gap: 12px; }
  .pay-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .pay-form .seg {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
    padding: 4px;
    background: #F7F8FA;
    border-radius: 10px;
    margin-bottom: 18px;
  }
  .pay-form .seg button {
    border: 0; background: transparent;
    padding: 10px 12px;
    font-size: 13px; font-weight: 600; color: var(--ink-2);
    border-radius: 8px;
    cursor: pointer;
    transition: background .15s ease, color .15s ease, box-shadow .15s ease;
  }
  .pay-form .seg button.active { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
  .pay-form .input-wrap {
    position: relative;
    display: flex; align-items: center;
  }
  .pay-form .input-wrap .leading {
    position: absolute; left: 14px; color: var(--ink-3);
  }
  .pay-form .input-wrap input { padding-left: 38px; }
  .pay-form .card-chip {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    display: flex; gap: 6px; align-items: center;
  }
  .pay-form .pay-btn {
    margin-top: 16px;
    width: 100%;
    height: 50px;
    background: var(--navy); color: #fff;
    border: 0; border-radius: 12px;
    font-size: 15px; font-weight: 600;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    cursor: pointer;
    transition: background .15s ease, transform .15s ease;
  }
  .pay-form .pay-btn:hover { background: #062039; transform: translateY(-1px); }
  .pay-form .trust-row {
    margin-top: 18px;
    display: flex; justify-content: center; gap: 18px;
    font-size: 11px; color: var(--ink-3);
  }
  .pay-form .trust-row span { display: inline-flex; align-items: center; gap: 6px; }
  .pay-form .trust-row svg { color: var(--accent-ink); }
  @media (max-width: 860px) { .payments-grid { grid-template-columns: 1fr; } }

  /* ==================== Resources ==================== */
  .resources-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(28px, 3.5vw, 48px);
  }
  .resource-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .resource-card {
    background: #fff; border: 1px solid var(--line);
    border-radius: 18px; padding: 26px;
    position: relative;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  }
  .resource-card:hover { transform: translateY(-2px); border-color: #D5DAE2; box-shadow: var(--shadow-md); }
  .resource-card .kind {
    font-family: var(--font-mono); font-size: 10.5px;
    color: var(--accent-ink); letter-spacing: 0.14em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 8px;
    margin-bottom: 18px;
  }
  .resource-card .kind::before { content: ""; width: 14px; height: 1px; background: var(--accent); }
  .resource-card h3 { font-size: 17px; margin-bottom: 6px; }
  .resource-card p { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }
  .resource-card .read {
    margin-top: 18px;
    font-size: 12.5px; font-weight: 600; color: var(--navy);
    display: inline-flex; align-items: center; gap: 6px;
  }
  .resource-card:hover .read { color: var(--accent-ink); }

  .faq {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
  }
  .faq h3 { font-size: 19px; margin-bottom: 14px; }
  .faq-item {
    border-top: 1px solid var(--line);
    padding: 14px 0;
  }
  .faq-item:first-of-type { border-top: 0; padding-top: 4px; }
  .faq-q {
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer;
    font-size: 14.5px; font-weight: 600; color: var(--navy);
    list-style: none;
    gap: 12px;
  }
  .faq-q::-webkit-details-marker { display: none; }
  .faq-q .plus {
    width: 22px; height: 22px; border-radius: 50%;
    border: 1px solid var(--line);
    display: grid; place-items: center;
    color: var(--ink-2);
    transition: transform .2s ease, color .2s ease, border-color .2s ease;
    flex: 0 0 22px;
  }
  details[open] .faq-q .plus { transform: rotate(45deg); color: var(--accent); border-color: var(--accent); }
  .faq-a { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; padding: 12px 0 4px; max-width: 100%; }

  @media (max-width: 860px) { .resources-grid { grid-template-columns: 1fr; } .resource-list { grid-template-columns: 1fr; } }

  /* ==================== Contact ==================== */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .contact-visual {
    position: relative;
    background: var(--navy);
    color: #fff;
    padding: clamp(32px, 4vw, 48px);
    display: flex; flex-direction: column; justify-content: space-between;
    overflow: hidden;
    min-height: 540px;
  }
  .contact-visual::before {
    content: ""; position: absolute; inset: 0;
    background-image: url('assets/hero-truck.png');
    background-size: cover; background-position: 70% center;
    opacity: 0.5;
    filter: saturate(0.8) brightness(0.55);
  }
  .contact-visual::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,37,64,0.55) 0%, rgba(10,37,64,0.85) 60%, rgba(10,37,64,0.92) 100%);
  }
  .contact-visual > * { position: relative; z-index: 2; }
  .contact-visual h2 { color: #fff; }
  .contact-visual .lede { color: rgba(255,255,255,0.78); margin-top: 14px; max-width: 380px; font-size: 16.5px; }
  .contact-info { display: grid; gap: 18px; margin-top: 28px; }
  .contact-info .row { display: flex; align-items: center; gap: 14px; }
  .contact-info .icon-tile {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 11px;
    display: grid; place-items: center;
    color: var(--accent);
    flex: 0 0 40px;
  }
  .contact-info .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); font-family: var(--font-mono); }
  .contact-info .val { font-size: 15px; font-weight: 600; color: #fff; margin-top: 2px; }
  .contact-states {
    display: flex; gap: 8px; margin-top: 28px;
  }
  .contact-state-chip {
    background: rgba(0,174,239,0.14); color: var(--accent);
    border: 1px solid rgba(0,174,239,0.3);
    padding: 6px 14px; border-radius: 999px;
    font-size: 12.5px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .contact-form-wrap {
    padding: clamp(32px, 4vw, 48px);
    display: flex; flex-direction: column; justify-content: center;
    background: #fff;
  }
  .contact-form-wrap h3 { font-size: 24px; margin-bottom: 8px; }
  .contact-form-wrap .sub { font-size: 14.5px; color: var(--ink-2); margin-bottom: 24px; }
  .contact-form { display: grid; gap: 14px; }
  .contact-form .fld { display: flex; flex-direction: column; gap: 6px; }
  .contact-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .contact-form label { font-size: 11.5px; font-weight: 600; color: var(--ink-2); letter-spacing: 0.04em; text-transform: uppercase; }
  .contact-form input, .contact-form select, .contact-form textarea {
    padding: 12px 14px;
    background: #F7F8FA;
    border: 1px solid var(--line);
    border-radius: 10px;
    font: inherit; font-size: 14px; color: var(--navy);
    transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
    resize: vertical;
  }
  .contact-form textarea { min-height: 100px; }
  .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--accent); background: #fff;
    box-shadow: 0 0 0 4px rgba(0,174,239,0.12);
  }
  @media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } .contact-visual { min-height: 380px; } }

/* ==================== About Page ==================== */
.about-hero {
  position: relative;
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(72px, 10vw, 140px);
  overflow: hidden;
}
.about-hero::before {
  content: ""; position: absolute; inset: 0 0 auto 0;
  height: 70%;
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(0,174,239,0.10), transparent 60%),
    radial-gradient(800px 500px at 0% 30%, rgba(10,37,64,0.05), transparent 60%);
  pointer-events: none;
}
.about-hero > * { position: relative; }
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.about-hero h1 { font-size: clamp(40px, 5.5vw, 64px); }
.about-hero h1 .accent { color: var(--accent); }
.about-hero .lede { font-size: 19px; line-height: 1.5; color: var(--ink-2); margin-top: 22px; max-width: 520px; }
.about-hero-stats {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.about-hero-stat { padding: 22px 24px; border-right: 1px solid var(--line); }
.about-hero-stat:last-child { border-right: 0; }
.about-hero-stat .n { font-size: clamp(20px, 2vw, 24px); font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.about-hero-stat .l { font-size: 11px; color: var(--ink-3); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--font-mono); }

.about-hero-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(10,37,64,0.35), 0 8px 30px -8px rgba(10,37,64,0.15);
  background: #cdd6e0;
}
.about-hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: ah-kenburns 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes ah-kenburns {
  0%   { transform: scale(1.02) translate3d(0, 0, 0); }
  100% { transform: scale(1.06) translate3d(-1%, -0.4%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .about-hero-photo img { animation: none; transform: none; }
}
.about-hero-photo::after { display: none; }
.about-hero-photo .floating-card {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-lg);
}
.about-hero-photo .floating-card .pulse {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(0,174,239,0.5);
  animation: ah-pulse 1.8s ease-out infinite;
  flex: 0 0 10px;
}
@keyframes ah-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,174,239,0.5); }
  100% { box-shadow: 0 0 0 14px rgba(0,174,239,0); }
}
.about-hero-photo .floating-card .ttl { font-size: 12px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--font-mono); }
.about-hero-photo .floating-card .val { font-size: 15px; font-weight: 700; color: var(--navy); margin-top: 2px; letter-spacing: -0.01em; }

@media (max-width: 900px) {
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .about-hero-stat:nth-child(2) { border-right: 0; }
  .about-hero-stat:nth-child(1), .about-hero-stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* Story section */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.story-grid .story-head { position: sticky; top: 96px; }
.story-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 18px;
  max-width: 620px;
}
.story-body p:first-of-type {
  color: var(--navy);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 22px;
}
.story-pillars {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.story-pillar {
  display: flex; gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .2s ease, transform .2s ease;
}
.story-pillar:hover { border-color: var(--accent); transform: translateY(-2px); }
.story-pillar .pico {
  width: 36px; height: 36px;
  background: var(--accent-soft); color: var(--accent-ink);
  border-radius: 10px;
  display: grid; place-items: center;
  flex: 0 0 36px;
}
.story-pillar .t { font-weight: 700; font-size: 14.5px; color: var(--navy); letter-spacing: -0.01em; }
.story-pillar .d { font-size: 13px; color: var(--ink-2); margin-top: 4px; line-height: 1.5; }

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-grid .story-head { position: static; }
  .story-pillars { grid-template-columns: 1fr; }
}

/* Mission / Vision split */
.mv-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.mv-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 3vw, 40px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.mv-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.mv-card.dark {
  background: var(--navy);
  color: #fff;
  border-color: transparent;
}
.mv-card.dark::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(400px 240px at 100% 0%, rgba(0,174,239,0.18), transparent 60%),
    radial-gradient(400px 240px at 0% 100%, rgba(0,174,239,0.10), transparent 60%);
  pointer-events: none;
}
.mv-card.dark h3 { color: #fff; }
.mv-card.dark p { color: rgba(255,255,255,0.74); }
.mv-card.dark .eyebrow { color: var(--accent); }
.mv-card .num {
  font-family: var(--font-mono);
  font-size: 56px; font-weight: 500;
  color: var(--accent);
  opacity: 0.18;
  position: absolute;
  top: 18px; right: 24px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.mv-card.dark .num { color: var(--accent); opacity: 0.4; }
.mv-card h3 { font-size: clamp(22px, 2vw, 26px); margin-top: 14px; margin-bottom: 14px; letter-spacing: -0.02em; }
.mv-card p { font-size: 16px; line-height: 1.6; color: var(--ink-2); max-width: 480px; }
.mv-card .pill-row {
  margin-top: 24px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.mv-card .pill {
  font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-ink);
}
.mv-card.dark .pill { background: rgba(0,174,239,0.16); color: var(--accent); }

@media (max-width: 800px) { .mv-split { grid-template-columns: 1fr; } }

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.value-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.value-card::after {
  content: ""; position: absolute; inset: auto auto -40% -40%;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0,174,239,0.10), transparent 70%);
  opacity: 0; transition: opacity .3s ease;
  pointer-events: none;
}
.value-card:hover { transform: translateY(-3px); border-color: #D5DAE2; box-shadow: var(--shadow-md); }
.value-card:hover::after { opacity: 1; }
.value-card .v-num {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  color: var(--accent-ink);
  letter-spacing: 0.14em;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 22px;
}
.value-card .v-num::before { content: ""; width: 16px; height: 1px; background: var(--accent); }
.value-card .v-ico {
  width: 48px; height: 48px;
  background: var(--accent-soft); color: var(--accent-ink);
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.value-card:hover .v-ico { background: var(--navy); color: #fff; transform: scale(1.06); }
.value-card h3 { font-size: 19px; margin-bottom: 8px; }
.value-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }

/* About-page CTA banner */
.about-cta {
  margin-top: 0;
  padding: clamp(48px, 6vw, 88px);
  background:
    linear-gradient(135deg, rgba(10,37,64,0.92), rgba(10,37,64,0.78)),
    url('assets/hero-truck.png') center/cover;
  border-radius: 28px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.about-cta h3 { color: #fff; font-size: clamp(24px, 2.6vw, 34px); letter-spacing: -0.02em; }
.about-cta p { color: rgba(255,255,255,0.78); margin-top: 12px; font-size: 16px; max-width: 520px; }
.about-cta .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.about-cta .btn-accent { background: var(--accent); color: #fff; }
.about-cta .btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.16); }
.about-cta .btn-ghost:hover { background: rgba(255,255,255,0.16); }
@media (max-width: 800px) { .about-cta { grid-template-columns: 1fr; padding: 36px; } }

/* Subtle reveal upgrade for the about page */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.fade-up.in { opacity: 1; transform: none; }


/* ==================== Contact Page ==================== */
.contact-hero {
  position: relative;
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(64px, 9vw, 120px);
  overflow: hidden;
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.contact-hero h1 { font-size: clamp(40px, 5.2vw, 60px); }
.contact-hero h1 .accent { color: var(--accent); }
.contact-hero .lede { font-size: 19px; line-height: 1.55; color: var(--ink-2); margin-top: 22px; max-width: 520px; }

.contact-hero-chips {
  margin-top: 30px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.contact-hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.contact-hero-chip .ico {
  width: 22px; height: 22px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--accent-ink);
}

.contact-hero-photo {
  position: relative;
  aspect-ratio: 16/11;
  width: calc(100% + var(--pad-x));
  margin-right: calc(-1 * var(--pad-x));
  border-radius: 28px 0 0 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(10,37,64,0.35), 0 8px 30px -8px rgba(10,37,64,0.15);
  background: #cdd6e0;
}
.contact-hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  animation: ch-kenburns 18s ease-in-out infinite alternate;
}
@keyframes ch-kenburns {
  0%   { transform: scale(1.04); }
  100% { transform: scale(1.12) translate3d(-2%, -1%, 0); }
}
.contact-hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,37,64,0.28) 0%, rgba(10,37,64,0) 45%);
  pointer-events: none;
}
.contact-hero-photo .response-card {
  position: absolute; left: 24px; bottom: 24px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-lg);
}
.contact-hero-photo .response-card .ring {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-ink);
  display: grid; place-items: center;
  position: relative;
  flex: 0 0 44px;
}
.contact-hero-photo .response-card .ring::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  animation: ch-ring 1.6s ease-out infinite;
  opacity: 0;
}
@keyframes ch-ring {
  0%   { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.45); opacity: 0; }
}
.contact-hero-photo .response-card .ttl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  font-family: var(--font-mono);
}
.contact-hero-photo .response-card .val {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-top: 2px;
}
.contact-hero-photo .response-card .sub {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 2px;
}

@media (max-width: 980px) {
  .contact-hero-grid { grid-template-columns: 1fr; }
  .contact-hero-photo {
    width: calc(100% + var(--pad-x) * 2);
    margin-left: calc(-1 * var(--pad-x));
    margin-right: calc(-1 * var(--pad-x));
    border-radius: 0;
    aspect-ratio: 16/9;
  }
}

/* Contact form panel */
.contact-form-panel {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-form-side, .contact-info-side {
  padding: clamp(28px, 3.4vw, 44px);
}
.contact-info-side {
  background: #FBFCFD;
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
}
.contact-info-side h3 { font-size: 22px; margin-top: 12px; margin-bottom: 18px; }
.contact-info-card {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}
.contact-info-card:first-of-type { border-top: 0; padding-top: 4px; }
.contact-info-card .ic {
  width: 40px; height: 40px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  border-radius: 11px;
  display: grid; place-items: center;
  flex: 0 0 44px;
}
.contact-info-card .lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
  color: var(--ink-3);
}
.contact-info-card .val {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 4px;
  letter-spacing: -0.01em;
}
.contact-info-card .sub {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 4px;
}

.cf-form { display: grid; gap: 14px; margin-top: 22px; }
.cf-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cf-form .fld { display: flex; flex-direction: column; gap: 6px; }
.cf-form label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--ink-2);
}
.cf-form input, .cf-form select, .cf-form textarea {
  padding: 12px 14px;
  background: #F7F8FA;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit; font-size: 14.5px; color: var(--navy);
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
  resize: vertical;
}
.cf-form textarea { min-height: 110px; }
.cf-form input:focus, .cf-form select:focus, .cf-form textarea:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 4px rgba(0,174,239,0.12);
}
.cf-form .safety-line,
.cf-embed .safety-line {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 4px;
}
.cf-form .safety-line svg,
.cf-embed .safety-line svg { color: var(--accent-ink); }

/* GoHighLevel embedded contact form — sits inside the existing premium panel.
   GHL's form_embed.js resizes the iframe to fit its content; min-height just
   prevents a collapse before the script runs. scrolling="no" + the single
   page scroll avoids a nested/double scrollbar. */
.cf-embed { margin-top: 22px; overflow: hidden; }
.cf-embed iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  border: none;
  border-radius: 10px;
  background: #fff;
}
@media (max-width: 880px) {
  .contact-form-panel { grid-template-columns: 1fr; }
  .contact-info-side { border-left: 0; border-top: 1px solid var(--line); }
}

/* Contact features row */
.contact-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.contact-feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.contact-feature:hover { transform: translateY(-2px); border-color: #D5DAE2; box-shadow: var(--shadow-md); }
.contact-feature .ico {
  width: 42px; height: 42px;
  background: var(--accent-soft); color: var(--accent-ink);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.contact-feature h3 { font-size: 16px; margin-bottom: 6px; }
.contact-feature p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }
@media (max-width: 900px) { .contact-features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .contact-features { grid-template-columns: 1fr; } }

/* US service map */
.coverage-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.coverage-map-wrap {
  position: relative;
  aspect-ratio: 16/10;
  background:
    radial-gradient(800px 400px at 50% 60%, rgba(0,174,239,0.06), transparent 70%);
}
.coverage-map-wrap svg { width: 100%; height: 100%; display: block; }
.coverage-block h2 { letter-spacing: -0.025em; }
.coverage-block p { font-size: 16px; color: var(--ink-2); margin-top: 16px; max-width: 460px; }
.coverage-pins-legend { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 6px; }
.coverage-pin-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  background: #F4F6F8;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
}
@media (max-width: 900px) { .coverage-block { grid-template-columns: 1fr; } }


/* Contact info-side footnote — clean corporate blurb */
.contact-info-footnote {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 360px;
}

/* Closing banner — minimal corporate positioning, replaces the old coverage map */
.closing-banner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(48px, 6vw, 88px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.closing-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 0%, rgba(0,174,239,0.05), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(10,37,64,0.04), transparent 55%);
  pointer-events: none;
}
.closing-banner > * { position: relative; }
.closing-banner .eyebrow {
  margin-bottom: 20px;
}
.closing-banner h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  max-width: 760px;
  margin: 0 auto;
  letter-spacing: -0.025em;
}
.closing-banner p {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}


/* ==================== Contact Banner Hero (full-bleed) ==================== */
.contact-hero-banner {
  position: relative;
  width: 100%;
  min-height: clamp(480px, 62vh, 680px);
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-bottom: clamp(36px, 5vw, 64px);
  isolation: isolate;
}
.contact-hero-banner .banner-image {
  position: absolute; inset: 0;
  /* Parallax — driven by JS-set CSS var. Slightly oversized so the parallax
     shift doesn't reveal the edge of the photo. */
  height: 130%;
  top: -10%;
  transform: translate3d(0, var(--parallax, 0px), 0);
  will-change: transform;
  transition: transform 80ms linear;
}
.contact-hero-banner .banner-zoom {
  position: absolute; inset: 0;
  /* Slow cinematic zoom — runs independently of the parallax transform. */
  transform: scale(1.04);
  animation: ch-zoom 30s ease-in-out infinite alternate;
  will-change: transform;
}
.contact-hero-banner .banner-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}
/* Soft animated highlight — barely visible cyan glow that drifts across
   the photo, adding the "alive" cinematic feel without distracting. */
.contact-hero-banner .banner-light {
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 480px at 70% 28%, rgba(0,174,239,0.10), transparent 62%),
    radial-gradient(500px 380px at 22% 70%, rgba(10,37,64,0.05), transparent 65%);
  animation: ch-light 22s ease-in-out infinite alternate;
  will-change: transform, opacity;
  pointer-events: none;
  mix-blend-mode: screen;
}
@keyframes ch-light {
  0%   { transform: translate3d(-2%, -1%, 0); opacity: 0.85; }
  100% { transform: translate3d(2%, 1%, 0);  opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .contact-hero-banner .banner-zoom,
  .contact-hero-banner .banner-light { animation: none !important; }
  .contact-hero-banner .banner-image { transform: none !important; }
}
@keyframes ch-zoom {
  0%   { transform: scale(1.02) translate3d(0, 0, 0); }
  100% { transform: scale(1.08) translate3d(-1%, 0, 0); }
}
.contact-hero-banner .banner-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(243,244,246,0.96) 0%, rgba(243,244,246,0.86) 24%, rgba(243,244,246,0.45) 50%, rgba(243,244,246,0) 65%),
    linear-gradient(180deg, rgba(243,244,246,0) 70%, rgba(243,244,246,0.55) 100%);
  pointer-events: none;
}
.contact-hero-banner .banner-content {
  position: relative; z-index: 2;
  padding-block: clamp(64px, 9vw, 130px);
}
.contact-hero-banner h1 {
  font-size: clamp(42px, 5.8vw, 68px);
  letter-spacing: -0.03em;
  line-height: 1.04;
  max-width: 720px;
  color: var(--navy);
  margin-top: 18px;
}
.contact-hero-banner h1 .accent { color: var(--accent); }
.contact-hero-banner .eyebrow { margin-bottom: 0; }
.contact-hero-banner .hero-ctas { margin-top: 36px; }
.contact-hero-banner .hero-ctas .btn-ghost { background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }

@media (max-width: 880px) {
  .contact-hero-banner { min-height: clamp(520px, 80vh, 680px); }
  .contact-hero-banner .banner-image {
    background-position: 78% center;
    background-size: cover;
  }
  .contact-hero-banner .banner-overlay {
    background:
      linear-gradient(180deg, rgba(243,244,246,0.85) 0%, rgba(243,244,246,0.55) 30%, rgba(243,244,246,0.45) 60%, rgba(243,244,246,0.92) 100%);
  }
  .contact-hero-banner h1 { max-width: none; }
}


/* ==================== Payments Page (fintech checkout) ==================== */
/* Soft body bg so the page feels closer to Stripe / Ramp surfaces */
body.fp-page { background: linear-gradient(180deg, #F6F7F9 0%, #F3F4F6 100%); }

.payments-page-hero {
  padding-top: clamp(56px, 8vw, 100px);
  padding-bottom: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.payments-page-hero::before {
  content: ""; position: absolute; inset: 0 0 auto 0;
  height: 70%;
  background:
    radial-gradient(700px 380px at 85% 0%, rgba(0,174,239,0.10), transparent 60%),
    radial-gradient(800px 500px at 0% 30%, rgba(10,37,64,0.04), transparent 60%);
  pointer-events: none;
}
.payments-page-hero > * { position: relative; }
.payments-hero-grid { max-width: 880px; }
.payments-page-hero h1 {
  font-size: clamp(40px, 5.4vw, 64px);
  letter-spacing: -0.03em;
  margin-top: 16px;
}
.payments-page-hero h1 .accent { color: var(--accent); }
.payments-page-hero .lede {
  font-size: 19px; line-height: 1.55;
  color: var(--ink-2);
  margin-top: 22px; max-width: 620px;
}
.payments-page-hero .trust-inline {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 14px; margin-top: 36px;
  font-size: 13px; color: var(--ink-3);
  font-weight: 500;
}
.payments-page-hero .trust-inline span { display: inline-flex; align-items: center; gap: 8px; }
.payments-page-hero .trust-inline svg { color: var(--accent-ink); }
.payments-page-hero .trust-dot { color: var(--line); padding: 0 4px; }

/* Secure Payment Portal — moderate image banner */
.pay-banner {
  position: relative;
  height: clamp(230px, 26vw, 320px);
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(8,28,50,0.94) 0%, rgba(10,37,64,0.80) 42%, rgba(10,37,64,0.45) 72%, rgba(10,37,64,0.28) 100%),
    url("assets/payments-banner.png");
  background-size: cover, cover;
  background-position: center, center right;
  background-repeat: no-repeat;
}
.pay-banner-content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 40px);
  color: #fff;
}
.pay-banner-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 12px;
  background: rgba(0,174,239,0.16);
  border: 1px solid rgba(0,174,239,0.4);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7FD6F7;
}
.pay-banner-badge svg { color: #7FD6F7; }
.pay-banner h1 {
  margin-top: 14px;
  font-size: clamp(28px, 3.8vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: #fff;
}
.pay-banner p {
  margin-top: 10px;
  max-width: 460px;
  font-size: clamp(14.5px, 1.6vw, 17px);
  line-height: 1.5;
  color: rgba(255,255,255,0.84);
}
.pay-banner-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px;
  padding: 11px 20px;
  background: var(--accent);
  color: #062338;
  font-size: 14px; font-weight: 700;
  letter-spacing: -0.005em;
  border-radius: 999px;
  box-shadow: 0 10px 24px -10px rgba(0,174,239,0.7);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.pay-banner-cta svg { transition: transform .15s ease; }
.pay-banner-cta:hover { transform: translateY(-1px); background: #1CBDF5; box-shadow: 0 16px 30px -12px rgba(0,174,239,0.8); }
.pay-banner-cta:hover svg { transform: translateX(3px); }
@media (max-width: 640px) {
  .pay-banner { background-position: center, center; }
  .pay-banner-cta { display: none; }
}

/* Checkout — compact 25/75 split, Stripe-style */
.payments-checkout {
  background: #F8FAFC;
  padding-block: clamp(18px, 2.4vw, 30px) clamp(32px, 4.5vw, 56px);
}
.checkout-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 40px);
}
.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 26fr) minmax(0, 74fr);
  gap: clamp(14px, 1.8vw, 22px);
  align-items: start;
}
@media (max-width: 820px) {
  .checkout-grid { grid-template-columns: 1fr; }
}

/* LEFT — payment summary card (compact) */
.checkout-summary { position: sticky; top: 76px; }
@media (max-width: 860px) { .checkout-summary { position: static; } }

.summary-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(18px, 1.8vw, 22px);
  box-shadow: var(--shadow-sm);
}
.summary-card .eyebrow { margin-bottom: 14px; }

/* line items: payment amount + processing fee */
.summary-lines {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 11px;
}
.summary-lines li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  font-size: 13.5px;
}
.summary-lines .sl-lbl { color: var(--ink-2); line-height: 1.3; }
.summary-lines .sl-val { color: var(--navy); font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }

/* grand total row — the premium focal point */
.summary-grand {
  display: flex; flex-direction: column; align-items: flex-start; gap: 9px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.summary-grand .sg-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-family: var(--font-mono);
  color: var(--ink-3);
  white-space: nowrap;
  line-height: 1;
}
.summary-grand .sg-val {
  font-size: clamp(26px, 2.8vw, 32px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Glass payment-card preview — slow float + soft reflection */
.glass-card {
  --gc-grad-a: #0A2540;
  --gc-grad-b: #1B3A66;
  position: relative;
  margin-top: 22px;
  aspect-ratio: 1.586 / 1;  /* real credit card */
  border-radius: 20px;
  padding: 22px 24px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(140deg, var(--gc-grad-a) 0%, var(--gc-grad-b) 65%, #244B7C 100%);
  box-shadow:
    0 24px 60px -24px rgba(10,37,64,0.45),
    0 2px 0 rgba(255,255,255,0.06) inset,
    0 -1px 0 rgba(0,0,0,0.18) inset;
  animation: gc-float 7s ease-in-out infinite;
  isolation: isolate;
}
@keyframes gc-float {
  0%,100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%     { transform: translate3d(0, -4px, 0) rotate(-0.2deg); }
}
.glass-card .gc-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(220px 180px at 80% 10%, rgba(0,174,239,0.4), transparent 60%),
    radial-gradient(260px 200px at 10% 110%, rgba(0,174,239,0.15), transparent 60%);
  pointer-events: none;
  animation: gc-glow 9s ease-in-out infinite alternate;
}
@keyframes gc-glow {
  0%   { transform: translate3d(-2%, -1%, 0); opacity: 0.85; }
  100% { transform: translate3d(2%, 2%, 0); opacity: 1; }
}
.glass-card .gc-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(120deg, #000 0%, transparent 70%);
  opacity: 0.45;
}
.glass-card .gc-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.glass-card .gc-mark {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  display: grid; place-items: center;
}
.glass-card .gc-chip {
  width: 36px; height: 26px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, #D4D4AA 0%, #B8B888 50%, #D4D4AA 100%);
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.15),
    inset 0 0 8px rgba(0,0,0,0.12);
  position: relative;
}
.glass-card .gc-chip::before {
  content: ""; position: absolute; inset: 6px 8px;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 3px;
  background:
    linear-gradient(90deg, transparent 50%, rgba(0,0,0,0.1) 50%) 0 0/8px 100%,
    linear-gradient(0deg, transparent 50%, rgba(0,0,0,0.1) 50%) 0 0/100% 6px;
}
.glass-card .gc-brand {
  font-size: 18px; font-weight: 800;
  letter-spacing: 0.05em;
  font-style: italic;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,0.12);
}
.glass-card .gc-num {
  margin-top: 22px;
  display: flex; gap: 16px;
  font-family: var(--font-mono);
  font-size: clamp(15px, 1.6vw, 19px);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.glass-card .gc-num span:nth-child(1),
.glass-card .gc-num span:nth-child(2),
.glass-card .gc-num span:nth-child(3) { opacity: 0.7; }
.glass-card .gc-num span:nth-child(4) { color: #fff; opacity: 1; }
.glass-card .gc-bottom {
  margin-top: auto;
  padding-top: 22px;
  display: flex; gap: 24px;
}
.glass-card .gc-lbl {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.55;
  font-family: var(--font-mono);
  margin-bottom: 4px;
}
.glass-card .gc-val {
  font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

/* RIGHT — checkout form (wider, compact) */
.checkout-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(22px, 2.4vw, 32px);
  box-shadow: 0 1px 2px rgba(10,37,64,0.04), 0 22px 48px -34px rgba(10,37,64,0.20);
}
.checkout-form .eyebrow { margin-bottom: 6px; }
.checkout-form h2 {
  font-size: clamp(22px, 2.2vw, 27px);
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}
.checkout-form .checkout-sub {
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 18px;
  max-width: 520px;
}

.method-tabs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 5px;
  background: #F4F5F7;
  border-radius: 12px;
  margin-bottom: 24px;
}
.method-tabs button {
  border: 0; background: transparent;
  padding: 12px 14px;
  font: inherit; font-size: 14px; font-weight: 600;
  color: var(--ink-2);
  border-radius: 9px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}
.method-tabs button svg { color: var(--ink-3); transition: color .18s ease; }
.method-tabs button:hover { color: var(--navy); }
.method-tabs button.active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 1px 2px rgba(10,37,64,0.06), 0 1px 0 rgba(255,255,255,0.5) inset;
}
.method-tabs button.active svg { color: var(--accent); }

/* Form layout */
.fpay-form { display: grid; gap: 15px; }
.fpay-form .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fpay-form .fld { display: flex; flex-direction: column; gap: 8px; }
.fpay-form label {
  font-size: 12.5px; font-weight: 600;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}

/* Inputs — Stripe-tier focus state */
.fpay-form input,
.fpay-form select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #DCE0E6;
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  font: inherit; font-size: 15px;
  font-variant-numeric: tabular-nums;
  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}
.fpay-form input::placeholder { color: #B0B6C0; }
.fpay-form input:hover { border-color: #C8CED7; }
.fpay-form input:focus,
.fpay-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,174,239,0.15);
}
.fpay-form input:disabled { background: #F7F8FA; color: var(--ink-3); }

/* Combined card-information element (Stripe Elements visual style) */
.card-element {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 80px 70px;
  grid-template-areas:
    "num   num  num"
    "exp   cvc  brand";
  gap: 0;
  background: #fff;
  border: 1px solid #DCE0E6;
  border-radius: 10px;
  transition: border-color .18s ease, box-shadow .18s ease;
  position: relative;
}
.card-element:hover { border-color: #C8CED7; }
.card-element:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,174,239,0.15);
}
.card-element input {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 13px 14px;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}
.card-element input:focus { box-shadow: none !important; }
.card-element .ce-num {
  grid-area: num;
  border-bottom: 1px solid #ECEEF1 !important;
}
.card-element .ce-exp { grid-area: exp; border-right: 1px solid #ECEEF1 !important; }
.card-element .ce-cvc { grid-area: cvc; border-right: 1px solid #ECEEF1 !important; }
.card-element .ce-brand {
  grid-area: brand;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.08em;
}

/* Submit */
.checkout-pay {
  margin-top: 8px;
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(180deg, #11315A 0%, #0A2540 100%);
  color: #fff;
  font: inherit;
  font-size: 15px; font-weight: 600;
  letter-spacing: -0.005em;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  cursor: pointer;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.1) inset,
    0 8px 20px -8px rgba(10,37,64,0.45);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.checkout-pay:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.1) inset,
    0 14px 26px -10px rgba(10,37,64,0.5);
}
.checkout-pay:active:not(:disabled) { transform: translateY(0); }
.checkout-pay:disabled { opacity: 0.55; cursor: not-allowed; }
.checkout-pay.done {
  background: linear-gradient(180deg, #1F8A5B 0%, #176B47 100%);
  cursor: default;
}
.checkout-pay .spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: cp-spin 0.7s linear infinite;
}
@keyframes cp-spin { to { transform: rotate(360deg); } }

/* Credit-card processing fee notice (above the pay button) */
.fee-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 2px;
  padding: 14px 16px;
  background: #F6F8FB;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
}
.fee-notice .fn-ico {
  flex: 0 0 auto;
  display: grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent-ink);
}
.fee-notice .fn-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}
.fee-notice .fn-body p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-3);
}

/* Centered Stripe-style secure footer under the whole checkout */
.checkout-secure-footer {
  margin-top: 18px;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 12.5px;
  color: var(--ink-3);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.checkout-secure-footer .csf-lock {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent-ink);
  border-radius: 50%;
}

.checkout-footer {
  margin-top: 16px;
  display: flex; justify-content: center;
}
.checkout-footer .powered {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: var(--ink-3);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.checkout-footer .powered b {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.005em;
  font-family: var(--font-sans);
}
.checkout-footer .lock {
  width: 18px; height: 18px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  border-radius: 50%;
  display: grid; place-items: center;
}

/* Trust strip */
.payments-trust { padding-block: 0 clamp(40px, 5vw, 64px); }
.trust-row-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.trust-card {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
  transition: border-color .18s ease, transform .18s ease;
}
.trust-card:hover { border-color: #D5DAE2; transform: translateY(-2px); }
.trust-card .ic {
  width: 38px; height: 38px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  border-radius: 11px;
  display: grid; place-items: center;
  flex: 0 0 38px;
}
.trust-card .t { font-size: 14.5px; font-weight: 600; color: var(--navy); letter-spacing: -0.005em; }
@media (max-width: 800px) { .trust-row-grid { grid-template-columns: 1fr; } }

/* FAQ */
.payments-faqs { padding-block: clamp(32px, 4vw, 56px) clamp(64px, 8vw, 100px); }
.payments-faqs h2 { font-size: clamp(28px, 3.2vw, 36px); }
.payments-faqs .faqs-list {
  max-width: 720px;
  margin: 36px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 4px 24px;
  box-shadow: var(--shadow-sm);
}
.payments-faqs .faq-item {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.payments-faqs .faq-item:first-of-type { border-top: 0; padding-top: 20px; }
.payments-faqs .faq-item:last-of-type { padding-bottom: 20px; }
.payments-faqs .faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  font-size: 15.5px; font-weight: 600;
  color: var(--navy);
}
.payments-faqs .faq-q::-webkit-details-marker { display: none; }
.payments-faqs .faq-q .plus {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink-2);
  transition: transform .2s ease, color .2s ease, border-color .2s ease;
  flex: 0 0 24px;
}
.payments-faqs details[open] .faq-q .plus {
  transform: rotate(45deg);
  color: var(--accent);
  border-color: var(--accent);
}
.payments-faqs .faq-a {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  padding: 12px 0 0;
}


/* Form rows + amount input — clean uniform grid */
.fpay-form .form-row-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.fpay-form .form-row-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 540px) {
  .fpay-form .form-row-3 { grid-template-columns: 1fr 1fr; }
  .fpay-form .form-row-3 .fld:last-child { grid-column: span 2; }
  .fpay-form .form-row-2 { grid-template-columns: 1fr; }
}

/* Amount input — prefix + clean number rendering */
.amount-input {
  position: relative;
  display: flex; align-items: center;
}
.amount-input .ai-prefix {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-3);
  pointer-events: none;
}
.amount-input input {
  padding-left: 28px !important;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}
.amount-input input[aria-invalid="true"]:not(:focus) {
  border-color: #E4A4A4;
}


/* Glass-card mono wordmark (replaces the old hardcoded VISA badge) */
.glass-card .gc-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}


/* ==================== Payments Hero Banner (overrides shared contact-hero-banner) ==================== */
.payments-hero-banner .banner-image img {
  /* Original image has the subject in the center-left, so favor that anchor */
  object-position: center center;
}
.payments-hero-banner .banner-overlay {
  background:
    linear-gradient(90deg, rgba(243,244,246,0.92) 0%, rgba(243,244,246,0.72) 28%, rgba(243,244,246,0.32) 52%, rgba(243,244,246,0) 68%),
    linear-gradient(180deg, rgba(243,244,246,0) 75%, rgba(243,244,246,0.45) 100%);
}
.payments-hero-banner .banner-light {
  background:
    radial-gradient(720px 480px at 78% 24%, rgba(0,174,239,0.10), transparent 60%),
    radial-gradient(520px 380px at 18% 70%, rgba(10,37,64,0.04), transparent 65%);
}
.payments-hero-banner .banner-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-top: 22px;
  max-width: 520px;
}
.payments-hero-banner .hero-ctas { margin-top: 36px; }
.payments-hero-banner .btn-primary .arrow { transform: rotate(0deg); }

@media (max-width: 880px) {
  .payments-hero-banner .banner-image img {
    object-position: 70% center;
  }
  .payments-hero-banner .banner-overlay {
    background:
      linear-gradient(180deg, rgba(243,244,246,0.85) 0%, rgba(243,244,246,0.5) 35%, rgba(243,244,246,0.85) 100%);
  }
}


/* Contact-info team image — small rounded support shot under the
   phone/email/footnote block. Subtle lift on hover, no flashy motion. */
.contact-team-image {
  margin: 28px 0 0;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 12px 32px -12px rgba(10,37,64,0.22),
    0 1px 2px rgba(10,37,64,0.06);
  background: #F2F4F7;
  transition: transform .35s ease, box-shadow .35s ease;
  will-change: transform;
}
.contact-team-image:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 42px -14px rgba(10,37,64,0.28),
    0 2px 4px rgba(10,37,64,0.06);
}
.contact-team-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  transition: transform 1.4s ease;
}
.contact-team-image:hover img { transform: scale(1.025); }

@media (max-width: 880px) {
  .contact-team-image { margin-top: 24px; }
}


/* ============== Glass card preview — refined ============== */
/* Override the prior styles for top section + numbers so the preview
   looks like a generic secure card, with masked PAN + dynamic brand. */
.glass-card .gc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.glass-card .gc-brand {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
/* Subtle accent dot on unknown / Card */
.glass-card .gc-brand[data-brand="Card"] {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
}

/* Masked PAN — keep the dots quiet, make the last-4 prominent */
.glass-card .gc-num {
  margin-top: 22px;
  display: flex; gap: 16px;
  font-family: var(--font-mono);
  font-size: clamp(15px, 1.6vw, 19px);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}
.glass-card .gc-mask {
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.18em;
}
.glass-card .gc-last4 {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Soft horizontal shine — drifts across the card very slowly */
.glass-card .gc-shine {
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255,255,255,0.10) 45%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0.10) 55%,
    transparent 70%
  );
  pointer-events: none;
  transform: translateX(-30%);
  animation: gc-shine 14s ease-in-out infinite;
  mix-blend-mode: screen;
  opacity: 0.65;
}
@keyframes gc-shine {
  0%, 30% { transform: translateX(-40%); }
  60%     { transform: translateX(40%); }
  100%    { transform: translateX(40%); }
}
@media (prefers-reduced-motion: reduce) {
  .glass-card .gc-shine { animation: none; opacity: 0.35; }
}


/* Dash placeholder for empty card-number groups — subtle, more muted
   than the masked dots so the customer can see typing progress visually
   without ever exposing digits. */
.glass-card .gc-mask:not(:empty),
.glass-card .gc-last4:not(:empty) {
  transition: color .3s ease, letter-spacing .3s ease;
}
.glass-card .gc-num span {
  font-variant-numeric: tabular-nums;
}


/* Dash placeholder — muted so empty state reads as "waiting for input" */
.glass-card .gc-dash {
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.22em;
}


/* ==================== Services Page ==================== */
.services-hero-banner .banner-image img {
  object-position: center center;
  object-fit: cover;
}
.services-hero-banner { min-height: clamp(560px, 70vh, 740px); }
.payments-hero-banner .banner-image img {
  object-position: center center;
  object-fit: cover;
}
.payments-hero-banner { min-height: clamp(560px, 70vh, 740px); }
@media (max-width: 880px) {
  .services-hero-banner .banner-image img,
  .payments-hero-banner .banner-image img {
    object-position: center center;
  }
}
.services-hero-banner .banner-overlay {
  background:
    linear-gradient(90deg, rgba(243,244,246,0.94) 0%, rgba(243,244,246,0.78) 28%, rgba(243,244,246,0.38) 52%, rgba(243,244,246,0) 68%),
    linear-gradient(180deg, rgba(243,244,246,0) 70%, rgba(243,244,246,0.55) 100%);
}
.services-hero-banner .banner-light {
  background:
    radial-gradient(700px 460px at 78% 26%, rgba(0,174,239,0.10), transparent 60%),
    radial-gradient(520px 360px at 18% 70%, rgba(10,37,64,0.04), transparent 65%);
}
.services-hero-banner .banner-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-top: 22px;
  max-width: 560px;
}
@media (max-width: 880px) {
  .services-hero-banner .banner-image img { object-position: 70% center; }
  .services-hero-banner .banner-overlay {
    background:
      linear-gradient(180deg, rgba(243,244,246,0.85) 0%, rgba(243,244,246,0.5) 35%, rgba(243,244,246,0.85) 100%);
  }
}

/* Three-up pillars row */
.services-pillars { padding-block: clamp(56px, 8vw, 96px) clamp(40px, 6vw, 64px); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pillar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 30px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.pillar-card:hover {
  transform: translateY(-3px);
  border-color: #D5DAE2;
  box-shadow: var(--shadow-md);
}
.pillar-card .ic {
  width: 48px; height: 48px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.pillar-card:hover .ic { background: var(--navy); color: #fff; transform: scale(1.04); }
.pillar-card h3 { font-size: 19px; margin-bottom: 8px; }
.pillar-card p { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }
@media (max-width: 900px) { .pillars-grid { grid-template-columns: 1fr; } }


/* ==================== COI request section + modal ==================== */
.services-coi { padding-block: clamp(40px, 5vw, 64px); }
.coi-card {
  background:
    linear-gradient(180deg, #fff 0%, #F8FAFC 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(32px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 28px;
  box-shadow: var(--shadow-sm);
}
.coi-card-text h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.025em;
  margin-top: 14px;
  margin-bottom: 12px;
}
.coi-card-text p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 520px;
}
.coi-card-action .btn-primary {
  padding: 0 22px;
  height: 52px;
}
@media (max-width: 800px) { .coi-card { grid-template-columns: 1fr; } }

/* Modal */
.coi-modal-root {
  position: fixed; inset: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 3vw, 40px);
  animation: coi-fade .25s ease;
}
@keyframes coi-fade { from { opacity: 0; } to { opacity: 1; } }
.coi-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 37, 64, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.coi-modal {
  position: relative;
  width: 100%;
  max-width: 760px;
  max-height: calc(100vh - 80px);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 40px 80px -20px rgba(10,37,64,0.4), 0 8px 24px -8px rgba(10,37,64,0.15);
  display: flex; flex-direction: column;
  overflow: hidden;
  animation: coi-pop .35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes coi-pop {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}

.coi-modal-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
  padding: clamp(24px, 3vw, 36px);
  padding-bottom: 0;
}
.coi-modal-head h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.02em;
  margin-top: 12px;
  margin-bottom: 8px;
}
.coi-modal-head p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 520px;
}
.coi-close {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50%;
  color: var(--ink-2);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.coi-close:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.coi-form {
  padding: clamp(20px, 2.5vw, 32px) clamp(24px, 3vw, 36px) clamp(24px, 3vw, 36px);
  overflow-y: auto;
}

/* GoHighLevel embedded COI form inside the modal. The iframe is auto-resized
   to its full content height by GHL's form_embed.js (scrolling="no"), so the
   single scroll lives on .coi-embed within the modal \u2014 no double scrollbars. */
.coi-embed {
  padding: clamp(16px, 2vw, 24px) clamp(20px, 2.5vw, 32px) clamp(20px, 2.5vw, 32px);
  overflow-y: auto;
  flex: 1 1 auto;
}
.coi-embed iframe {
  display: block;
  width: 100%;
  min-height: 600px;
  border: none;
  border-radius: 8px;
  background: #fff;
}

.coi-section + .coi-section { margin-top: 28px; }
.coi-section-title {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-ink);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
}
.coi-section-title::before {
  content: "";
  width: 14px; height: 1px;
  background: var(--accent);
}
.coi-row { display: grid; gap: 12px; margin-top: 12px; }
.coi-row:first-of-type { margin-top: 0; }
.coi-row-1 { grid-template-columns: 1fr; }
.coi-row-2 { grid-template-columns: 1fr 1fr; }
.coi-row-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 640px) {
  .coi-row-2, .coi-row-3 { grid-template-columns: 1fr; }
}

.coi-field { display: flex; flex-direction: column; gap: 6px; }
.coi-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.01em;
  display: inline-flex; align-items: center; gap: 4px;
}
.coi-req {
  color: var(--accent);
  font-weight: 700;
  margin-left: 2px;
}
.coi-field input {
  width: 100%;
  padding: 12px 14px;
  background: #F7F8FA;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 14.5px;
  color: var(--navy);
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.coi-field input::placeholder { color: #B0B6C0; }
.coi-field input:hover { border-color: #C8CED7; }
.coi-field input:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0,174,239,0.15);
}
.coi-field input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #E4A4A4;
}

.coi-actions {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: flex-end; gap: 10px;
  flex-wrap: wrap;
}
.coi-actions .btn { height: 46px; }
@media (max-width: 540px) {
  .coi-actions { flex-direction: column-reverse; }
  .coi-actions .btn { width: 100%; }
}


/* ============ Services page refinements ============ */
/* Tighter, more refined section heads — less aggressive type hierarchy */
.services-section-head {
  max-width: 620px;
  margin-bottom: clamp(28px, 3.5vw, 40px);
}
.services-section-head h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.022em;
  margin-top: 12px;
  line-height: 1.15;
}
.services-section-head p {
  font-size: 15px;
  color: var(--ink-3);
  margin-top: 10px;
  max-width: 540px;
}

/* Pillars row — premium, compact, less white space */
.services-pillars { padding-block: clamp(40px, 5.5vw, 64px) clamp(28px, 4vw, 44px); }
.pillars-grid {
  gap: 14px;
}
.pillar-card {
  padding: 24px 24px 22px;
  border-radius: 16px;
}
.pillar-card .ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.pillar-card h3 {
  font-size: 16px;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.pillar-card p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-3);
}
.pillar-card:hover .ic {
  transform: scale(1);
  background: var(--accent-soft);
  color: var(--accent-ink);
  box-shadow: 0 0 0 4px rgba(0,174,239,0.08);
}

/* Coverage cards — tighter padding, more refined hierarchy */
.coverage-card {
  padding: 24px 24px 22px !important;
  min-height: 0 !important;
  border-radius: 16px;
}
.coverage-card .ico-tile {
  width: 38px !important;
  height: 38px !important;
  border-radius: 10px !important;
  margin-bottom: 16px !important;
}
.coverage-card .ico-tile svg { width: 18px !important; height: 18px !important; }
.coverage-card h3 {
  font-size: 16px !important;
  letter-spacing: -0.015em;
  margin-bottom: 6px !important;
}
.coverage-card p {
  font-size: 13.5px !important;
  line-height: 1.5 !important;
  color: var(--ink-3) !important;
  flex: 1;
}
/* Drop the secondary "Learn more" affordance — it's noise at this density */
.services-pillars + section .coverage-card .learn,
section:has(.coverage-grid) .coverage-card .learn { display: none; }


/* ============ Services page — refined dark panel + cards ============ */

/* Premium on-dark CTA button — glass + white border, no flashy cyan */
.btn-on-dark {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.btn-on-dark:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.32);
  transform: translateY(-1px);
}

/* Refined dark compliance panel — softer gradient, subtle glass depth */
.services-compliance-panel .compliance,
section:has(> .container > .compliance) .compliance {
  background:
    linear-gradient(160deg, #0A2540 0%, #11315A 55%, #14406E 100%);
}
.compliance-item .title { font-size: 15px; font-weight: 600; }
.compliance-item .desc { font-size: 13px; color: rgba(255,255,255,0.55); }

/* Tighter coverage cards — even more compact + refined icons */
.coverage-card {
  padding: 22px 22px 20px !important;
}
.coverage-card .ico-tile {
  width: 36px !important;
  height: 36px !important;
  border-radius: 9px !important;
  margin-bottom: 14px !important;
  background: var(--accent-soft) !important;
  color: var(--accent-ink) !important;
  position: relative;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.coverage-card .ico-tile::after { display: none; }
.coverage-card .ico-tile svg { width: 17px !important; height: 17px !important; stroke-width: 1.7 !important; }
.coverage-card h3 { font-size: 15.5px !important; margin-bottom: 4px !important; }
.coverage-card p { font-size: 13px !important; line-height: 1.5 !important; }
.coverage-card:hover .ico-tile {
  background: var(--navy) !important;
  color: #fff !important;
  box-shadow: 0 0 0 4px rgba(0,174,239,0.08);
}

/* Pillar icons — match the same refined depth */
.pillar-card .ic {
  width: 36px; height: 36px;
  border-radius: 9px;
  position: relative;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.pillar-card .ic svg { width: 17px; height: 17px; }
.pillar-card:hover .ic { box-shadow: 0 0 0 4px rgba(0,174,239,0.08); }

/* Pillars grid — 3 cols on desktop, slightly tighter gap */
.pillars-grid { gap: 12px; }

/* Coverage grid — tighter spacing */
.coverage-grid { gap: 12px; }


/* About hero — banner overlay tuned for the existing truck photo */
.about-hero-banner .banner-image img {
  object-position: center 60%;
}
.about-hero-banner .banner-overlay {
  background:
    linear-gradient(90deg, rgba(243,244,246,0.93) 0%, rgba(243,244,246,0.78) 30%, rgba(243,244,246,0.4) 55%, rgba(243,244,246,0) 72%),
    linear-gradient(180deg, rgba(243,244,246,0) 70%, rgba(243,244,246,0.55) 100%);
}
.about-hero-banner .banner-light {
  background:
    radial-gradient(700px 460px at 78% 26%, rgba(0,174,239,0.05), transparent 65%),
    radial-gradient(500px 360px at 18% 70%, rgba(10,37,64,0.02), transparent 70%);
  opacity: 0.7;
}
.about-hero-banner .banner-lede {
  font-size: 18px; line-height: 1.55;
  color: var(--ink-2);
  margin-top: 22px; max-width: 540px;
}
@media (max-width: 880px) {
  .about-hero-banner .banner-image img { object-position: 70% center; }
  .about-hero-banner .banner-overlay {
    background:
      linear-gradient(180deg, rgba(243,244,246,0.85) 0%, rgba(243,244,246,0.5) 35%, rgba(243,244,246,0.85) 100%);
  }
}


/* ============ Contact hero — editorial split layout ============ */
/* Mirrors the About hero composition: text on the left, premium rounded
   image card on the right. Replaces the full-bleed banner version. */
.contact-hero {
  padding-block: clamp(48px, 6vw, 84px) clamp(48px, 7vw, 96px);
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.contact-hero h1 {
  font-size: clamp(36px, 4.6vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.contact-hero h1 .accent { color: var(--accent); }
.contact-hero .lede {
  font-size: 18px; line-height: 1.55;
  color: var(--ink-2);
  margin-top: 22px;
  max-width: 520px;
}
.contact-hero-photo-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  background: #E7EAF0;
  box-shadow:
    0 24px 60px -24px rgba(10, 37, 64, 0.32),
    0 4px 14px -4px rgba(10, 37, 64, 0.12);
}
.contact-hero-photo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* Subtle Ken-Burns zoom — slow, premium, non-distracting */
  transform: scale(1.03);
  animation: contact-hero-zoom 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes contact-hero-zoom {
  0%   { transform: scale(1.03) translate3d(0, 0, 0); }
  100% { transform: scale(1.07) translate3d(-1%, -0.4%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .contact-hero-photo-card img { animation: none; transform: none; }
}
@media (max-width: 900px) {
  .contact-hero-grid { grid-template-columns: 1fr; }
  .contact-hero-photo-card { aspect-ratio: 4 / 3; max-height: 480px; }
}


/* ============ COI section — promoted to lead position ============ */
/* When placed right after the hero, give the card a touch more presence:
   a slightly larger container, a leading icon tile, and a soft hover lift. */
.services-coi { padding-block: clamp(48px, 6vw, 80px); }
.coi-card {
  padding: clamp(36px, 4.5vw, 56px);
  border-radius: 28px;
  background:
    linear-gradient(180deg, #fff 0%, #F6F8FB 100%);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.coi-card:hover {
  transform: translateY(-2px);
  border-color: #D5DAE2;
  box-shadow:
    0 24px 60px -28px rgba(10, 37, 64, 0.22),
    0 4px 12px -4px rgba(10, 37, 64, 0.06);
}
.coi-card-text h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 14px;
}
.coi-card-text p {
  font-size: 16px;
  max-width: 560px;
}

/* Leading icon tile — anchors the section visually */
.coi-card-ico {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  margin-bottom: 18px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.coi-card:hover .coi-card-ico {
  background: var(--navy);
  color: #fff;
  transform: scale(1.04);
}

/* Slightly chunkier CTA on this promoted section */
.coi-card-action .btn-primary {
  height: 56px;
  padding: 0 26px;
  font-size: 15px;
}


/* Tighten home hero feature cards — more compact, less vertical weight */
.hero-features { gap: 10px; margin-top: 32px; }
.hero-feature {
  padding: 11px 13px;
  border-radius: 11px;
}
.hero-feature svg { width: 16px; height: 16px; }
.hero-feature span { font-size: 12.5px; }


/* Compliance dark panel — subtle Fleetro logo as cinematic background depth.
   Heavily blurred and very low opacity so text readability stays intact. */
.compliance {
  isolation: isolate;
}
.compliance::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/fleetro-logo-bg.png');
  /* Offset to the left so the watermark sits behind the headline column,
     not perfectly centered. Mobile breakpoint collapses to centered. */
  background-position: -8% 50%;
  background-size: 62% auto;
  background-repeat: no-repeat;
  filter: blur(14px);
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
  /* Soft mask so the watermark fades out toward the right side where
     the services list lives, keeping it readable. */
  -webkit-mask-image: linear-gradient(100deg, #000 0%, #000 45%, rgba(0,0,0,0.4) 65%, transparent 85%);
  mask-image: linear-gradient(100deg, #000 0%, #000 45%, rgba(0,0,0,0.4) 65%, transparent 85%);
}
@media (max-width: 860px) {
  .compliance::after {
    background-position: 50% 30%;
    background-size: 85% auto;
    opacity: 0.07;
    -webkit-mask-image: none;
    mask-image: none;
  }
}
.compliance > * { position: relative; z-index: 1; }


/* QuoteCTA section — subtle blue gradient glow behind the left column
   so it doesn't feel visually empty. Decorative, low-key, premium. */
.quote-cta {
  position: relative;
  overflow: hidden;
}
.quote-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 380px at 15% 30%, rgba(0,174,239,0.10), transparent 65%),
    radial-gradient(420px 320px at 5% 100%, rgba(10,37,64,0.05), transparent 65%);
  pointer-events: none;
}
.quote-cta > * { position: relative; }

/* Multi-select coverage chips (replaces the single dropdown) */
.cov-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.cov-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px 7px 9px;
  border: 1px solid #DCE0E6;
  background: #fff;
  border-radius: 999px;
  font: inherit; font-size: 12.5px; font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.cov-chip .cc-tick {
  width: 15px; height: 15px; border-radius: 50%;
  display: grid; place-items: center;
  background: transparent;
  border: 1.5px solid #CDD3DC;
  color: transparent;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.cov-chip:hover { border-color: #C2C8D2; color: var(--navy); }
.cov-chip:hover .cc-tick { border-color: var(--accent); }
.cov-chip.on {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 9%, #fff 91%);
  color: var(--accent-ink);
}
.cov-chip.on .cc-tick { background: var(--accent); border-color: var(--accent); color: #fff; }
.cov-chip:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }


/* Refined footer — 4 columns (brand + 3 link cols), softer gradient, more breathing room */
footer.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #0A2540 0%, #08203A 100%);
}
footer.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(640px 380px at 12% 0%, rgba(0,174,239,0.10), transparent 60%),
    radial-gradient(520px 340px at 95% 100%, rgba(0,174,239,0.05), transparent 65%);
  pointer-events: none;
}
footer.site-footer > * { position: relative; }

.footer-grid {
  grid-template-columns: 1.6fr 1fr 1.4fr 1.3fr;
  gap: 56px;
}
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

.footer-grid h4 {
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.footer-grid ul { gap: 12px; }
.footer-grid a {
  transition: color .15s ease, transform .15s ease;
  display: inline-block;
}
.footer-grid a:hover { color: #fff; transform: translateX(2px); }
.footer-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.footer-brand-text {
  max-width: 320px;
  color: rgba(255,255,255,0.7);
}
.footer-bottom {
  padding-top: 36px;
}
.legal-links a {
  transition: color .15s ease;
}


/* Home hero — official Fleetro logo, placed above the eyebrow */
.hero-logo {
  display: inline-flex;
  margin-bottom: 24px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 8px 24px -12px rgba(10,37,64,0.18),
    0 1px 3px rgba(10,37,64,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.hero-logo:hover {
  transform: translateY(-1px);
  box-shadow:
    0 12px 28px -12px rgba(10,37,64,0.24),
    0 2px 4px rgba(10,37,64,0.06);
}
.hero-logo img {
  display: block;
  width: 200px;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}
@media (max-width: 600px) {
  .hero-logo img { width: 160px; }
  .hero-logo { margin-bottom: 18px; }
}


/* Navbar brand — official FLEETRO INSURANCE wordmark (transparent PNG, navy art on the light header) */
.brand { padding: 0; gap: 0; }
.brand-logo {
  display: block;
  height: 50px;
  width: auto;
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
  transition: opacity .15s ease;
}
.brand:hover .brand-logo { opacity: 0.85; }
@media (max-width: 720px) {
  .brand-logo { height: 42px; }
}


/* Footer brand — official Fleetro lockup, recolored for the dark navy footer:
   steel-navy shield + white truck/road emblem and a white FLEETRO wordmark,
   so it reads cleanly on navy (no CSS filter needed). */
.footer-brand-link {
  display: inline-block;
  padding: 0;
  margin-bottom: 4px;
}
.footer-brand-logo {
  display: block;
  height: 80px;
  width: auto;
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
  transition: opacity .15s ease;
}
.footer-brand-link:hover .footer-brand-logo { opacity: 0.85; }
.footer-brand-text { margin-top: 22px; }
@media (max-width: 720px) {
  .footer-brand-logo { height: 64px; }
}


/* ============ Brand watermarks ============ */
/* Small white Fleetro wordmark in the bottom-right corner of every
   hero image container. Subtle (low opacity, low presence) but adds
   consistent brand recognition across home, about, contact, services,
   and payments heroes. Uses ::before so it doesn't conflict with the
   existing ::after gradient overlays on some of these containers. */
.hero-photo,
.about-hero-photo,
.contact-hero-photo-card {
  position: relative;
}
.hero-photo::before,
.about-hero-photo::before,
.contact-hero-photo-card::before {
  content: "";
  position: absolute;
  bottom: 18px;
  right: 20px;
  width: 96px;
  height: 16px;
  background: url('assets/fleetro-logo.png') right center / contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.42;
  z-index: 3;
  pointer-events: none;
  /* Faint outer glow keeps the wordmark legible on light photos */
  mix-blend-mode: screen;
}
@media (max-width: 540px) {
  .hero-photo::before,
  .about-hero-photo::before,
  .contact-hero-photo-card::before {
    bottom: 12px; right: 14px;
    width: 76px; height: 14px;
    opacity: 0.5;
  }
}

/* ============ Footer brand watermark ============ */
/* Very large blurred Fleetro wordmark behind the entire footer.
   Sits BELOW the existing soft cyan gradient (which uses ::before) so
   we use ::after here. Extremely subtle — 4% opacity, 12px blur, white
   so it reads as ghost depth, not a logo placement. */
footer.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/fleetro-logo.png') center 55% / 78% auto no-repeat;
  filter: brightness(0) invert(1) blur(12px);
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 720px) {
  footer.site-footer::after {
    background-size: 130% auto;
    opacity: 0.05;
  }
}


/* QuoteCTA — banner + spinner styling for the new submit flow */
.quote-banner {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 14px;
  animation: qb-in .3s ease;
}
@keyframes qb-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}
.quote-banner.is-success {
  background: color-mix(in srgb, #1F8A5B 10%, #fff 90%);
  border: 1px solid color-mix(in srgb, #1F8A5B 35%, #fff 65%);
  color: #145C3D;
}
.quote-banner.is-error {
  background: color-mix(in srgb, #C44 8%, #fff 92%);
  border: 1px solid color-mix(in srgb, #C44 30%, #fff 70%);
  color: #8A2F2F;
}
.quote-banner .qb-ic {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: currentColor;
  color: #fff;
}
.quote-banner.is-success .qb-ic { background: #1F8A5B; }
.quote-banner.is-error   .qb-ic { background: #C04848; }
.quote-banner.is-success .qb-ic svg,
.quote-banner.is-error   .qb-ic svg { color: #fff; }

.quote-spinner {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  animation: qcs 0.7s linear infinite;
}
@keyframes qcs { to { transform: rotate(360deg); } }

.quote-form input:disabled,
.quote-form select:disabled {
  background: #F4F5F7;
  color: var(--ink-3);
  cursor: not-allowed;
}
.quote-form .submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}


/* Contact form — disabled state matches the quote form */
.cf-form input:disabled,
.cf-form select:disabled,
.cf-form textarea:disabled {
  background: #F4F5F7;
  color: var(--ink-3);
  cursor: not-allowed;
}
.cf-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}


/* Summary card — when paired with the now-removed glass-card preview, it
   anchored the left column visually. Without that preview, give it a bit
   more interior height so the column doesn't look stunted next to the
   form. A thin accent strip on top fills the gap. */
.summary-card { position: relative; }
.summary-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(24px, 2.4vw, 32px);
  right: clamp(24px, 2.4vw, 32px);
  height: 3px;
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 50%, transparent));
  border-radius: 0 0 3px 3px;
  opacity: 0.55;
}

/* Left column now contains only the summary card — let it grow to align
   visually with the taller form on the right on desktop. */
@media (min-width: 981px) {
  .checkout-summary { align-self: stretch; }
  .summary-card {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .summary-card .summary-rows {
    flex: 1;
    padding-bottom: 6px;
  }
}


/* Field-level inline error messages for the payment form */
.fpay-form .fld-error {
  margin-top: 6px;
  color: #B33A3A;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.fpay-form input[aria-invalid="true"]:not(:focus) {
  border-color: #E4A4A4;
  background: color-mix(in srgb, #C44 6%, #fff 94%);
}


/* COI form — disabled state matches the quote / contact forms */
.coi-field input:disabled {
  background: #F4F5F7;
  color: var(--ink-3);
  cursor: not-allowed;
}
.coi-actions .btn:disabled,
.coi-close:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ============ Mobile menu panel (sibling of <header>) ============ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0; bottom: 0;
  background: rgba(243, 244, 246, 0.98);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid var(--line);
  z-index: 999;
  flex-direction: column;
  padding: clamp(24px, 5vw, 40px) var(--pad-x) 40px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease;
}
@media (max-width: 980px) {
  .mobile-menu { display: flex; pointer-events: none; }
  .mobile-menu.is-open { opacity: 1; transform: none; pointer-events: auto; }
}
.mobile-menu-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.mobile-menu-link {
  display: block;
  padding: 14px 4px;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line);
  transition: color .15s ease, padding-left .15s ease;
}
.mobile-menu-link:hover, .mobile-menu-link:focus-visible { color: var(--accent-ink); padding-left: 8px; }
.mobile-menu-link.active { color: var(--accent-ink); }
.mobile-menu-ctas { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.mobile-menu-ctas .btn { width: 100%; height: 50px; justify-content: center; font-size: 15px; }
.mobile-menu-lang { display: flex; justify-content: flex-start; }
.mobile-menu-lang .lang-toggle { font-size: 12px; }

/* Keep the hamburger button tappable above the overlay */
.menu-btn { position: relative; z-index: 1000; cursor: pointer; }

/* ============================================================
   PAYMENTS PORTAL — customer details form + Stripe redirect
   ============================================================ */

/* Sub-section labels inside the payment form */
.fpay-form .form-group-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
  margin-top: 4px;
}
.fpay-form .form-group-label:first-child { margin-top: 0; }

/* Textarea matches the input styling */
.fpay-form textarea {
  appearance: none; -webkit-appearance: none;
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--navy);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  resize: vertical;
  min-height: 84px;
  line-height: 1.5;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.fpay-form textarea::placeholder { color: #B0B6C0; }
.fpay-form textarea:hover { border-color: #C8CED7; }
.fpay-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,174,239,0.15);
}

/* Native select with custom chevron */
.fpay-form .select-wrap { position: relative; display: flex; }
.fpay-form .select-wrap select { width: 100%; padding-right: 38px; cursor: pointer; }
.fpay-form .select-wrap select.is-placeholder { color: #B0B6C0; }
.fpay-form .select-chevron {
  position: absolute; right: 13px; top: 50%;
  transform: translateY(-50%);
  display: grid; place-items: center;
  color: var(--ink-3);
  pointer-events: none;
}

/* Secure note inside the summary card */
.summary-secure {
  display: flex; align-items: flex-start; gap: 9px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink-3);
}
.summary-secure svg { flex: 0 0 auto; color: var(--accent); margin-top: 1px; }

/* Payment authorization disclosure (below the Complete Payment button) */
.payment-auth {
  margin: 2px 0 0;
  padding: 13px 15px;
  background: #F7F8FA;
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--ink-3);
  letter-spacing: -0.002em;
}
.payment-auth a {
  color: var(--accent-ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.payment-auth a:hover { color: var(--navy); }

/* Powered-by row under the submit button */
.checkout-powered {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  margin-top: 4px;
  font-size: 12px;
  color: var(--ink-3);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.checkout-powered svg { color: var(--ink-3); }
.checkout-powered strong { color: var(--navy); font-weight: 600; }

/* Redirect overlay (preview demonstration of the Stripe hand-off) */
.pay-redirect {
  position: fixed; inset: 0; z-index: 2000;
  display: grid; place-items: center;
  padding: 24px;
  background: rgba(10,37,64,0.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  animation: pr-fade .2s ease;
}
@keyframes pr-fade { from { opacity: 0; } to { opacity: 1; } }
.pay-redirect-card {
  position: relative;
  width: min(440px, 100%);
  background: #fff;
  border-radius: 22px;
  padding: 36px 32px 30px;
  text-align: center;
  box-shadow: 0 40px 90px -30px rgba(10,37,64,0.6);
  animation: pr-rise .26s cubic-bezier(.2,.7,.3,1);
}
@keyframes pr-rise { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.prc-spinner {
  width: 46px; height: 46px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 12%, #fff 88%);
}
.prc-spinner span {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2.5px solid color-mix(in srgb, var(--accent) 30%, #fff 70%);
  border-top-color: var(--accent);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.pay-redirect-card h3 {
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 8px;
}
.pay-redirect-card > p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 340px;
  margin: 0 auto;
}
.prc-summary {
  list-style: none; padding: 16px; margin: 20px 0 0;
  background: #F7F8FA;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid; gap: 10px;
}
.prc-summary li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  font-size: 13.5px;
}
.prc-summary li span { color: var(--ink-3); }
.prc-summary li strong { color: var(--navy); font-weight: 600; text-align: right; }
.prc-summary .prc-total {
  margin-top: 2px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.prc-summary .prc-total span { color: var(--navy); font-weight: 600; }
.prc-summary .prc-total strong { font-size: 15px; }
.prc-note {
  margin-top: 16px;
  font-size: 11.5px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  color: var(--ink-3);
}
.prc-actions {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 20px;
}
.prc-actions .btn { width: 100%; height: 48px; justify-content: center; }
.prc-close {
  position: absolute; top: 14px; right: 16px;
  width: 30px; height: 30px;
  border: 0; background: transparent;
  font-size: 22px; line-height: 1;
  color: var(--ink-3); cursor: pointer;
  border-radius: 8px;
  transition: background .15s ease, color .15s ease;
}
.prc-close:hover { background: #F0F2F5; color: var(--navy); }

/* Payment result pages (success / canceled) */
.pay-status {
  min-height: 70vh;
  display: grid; place-items: center;
  padding-block: clamp(72px, 12vw, 140px);
  background:
    radial-gradient(900px 460px at 50% -8%, color-mix(in srgb, var(--accent) 9%, #fff 91%), transparent 70%),
    #fff;
}
.pay-status-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(36px, 5vw, 56px) clamp(28px, 5vw, 56px);
  box-shadow: 0 30px 70px -34px rgba(10,37,64,0.28), 0 2px 6px rgba(10,37,64,0.04);
}
.ps-badge {
  width: 76px; height: 76px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  animation: ps-pop .4s cubic-bezier(.2,.8,.3,1.2);
}
@keyframes ps-pop { from { opacity: 0; transform: scale(.7); } to { opacity: 1; transform: none; } }
.pay-status-card.is-success .ps-badge {
  background: linear-gradient(180deg, #25A36A 0%, #178050 100%);
  box-shadow: 0 14px 30px -10px rgba(23,128,80,0.55);
}
.pay-status-card.is-canceled .ps-badge {
  background: linear-gradient(180deg, #C9542F 0%, #A83E1F 100%);
  box-shadow: 0 14px 30px -10px rgba(168,62,31,0.5);
}
.pay-status-card .eyebrow { margin-bottom: 12px; }
.pay-status-card h1 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.08;
  margin-bottom: 16px;
}
.pay-status-card > p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 440px;
  margin: 0 auto;
}
.ps-ref {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 26px;
  padding: 10px 16px;
  background: #F7F8FA;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.ps-ref-lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
}
.ps-ref-val {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
}
.ps-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-top: 32px;
}
.ps-actions .btn { height: 50px; padding: 0 24px; }
@media (max-width: 480px) {
  .ps-actions { flex-direction: column; }
  .ps-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   A2P 10DLC COMPLIANCE — SMS disclosure, footer info, legal pages
   ============================================================ */

/* ---- SMS consent disclosure (under every form with a phone field) ---- */
/* ---- SMS consent (GoHighLevel / Twilio A2P 10DLC, under every phone form) ---- */
.sms-consent {
  margin-top: 16px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.sms-consent-head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.sms-consent-ic {
  flex: 0 0 auto;
  display: grid; place-items: center;
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--accent-soft);
  color: var(--accent-ink);
}
.sms-consent-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--navy);
  text-transform: uppercase;
  white-space: nowrap;
}
.sms-consent-opt {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: start;
  cursor: pointer;
  text-transform: none;
  letter-spacing: normal;
}
.sms-consent-opt input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.sco-box {
  flex: 0 0 auto;
  width: 18px; height: 18px;
  margin-top: 1px;
  border: 1.5px solid var(--line-2);
  border-radius: 5px;
  background: #fff;
  display: grid;
  place-items: center;
  color: #fff;
  transition: background .15s ease, border-color .15s ease;
}
.sco-box svg { opacity: 0; transform: scale(0.6); transition: opacity .12s ease, transform .12s ease; }
.sms-consent-opt.checked .sco-box {
  background: var(--accent);
  border-color: var(--accent);
}
.sms-consent-opt.checked .sco-box svg { opacity: 1; transform: scale(1); }
.sms-consent-opt input:focus-visible + .sco-box {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.sco-text {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--ink-2);
  letter-spacing: -0.002em;
  text-transform: none;
  font-weight: 400;
}
.sco-tag {
  display: inline-block;
  margin-right: 7px;
  padding: 1px 7px;
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: 1.5px;
  background: #EEF1F5;
  color: var(--ink-3);
}
.sco-tag.req {
  background: color-mix(in srgb, var(--accent) 16%, #fff 84%);
  color: var(--accent-ink);
}
.sms-consent-opt + .sms-consent-opt { margin-top: 12px; }
.sms-consent-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.sms-consent-links a {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-ink);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.sms-consent-links a:hover { color: var(--navy); }
.sms-consent-links .sep { color: var(--line-2); font-size: 12px; }

/* ---- Custom quote form (replaces the GHL iframe) ---- */
.quote-form { width: 100%; }
.qform {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(20px, 2.4vw, 28px);
  box-shadow: 0 1px 2px rgba(10,37,64,0.04), 0 22px 48px -34px rgba(10,37,64,0.2);
}
.qform-head { margin-bottom: 18px; }
.qform-head h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  letter-spacing: -0.025em;
  color: var(--navy);
}
.qform-head p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-3);
  margin-top: 6px;
}

/* required consent checkbox (matches SMS consent styling) */
.qform-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: start;
  cursor: pointer;
  margin-top: 2px;
  padding: 13px 14px;
  background: #F6F8FB;
  border: 1px solid var(--line);
  border-radius: 11px;
  text-transform: none;
  letter-spacing: normal;
  transition: border-color .15s ease, background .15s ease;
}
.qform-consent:hover { border-color: #C8CED7; }
.qform-consent.checked {
  background: color-mix(in srgb, var(--accent) 6%, #fff 94%);
  border-color: color-mix(in srgb, var(--accent) 32%, #fff 68%);
}
.qform-consent.invalid { border-color: #E4A4A4; background: color-mix(in srgb, #C44 5%, #fff 95%); }
.qform-consent input { position: absolute; opacity: 0; width: 0; height: 0; }
.qform-consent .sco-box { cursor: pointer; }
.qform-consent .sco-text { font-size: 11.5px; line-height: 1.5; color: var(--ink-2); font-weight: 400; }
.qform-consent .sco-text a {
  color: var(--accent-ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.qform-consent .sco-text a:hover { color: var(--navy); }
.qform-consent.checked .sco-box { background: var(--accent); border-color: var(--accent); }
.qform-consent.checked .sco-box svg { opacity: 1; transform: scale(1); }
.qform-consent input:focus-visible + .sco-box { outline: 2px solid var(--accent); outline-offset: 2px; }
.qform-consent-err { margin-top: -4px; }

/* two stacked optional consent checkboxes + acknowledgment line */
.qform-consent-group { display: flex; flex-direction: column; gap: 8px; }
.qform-consent-group .qform-consent { margin-top: 0; }
.qform-ack {
  margin: 4px 0 0;
  font-size: 11px;
  line-height: 1.5;
  color: var(--ink-3);
}
.qform-ack a {
  color: var(--accent-ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.qform-ack a:hover { color: var(--navy); }

.qform-links {
  display: flex; align-items: center; gap: 12px;
  margin-top: 2px;
}
.qform-links a {
  font-size: 12px; font-weight: 600;
  color: var(--accent-ink);
  text-decoration: underline; text-underline-offset: 2px;
}
.qform-links a:hover { color: var(--navy); }
.qform-links .sep { color: var(--line-2); font-size: 12px; }

/* success state */
.qform-success { text-align: center; padding: 18px 8px 12px; }
.qform-success .qs-badge {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  background: linear-gradient(180deg, #25A36A 0%, #178050 100%);
  box-shadow: 0 14px 30px -10px rgba(23,128,80,0.5);
  animation: ps-pop .4s cubic-bezier(.2,.8,.3,1.2);
}
.qform-success h3 { font-size: 22px; letter-spacing: -0.02em; color: var(--navy); }
.qform-success p {
  font-size: 14.5px; line-height: 1.6; color: var(--ink-2);
  max-width: 360px; margin: 8px auto 0;
}
.qform-success .qs-again {
  margin-top: 20px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  font: inherit; font-size: 13.5px; font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}
.qform-success .qs-again:hover { border-color: var(--accent); color: var(--accent-ink); }

/* ---- COI request form (inside the modal) ---- */
.coi-embed .coi-form { display: grid; gap: 14px; }
.coi-form .form-group-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  padding-bottom: 6px;
  margin-top: 4px;
  border-bottom: 1px solid var(--line);
}
.coi-form .form-group-label:first-child { margin-top: 0; }
.coi-form .fgl-optional { color: var(--ink-3); opacity: 0.8; text-transform: none; letter-spacing: 0; }
.coi-row-3 { display: grid; grid-template-columns: 1.4fr 0.8fr 0.9fr; gap: 12px; }
@media (max-width: 520px) { .coi-row-3 { grid-template-columns: 1fr 1fr; } }
.coi-actions {
  display: flex; gap: 12px; align-items: center;
  margin-top: 4px;
}
.coi-actions .btn-ghost { flex: 0 0 auto; }
.coi-actions .checkout-pay { flex: 1; margin: 0; }
.coi-form .qs-badge {
  background: linear-gradient(180deg, #25A36A 0%, #178050 100%);
  box-shadow: 0 14px 30px -10px rgba(23,128,80,0.5);
}

/* ---- Consent gate for embedded (iframe) forms ---- */
.consent-gate .sms-consent { margin-top: 0; margin-bottom: 14px; }
.embed-gate { position: relative; border-radius: 10px; }
.embed-gate.locked { overflow: hidden; }
.embed-gate.locked > :not(.embed-gate-cover) {
  pointer-events: none;
  filter: blur(2px) saturate(0.85);
  opacity: 0.5;
  user-select: none;
}
.embed-gate-cover {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: linear-gradient(180deg, rgba(248,250,252,0.4), rgba(248,250,252,0.75));
  border: 1px dashed var(--line-2);
  border-radius: 10px;
}
.egc-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: -0.005em;
  text-align: left;
  box-shadow: 0 14px 30px -12px rgba(10,37,64,0.5);
}
.egc-pill svg { color: var(--accent); flex: 0 0 auto; }

/* ---- Footer business name ---- */
.footer-bizname {
  font-weight: 600;
  color: #fff;
  font-size: 13.5px;
  line-height: 1.4;
  margin-bottom: 2px;
}

/* ---- Legal pages (Privacy / Terms / SMS Consent) ---- */
.legal-page {
  padding-block: clamp(20px, 3vw, 36px) clamp(48px, 6vw, 84px);
  background: #F8FAFC;
}
.legal-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 40px);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px 7px 11px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: color .15s ease, border-color .15s ease, transform .15s ease;
}
.legal-back:hover { color: var(--accent-ink); border-color: color-mix(in srgb, var(--accent) 40%, #fff 60%); transform: translateX(-2px); }

/* two-column layout */
.legal-grid {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
  align-items: start;
}

/* ---- LEFT: sticky navy navigation ---- */
.legal-nav-inner {
  position: sticky;
  top: 76px;
  background: var(--navy);
  border-radius: 18px;
  padding: 20px 16px 16px;
  box-shadow: 0 20px 44px -26px rgba(10,37,64,0.55), 0 2px 6px rgba(10,37,64,0.08);
}
.legal-nav-badge {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  padding: 0 8px 14px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.legal-nav nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1px; }
.legal-nav-link {
  display: grid;
  grid-template-columns: 22px 18px 1fr;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 13.5px;
  line-height: 1.3;
  color: rgba(255,255,255,0.62);
  transition: color .15s ease, background .15s ease;
}
.legal-nav-link .lnl-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  color: rgba(255,255,255,0.4);
  transition: color .15s ease;
}
.legal-nav-link .lnl-ico { display: grid; place-items: center; color: rgba(255,255,255,0.5); transition: color .15s ease; }
.legal-nav-link .lnl-txt { font-weight: 500; }
.legal-nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.legal-nav-link:hover .lnl-ico { color: rgba(255,255,255,0.85); }
.legal-nav-link.active {
  color: #fff;
  background: color-mix(in srgb, var(--accent) 22%, var(--navy) 78%);
  box-shadow: inset 2px 0 0 var(--accent);
}
.legal-nav-link.active .lnl-num { color: var(--accent); }
.legal-nav-link.active .lnl-ico { color: var(--accent); }

.legal-nav-help {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 14px;
  padding: 14px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
}
.legal-nav-help .lnh-ico {
  flex: 0 0 auto;
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(0,174,239,0.16);
  color: var(--accent);
}
.legal-nav-help .lnh-body { display: flex; flex-direction: column; gap: 1px; }
.legal-nav-help .lnh-title { font-size: 12.5px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.legal-nav-help .lnh-body a { font-size: 12.5px; color: rgba(255,255,255,0.7); transition: color .15s ease; }
.legal-nav-help .lnh-body a:hover { color: var(--accent); }

/* ---- RIGHT: content card ---- */
.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(26px, 3.4vw, 48px);
  box-shadow: 0 1px 2px rgba(10,37,64,0.04), 0 24px 50px -34px rgba(10,37,64,0.20);
}
.legal-doc-head {
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.legal-doc-head .eyebrow { margin-bottom: 12px; }
.legal-doc-head h1 {
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: var(--navy);
}
.legal-eff {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 11px;
  background: #F4F6F9;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-3);
}
.legal-intro {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
}

.legal-section { scroll-margin-top: 84px; }
.legal-section + .legal-section {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line-2);
}
.legal-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.legal-section-head .ls-ico {
  flex: 0 0 auto;
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-ink);
}
.legal-section-head h2 {
  font-size: clamp(19px, 2.1vw, 24px);
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.2;
}
.legal-section-head h2 .ls-num {
  font-family: var(--font-mono);
  font-size: 0.7em;
  font-weight: 600;
  color: var(--accent);
  margin-right: 8px;
}
.legal-section-body { padding-left: 50px; }
@media (max-width: 560px) { .legal-section-body { padding-left: 0; } }
.legal-section-body p {
  font-size: 15.5px;
  line-height: 1.66;
  color: var(--ink-2);
  margin-bottom: 12px;
}
.legal-section-body > *:last-child { margin-bottom: 0; }
.legal-list {
  margin: 0 0 12px;
  padding-left: 2px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.58;
  color: var(--ink-2);
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 3px; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* required-clause callout */
.legal-callout {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 14px 0;
  padding: 16px 18px;
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, #fff 72%);
  border-radius: 13px;
}
.legal-callout svg { flex: 0 0 auto; color: var(--accent-ink); margin-top: 2px; }
.legal-callout p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.58;
  color: var(--navy);
  font-weight: 500;
}

/* STOP / HELP keyword rows */
.legal-keyword {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 10px 0;
  padding: 13px 15px;
  background: #F7F8FA;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.lk-tag {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--navy);
  padding: 5px 11px;
  border-radius: 7px;
  margin-top: 1px;
}
.legal-keyword p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }

/* business info card */
.legal-bizcard {
  margin-top: 6px;
  padding: 22px 24px;
  background: var(--navy);
  border-radius: 14px;
  color: #fff;
}
.legal-bizcard h3 {
  font-size: 12.5px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.legal-bizcard dl { margin: 0; display: grid; gap: 11px; }
.lb-row { display: grid; grid-template-columns: 150px 1fr; gap: 12px; align-items: baseline; }
@media (max-width: 520px) { .lb-row { grid-template-columns: 1fr; gap: 2px; } }
.lb-row dt {
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.lb-row dd { margin: 0; font-size: 14.5px; color: #fff; font-weight: 500; }
.lb-row dd a { color: var(--accent); text-decoration: none; }
.lb-row dd a:hover { text-decoration: underline; }

/* mobile: nav becomes a horizontal pill rail above the content */
@media (max-width: 860px) {
  .legal-grid { grid-template-columns: 1fr; gap: 14px; }
  .legal-nav-inner { position: static; padding: 14px; }
  .legal-nav nav ul { flex-direction: row; overflow-x: auto; gap: 6px; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
  .legal-nav-link { grid-template-columns: auto auto; gap: 7px; white-space: nowrap; flex: 0 0 auto; padding: 8px 12px; }
  .legal-nav-link .lnl-txt { display: none; }
  .legal-nav-link .lnl-num { color: rgba(255,255,255,0.85); }
  .legal-nav-help { display: none; }
}

/* ============================================================
   Floating WhatsApp button (Home / Services / Payments / Contact / About)
   ============================================================ */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 26px -6px rgba(37, 211, 102, 0.55), 0 4px 10px rgba(10, 37, 64, 0.18);
  overflow: hidden;
  transition: width .28s cubic-bezier(.2,.7,.3,1), background .15s ease, box-shadow .15s ease, transform .15s ease;
}
.wa-fab-ic {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
}
.wa-fab-tip {
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding-right: 20px;
  opacity: 0;
  transition: opacity .2s ease .04s;
}
.wa-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (hover: hover) {
  .wa-fab:hover {
    width: 215px;
    background: #1FBE5B;
    transform: translateY(-1px);
  }
  .wa-fab:hover .wa-fab-tip { opacity: 1; }
}
.wa-fab:focus-visible {
  outline: 3px solid color-mix(in srgb, #25D366 55%, #fff 45%);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab::after { animation: none; }
}
@media (max-width: 600px) {
  .wa-fab { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .wa-fab-ic { flex-basis: 54px; width: 54px; height: 54px; }
  .wa-fab:hover { width: 54px; }
  .wa-fab:hover .wa-fab-tip { opacity: 0; }
}
