  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --black:      #000000;
    --dark-green: #0B1411;
    --green:      #83C549;
    --teal:       #008575;
    --white:      #FFFFFF;
    --text-sec:   rgba(255,255,255,0.55);
    --grad: linear-gradient(160deg, #83C549 0%, #4A8F30 45%, #008575 100%);
    --maxw:   1280px;
    --gutter: 4rem;
  }

  html { scroll-behavior: smooth; scrollbar-gutter: stable; }
  html.demo-open { overflow: hidden; }

  body {
    font-family: 'Archivo', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 4rem;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(131,197,73,0.12);
  }
  .nav-logo {
    display: flex; align-items: center;
  }
  .nav-logo img { height: 34px; width: auto; display: block; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    font-size: 0.85rem; font-weight: 400; color: var(--text-sec);
    text-decoration: none; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-cta {
    font-size: 0.85rem; font-weight: 500; color: var(--black);
    background: var(--green); border: none; border-radius: 6px;
    padding: 0.55rem 1.25rem; cursor: pointer; text-decoration: none;
    transition: opacity 0.2s;
  }
  .nav-cta:hover { opacity: 0.85; }

  /* ── HERO ── */
  .hero {
    position: relative; min-height: 90vh;
    display: flex; align-items: center;
    padding: 8rem 4rem 5rem;
    overflow: hidden;
    background: radial-gradient(ellipse 70% 60% at 80% 50%, #0B1411 0%, #000 60%);
  }

  /* dot grid texture */
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(131,197,73,0.18) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 80% 70% at 75% 50%, black 0%, transparent 70%);
    pointer-events: none;
  }

  /* hero product illustration */
  .hero-visual {
    position: absolute;
    right: max(2rem, calc((100% - var(--maxw)) / 2)); top: 50%;
    transform: translateY(-50%);
    width: min(620px, 48vw); height: auto;
    z-index: 1;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
  }

  .hero-content {
    position: relative; z-index: 2;
    max-width: 640px;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
    color: var(--green);
    margin-bottom: 1.75rem;
  }
  .hero-eyebrow::before {
    content: '';
    display: block; width: 20px; height: 1px;
    background: var(--green);
  }
  .hero-title {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 300; line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
  }
  .hero-title strong { font-weight: 700; color: var(--green); }
  .hero-title em { font-style: normal; color: var(--text-sec); }

  .hero-sub {
    font-size: 1.05rem; font-weight: 300; line-height: 1.7;
    color: var(--text-sec); max-width: 500px;
    margin-bottom: 2.5rem;
  }

  .hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    font-size: 0.9rem; font-weight: 600; color: var(--black);
    background: var(--green); border: none; border-radius: 8px;
    padding: 0.85rem 1.75rem; cursor: pointer; text-decoration: none;
    transition: opacity 0.2s;
  }
  .btn-primary:hover { opacity: 0.85; }
  .btn-ghost {
    font-size: 0.9rem; font-weight: 400; color: var(--white);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px; padding: 0.85rem 1.75rem;
    cursor: pointer; text-decoration: none; transition: border-color 0.2s;
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.5); }

  /* certified badge */
  .hero-badge {
    display: flex; align-items: center; gap: 0.6rem;
    margin-top: 3rem; font-size: 0.75rem; color: var(--text-sec);
  }
  .badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green); flex-shrink: 0;
  }

  /* ── METRICS BAND ── */
  .metrics {
    background: var(--dark-green);
    border-top: 1px solid rgba(131,197,73,0.15);
    border-bottom: 1px solid rgba(131,197,73,0.15);
    padding: 3.5rem 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    position: relative;
  }
  .metrics::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(131,197,73,0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
  }
  .metric {
    padding: 1.5rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.07);
    position: relative; z-index: 1;
  }
  .metric:last-child { border-right: none; }
  /* flush the outer edges so the band aligns with the rest of the site */
  .metric:first-child { padding-left: 0; }
  .metric:last-child  { padding-right: 0; }
  .metric-icon {
    width: 38px; height: 38px; border-radius: 9px;
    background: rgba(131,197,73,0.12);
    border: 1px solid rgba(131,197,73,0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--green); margin-bottom: 1.1rem;
  }
  .metric-icon svg { width: 18px; height: 18px; fill: currentColor; }
  .metric-value {
    font-size: 3rem; font-weight: 300; line-height: 1;
    background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 0.4rem;
  }
  .metric-label { font-size: 0.8rem; font-weight: 500; color: var(--white); margin-bottom: 0.3rem; }
  .metric-desc { font-size: 0.75rem; color: var(--text-sec); line-height: 1.5; }

  /* ── CUSTOMER LOGO MARQUEE ── */
  .logo-band {
    background: var(--black);
    padding-top: 3.5rem; padding-bottom: 3.5rem;
    overflow: hidden;
  }
  .logo-band-title {
    text-align: center;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--text-sec);
    margin-bottom: 1.25rem;
    padding: 0 1.5rem;
  }
  .logo-marquee {
    overflow: hidden;
    padding: 1.5rem 0;   /* headroom so hovered logos + glow don't clip */
    -webkit-mask-image: linear-gradient(90deg, transparent, black 24%, black 76%, transparent);
            mask-image: linear-gradient(90deg, transparent, black 24%, black 76%, transparent);
  }
  .logo-track {
    display: flex; width: max-content;
    will-change: transform;   /* JS drives the scroll so it can ease between speeds */
  }
  .logo-group {
    display: flex; align-items: center; gap: 5rem;
    padding-right: 5rem;
    flex-shrink: 0;
  }
  .logo-group img {
    height: 48px; width: auto; display: block;
    opacity: 0.5;
    transition: opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
  }
  /* dock effect — target gets 100% of the effect… */
  .logo-group img:hover {
    opacity: 1;                                          /* +0.5 over base   */
    transform: scale(1.18);                              /* +18% growth      */
    filter: drop-shadow(0 0 16px rgba(255,255,255,0.4)); /* full glow        */
  }
  /* …immediate neighbours get exactly half of everything */
  .logo-group img:hover + img,
  .logo-group img:has(+ img:hover) {
    opacity: 0.75;                                       /* +0.25 over base  */
    transform: scale(1.09);                              /* +9% growth       */
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.2));  /* half glow        */
  }
  .logo-group img.is-tall { height: 76px; }

  /* ── SECTION BASE ── */
  section { padding: 7rem 4rem; }
  .section-eyebrow {
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
    color: var(--green);
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.5rem;
  }
  .section-eyebrow::before {
    content: ''; display: block; width: 16px; height: 1px; background: var(--green);
  }
  .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300; line-height: 1.2;
    letter-spacing: -0.02em; margin-bottom: 1.25rem;
  }
  .section-title strong { font-weight: 700; }
  .section-sub {
    font-size: 1rem; font-weight: 300; line-height: 1.8;
    color: var(--text-sec); max-width: 540px;
  }

  /* ── PROBLEM SECTION ── */
  .problems {
    background: var(--black);
  }
  .problems-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px; margin-top: 4rem;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px; overflow: hidden;
  }
  .problem-card {
    padding: 2.5rem;
    background: var(--dark-green);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: background 0.3s;
  }
  .problem-card:hover { background: #0f1e18; }
  .problem-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  .problem-number {
    font-size: 0.68rem; font-weight: 500; color: var(--green);
    letter-spacing: 0.1em; margin-bottom: 1rem;
  }
  .problem-title {
    font-size: 1.05rem; font-weight: 600; margin-bottom: 0.75rem;
  }
  .problem-desc { font-size: 0.875rem; color: var(--text-sec); line-height: 1.7; }

  /* ── HOW IT WORKS ── */
  .how {
    background: var(--dark-green);
    position: relative; overflow: hidden;
  }
  .how::after {
    content: '';
    position: absolute; right: -10rem; top: -10rem;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(131,197,73,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .how-layout {
    display: grid; grid-template-columns: 1fr 1.15fr;
    gap: 4rem; align-items: stretch; margin-top: 4rem;
  }
  .how-steps {
    display: flex; flex-direction: column;
    justify-content: space-between; gap: 0.5rem;
  }
  .how-step {
    display: flex; gap: 1.25rem; cursor: pointer;
    align-items: center;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    position: relative;
    transition: background 0.25s;
  }
  .how-step:hover { background: rgba(255,255,255,0.02); }
  .how-step.active { background: rgba(131,197,73,0.06); }
  .step-icon {
    width: 46px; height: 46px; flex-shrink: 0;
    border-radius: 11px;
    background: rgba(131,197,73,0.08);
    border: 1px solid rgba(131,197,73,0.16);
    display: flex; align-items: center; justify-content: center;
    color: rgba(131,197,73,0.55);
    transition: background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
  }
  .step-icon svg { width: 21px; height: 21px; fill: currentColor; }
  .how-step.active .step-icon {
    background: var(--grad); border-color: transparent; color: var(--black);
    box-shadow: 0 6px 18px rgba(131,197,73,0.22);
  }
  .step-title {
    font-size: 0.95rem; font-weight: 600;
    color: var(--text-sec); transition: color 0.25s;
  }
  .how-step:hover .step-title { color: var(--white); }
  .how-step.active .step-title { color: var(--white); }
  .step-desc {
    font-size: 0.82rem; line-height: 1.5; margin-top: 0.35rem;
    color: rgba(255,255,255,0.38);
    transition: color 0.25s;
  }
  .how-step:hover .step-desc,
  .how-step.active .step-desc { color: var(--text-sec); }

  /* product screenshot mockup (browser frame, step-synced) */
  .shot {
    align-self: stretch;
    display: flex; flex-direction: column;
    border: 1px solid rgba(131,197,73,0.2);
    border-radius: 14px; overflow: hidden;
    background: #0a0a0a;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  }
  .shot-bar, .shot-caption { flex: 0 0 auto; }
  .shot-bar {
    display: flex; align-items: center; gap: 0.45rem;
    padding: 0.7rem 0.9rem;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .shot-bar span {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.18);
  }
  .shot-bar span:nth-child(1) { background: #ff5f57; }
  .shot-bar span:nth-child(2) { background: #febc2e; }
  .shot-bar span:nth-child(3) { background: #28c840; }
  .shot-stage {
    position: relative; width: 100%;
    flex: 1 1 auto; min-height: 300px;
    background: #0a0a0a; cursor: zoom-in;
  }
  .shot-expand {
    position: absolute; top: 0.7rem; right: 0.7rem; z-index: 3;
    width: 32px; height: 32px; border-radius: 8px;
    background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); cursor: zoom-in;
    opacity: 0; transform: translateY(-3px);
    transition: opacity 0.25s, transform 0.25s, border-color 0.2s;
    pointer-events: none;
  }
  .shot-stage:hover .shot-expand { opacity: 1; transform: translateY(0); }
  .shot-expand:hover { border-color: rgba(131,197,73,0.5); }
  .shot-expand svg { width: 15px; height: 15px; }
  .shot-stage img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: top left;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
  }
  .shot-stage img.active { opacity: 1; }
  .shot-caption {
    display: flex; align-items: center; gap: 0.9rem;
    padding: 0.85rem 1.1rem;
    font-size: 0.8rem; color: var(--text-sec);
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .shot-caption-text { flex: 1; }
  /* rotation / progress dots */
  .shot-dots { display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; }
  .shot-dot {
    position: relative; overflow: hidden;
    width: 8px; height: 8px; border-radius: 5px; padding: 0;
    background: rgba(255,255,255,0.18); border: none; cursor: pointer;
    transition: width 0.35s ease, background 0.35s ease;
  }
  .shot-dot.active { width: 26px; background: rgba(131,197,73,0.22); }
  .shot-dot .dot-fill {
    position: absolute; inset: 0; border-radius: inherit;
    background: var(--green);
    transform: scaleX(0); transform-origin: left center;
  }
  .shot-dot.active .dot-fill { transform: scaleX(1); }
  @keyframes dotfill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

  /* lightbox */
  .lightbox {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,0.92);
    display: flex; align-items: center; justify-content: center;
    padding: 3rem; cursor: zoom-out;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .lightbox.open { opacity: 1; visibility: visible; }
  .lightbox img {
    max-width: 95vw; max-height: 90vh;
    border-radius: 10px; border: 1px solid rgba(131,197,73,0.25);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    cursor: default;
  }
  .lightbox-close {
    position: absolute; top: 1.5rem; right: 1.75rem;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
    color: var(--white); font-size: 1.3rem; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.2s, border-color 0.2s;
  }
  .lightbox-close:hover { background: rgba(255,255,255,0.15); border-color: var(--green); }

  /* ── CAPABILITIES ── */
  .capabilities { background: var(--black); }
  .cap-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 4rem;
  }
  .cap-card {
    position: relative; cursor: pointer;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    background: var(--dark-green);
    transition: border-color 0.25s, transform 0.25s, background 0.25s;
  }
  .cap-card:hover, .cap-card.open {
    border-color: rgba(131,197,73,0.3);
    transform: translateY(-3px);
  }
  .cap-card::after {
    content: '+';
    position: absolute; top: 1.6rem; right: 1.6rem;
    font-size: 1.25rem; font-weight: 300; line-height: 1;
    color: var(--green); opacity: 0.7;
    transition: transform 0.3s, opacity 0.2s;
  }
  .cap-card:hover::after, .cap-card.open::after { transform: rotate(45deg); opacity: 1; }
  .cap-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--grad); color: var(--black);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
  }
  .cap-icon svg { width: 19px; height: 19px; fill: currentColor; }
  .cap-title { font-size: 0.95rem; font-weight: 600; }
  .cap-desc {
    font-size: 0.83rem; color: var(--text-sec); line-height: 1.7;
    max-height: 0; opacity: 0; overflow: hidden; margin-top: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.4s ease;
  }
  .cap-card:hover .cap-desc, .cap-card.open .cap-desc {
    max-height: 240px; opacity: 1; margin-top: 0.7rem;
  }

  /* ── QUOTE ── */
  .quote-section {
    background: var(--dark-green);
    position: relative; overflow: hidden;
    padding: 6rem 4rem;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
  }
  .quote-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(131,197,73,0.1) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
  }
  .quote-inner { position: relative; z-index: 1; max-width: 780px; }
  .quote-mark {
    font-size: 5rem; line-height: 0.6;
    background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block; margin-bottom: 1.5rem; font-weight: 700;
  }
  .quote-text {
    font-size: clamp(1.25rem, 2.5vw, 1.7rem);
    font-weight: 300; line-height: 1.5; margin-bottom: 2rem;
    font-style: italic;
  }
  .quote-person {
    display: flex; align-items: center; justify-content: center;
    gap: 0.9rem; margin-top: 1.75rem;
  }
  .quote-photo {
    width: 88px; height: 88px; border-radius: 50%; object-fit: contain;
    object-position: center bottom;
    background: #000000; flex-shrink: 0;
  }
  .quote-meta { text-align: left; }
  .quote-attr { font-size: 0.85rem; font-weight: 500; color: var(--green); }
  .quote-role { font-size: 0.78rem; color: var(--text-sec); margin-top: 0.25rem; }
  .quote-link {
    color: var(--text-sec); text-decoration: none;
    border-bottom: 1px solid rgba(131,197,73,0.4); transition: color 0.2s, border-color 0.2s;
  }
  .quote-link:hover { color: var(--green); border-color: var(--green); }

  /* ── SEGMENTS ── */
  .segments { background: var(--black); }
  .seg-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; margin-top: 4rem;
    border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; overflow: hidden;
  }
  .seg-card {
    padding: 2.5rem 2rem;
    background: var(--dark-green);
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: background 0.25s;
  }
  .seg-card:last-child { border-right: none; }
  .seg-card:hover { background: #0f1e18; }
  .seg-tag {
    display: inline-block;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em;
    color: var(--green);
    border: 1px solid rgba(131,197,73,0.3);
    border-radius: 4px; padding: 0.2rem 0.55rem;
    margin-bottom: 1.25rem;
  }
  .seg-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
  .seg-desc { font-size: 0.83rem; color: var(--text-sec); line-height: 1.7; }
  .seg-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    margin-top: 1.25rem;
    font-size: 0.82rem; font-weight: 600; color: var(--green);
    text-decoration: none;
  }
  .seg-link span { transition: transform 0.2s; }
  .seg-link:hover span { transform: translateX(3px); }

  /* ── FAQ ── */
  .faq { background: var(--dark-green); }
  .faq-list {
    margin-top: 3.5rem; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
    align-items: start;
  }
  .faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .faq-question {
    width: 100%; background: none; border: none;
    color: var(--white); text-align: left;
    padding: 1.5rem 0;
    font-family: 'Archivo', sans-serif; font-size: 0.95rem; font-weight: 500;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    gap: 1rem;
    transition: color 0.2s;
  }
  .faq-question:hover { color: var(--green); }
  .faq-chevron {
    width: 20px; height: 20px; flex-shrink: 0;
    border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s, border-color 0.2s;
    color: var(--text-sec);
  }
  .faq-item.open .faq-chevron {
    transform: rotate(180deg); border-color: var(--green); color: var(--green);
  }
  .faq-answer {
    max-height: 0; overflow: hidden;
    font-size: 0.875rem; color: var(--text-sec); line-height: 1.75;
    transition: max-height 0.35s ease, padding 0.35s;
    padding: 0;
  }
  .faq-item.open .faq-answer {
    max-height: 300px; padding-bottom: 1.5rem;
  }

  /* ── CTA ── */
  .cta-section {
    background: var(--black);
    padding: 8rem 4rem;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(131,197,73,0.07) 0%, transparent 65%);
    pointer-events: none;
  }
  .cta-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
  .cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300; line-height: 1.2; margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
  }
  .cta-title strong { font-weight: 700; color: var(--green); }
  .cta-sub { font-size: 1rem; color: var(--text-sec); margin-bottom: 2.5rem; line-height: 1.7; }
  .cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

  /* ── DEMO MODAL (HubSpot embed in an overlay) ── */
  /* The form renders inside a HubSpot iframe and can't be styled by our CSS;
     the overlay gives it its own light surface so it doesn't clash with the site. */
  .demo-modal {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    padding: 2.5rem 1.5rem;
    overflow-y: auto;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .demo-modal.open { opacity: 1; visibility: visible; }
  .demo-modal-panel {
    position: relative;
    width: 100%; max-width: 820px; margin: auto;
    background: #f2f2f2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.55);
    min-height: 200px;
    zoom: 0.85;              /* shrink the form a touch so it doesn't fill the screen */
  }
  .demo-modal-panel .hs-form-frame { width: 100%; }
  .demo-modal-close {
    position: fixed; top: 1.25rem; right: 1.5rem; z-index: 1;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
    color: var(--white); font-size: 1.4rem; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.2s, border-color 0.2s;
  }
  .demo-modal-close:hover { background: rgba(255,255,255,0.2); border-color: var(--green); }

  /* ── FOOTER ── */
  footer {
    background: var(--dark-green);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 3rem 4rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1.5rem;
  }
  .footer-brand { display: flex; align-items: center; }
  .footer-brand img { height: 32px; width: auto; display: block; }
  .footer-offices {
    display: flex; flex-wrap: wrap; gap: 1.25rem;
    font-size: 0.75rem; color: var(--text-sec);
  }
  .footer-legal { font-size: 0.72rem; color: var(--text-sec); }

  /* ── MAX-WIDTH: keep full-bleed backgrounds, center the content ── */
  nav, .hero, .metrics, section,
  .quote-section, .cta-section, footer {
    padding-left:  max(var(--gutter), calc((100% - var(--maxw)) / 2));
    padding-right: max(var(--gutter), calc((100% - var(--maxw)) / 2));
  }

  /* responsive */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    nav, section, .hero, .metrics,
    .quote-section, .cta-section, footer {
      padding-left: 1.5rem; padding-right: 1.5rem;
    }
    .metrics { grid-template-columns: 1fr 1fr; column-gap: 2rem; }
    .metric { padding-left: 0; padding-right: 0; }
    .metric:nth-child(even) { border-right: none; }
    .problems-grid, .cap-grid, .seg-grid { grid-template-columns: 1fr; }
    .problem-card:nth-child(odd) { border-right: none; }
    .how-layout { grid-template-columns: 1fr; gap: 3rem; }
    .shot-expand { opacity: 1; transform: none; }
    .faq-list { grid-template-columns: 1fr; column-gap: 0; }
    .hero {
      flex-direction: column; justify-content: center;
      padding-top: 7rem;
    }
    .hero-visual {
      position: static; transform: none;
      width: 100%; max-width: 460px;
      margin: 2.5rem auto 0; animation: none;
    }
    footer { flex-direction: column; align-items: flex-start; }
  }

  /* phones */
  @media (max-width: 600px) {
    section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
    .hero { padding-top: 6.5rem; padding-bottom: 3.5rem; min-height: auto; }
    .metrics { grid-template-columns: 1fr; padding-top: 2.5rem; padding-bottom: 2.5rem; }
    .metric { padding-left: 0; padding-right: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .metric:last-child { border-bottom: none; }
    .problem-card, .seg-card, .cap-card { padding: 1.75rem; }
    .hero-actions .btn-primary, .hero-actions .btn-ghost { flex: 1 1 auto; text-align: center; }
    .quote-section, .cta-section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
    .quote-mark { font-size: 3.5rem; }
    .logo-band { padding-top: 2.5rem; padding-bottom: 2.5rem; }
    .logo-group { gap: 3rem; padding-right: 3rem; }
    .logo-group img { height: 38px; }
    .logo-group img.is-tall { height: 58px; }
    .footer-offices { gap: 0.75rem 1.25rem; }
    .demo-modal { padding: 1.5rem 1rem; align-items: flex-start; }
    .demo-modal-panel { zoom: 1; }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-visual { animation: none; }
    .logo-track { animation: none; }
  }
