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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
  }

  /* ── NAV ── */

  .btn {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.4px;
    padding: 11px 26px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
  }
  .btn-accent { background: var(--accent); color: var(--white); }
  .btn-accent:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(46,196,168,0.35); }
  .btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
  .btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
  .btn-outline-navy { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
  .btn-outline-navy:hover { background: var(--navy); color: var(--white); }
  .btn-white { background: var(--white); color: var(--navy); }
  .btn-white:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

  /* breadcrumb */
  .breadcrumb-strip {
    background: var(--navy-deep);
    padding: 16px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .breadcrumb {
    font-family: var(--font-head);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
  }
  .breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--white); }
  .breadcrumb .sep { margin: 0 12px; opacity: 0.4; color: rgba(255,255,255,0.5); }
  .breadcrumb .current { color: var(--accent); }

  /* ── HERO (Asymmetric two-column) ── */
  .hero {
    background: linear-gradient(135deg, #0e2240 0%, #1c3a5f 55%, #254d7a 100%);
    color: var(--white);
    padding: 80px 40px 90px;
    position: relative;
    overflow: hidden;
  }
  #hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    opacity: 0.55;
  }
  .hero-inner {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
  }
  .hero-copy { }
  .hero-eyebrow {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 7px 18px;
    border-radius: 20px;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-family: var(--font-head);
    font-size: clamp(34px, 4.6vw, 54px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.5px;
    margin-bottom: 22px;
    text-wrap: balance;
  }
  .hero h1 em { color: var(--accent); font-style: normal; }
  .hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 560px;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
  .hero-ctas .btn { font-size: 15px; padding: 14px 28px; }

  /* Inline trust ribbon under CTA */
  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
  }
  .hero-trust-item .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(46,196,168,0.2);
  }

  /* Right side — "Live Service Drive" panel */
  .hero-panel {
    position: relative;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 28px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  }
  .hero-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 18px;
  }
  .hp-title {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
  }
  .hp-live {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent);
    text-transform: uppercase;
  }
  .hp-live::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(46,196,168,0.6);
    animation: pulse 1.6s infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(46,196,168,0.6); }
    70% { box-shadow: 0 0 0 12px rgba(46,196,168,0); }
    100% { box-shadow: 0 0 0 0 rgba(46,196,168,0); }
  }

  /* Bay grid inside panel */
  .bay-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    margin-bottom: 20px;
  }
  .bay {
    aspect-ratio: 1;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.3px;
    transition: background 0.3s;
  }
  .bay.booked {
    background: rgba(46,196,168,0.22);
    border-color: rgba(46,196,168,0.45);
    color: var(--accent);
  }
  .bay.booked::after {
    content: '';
    position: absolute;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    bottom: 4px;
    right: 4px;
  }
  .bay.missed {
    background: rgba(255,255,255,0.04);
    border-style: dashed;
    color: rgba(255,255,255,0.35);
  }

  /* Call queue inside panel */
  .call-list { display: flex; flex-direction: column; gap: 8px; }
  .call-row {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    font-family: var(--font-head);
    font-size: 12px;
  }
  .call-row .who { color: rgba(255,255,255,0.9); font-weight: 600; }
  .call-row .what { color: rgba(255,255,255,0.55); font-weight: 400; font-family: var(--font-body); font-size: 11.5px; margin-top: 1px; display: block; }
  .call-row .status {
    font-size: 9.5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
  }
  .call-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--navy-mid), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .call-icon svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  .panel-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 18px;
  }
  .panel-stat {
    background: rgba(14,34,64,0.5);
    padding: 14px 16px;
    text-align: left;
  }
  .panel-stat-num {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1;
  }
  .panel-stat-num span { color: var(--accent); }
  .panel-stat-label {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-top: 6px;
  }

  /* ── STATS STRIP (light card style, with bar viz) ── */
  .stats-strip {
    background: var(--white);
    padding: 40px 40px 0;
    position: relative;
    z-index: 2;
  }
  .stats-card {
    max-width: 1100px;
    margin: -60px auto 0;
    background: var(--white);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(28,58,95,0.18);
    border: 1px solid var(--gray-light);
    position: relative;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .stat-cell {
    padding: 28px 28px;
    border-right: 1px solid var(--gray-light);
  }
  .stat-cell:last-child { border-right: none; }
  .stat-cell .stat-num {
    font-family: var(--font-head);
    font-size: 38px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -1.2px;
    margin-bottom: 6px;
    display: flex;
    align-items: baseline;
  }
  .stat-cell .stat-num .pct { color: var(--accent); font-size: 0.6em; margin-left: 2px; font-weight: 700; }
  .stat-cell .stat-num .plus { color: var(--accent); margin-left: 2px; }
  .stat-cell .stat-label {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    line-height: 1.4;
    margin-bottom: 14px;
    max-width: 220px;
  }
  .stat-bar {
    height: 6px;
    background: var(--gray-light);
    border-radius: 4px;
    overflow: hidden;
  }
  .stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--navy-light) 100%);
    border-radius: 4px;
  }
  .stats-foot {
    max-width: 1100px;
    margin: 18px auto 0;
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
  }
  .stats-foot strong { color: var(--navy); font-style: normal; font-weight: 700; }

  /* ── SECTION SHARED ── */
  section { padding: 90px 40px; }
  .section-inner { max-width: 1140px; margin: 0 auto; }
  .section-label {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
  }
  h2 {
    font-family: var(--font-head);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--navy);
    text-wrap: balance;
  }
  h3 {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
  }
  p { color: var(--text-muted); line-height: 1.75; }
  .section-head.centered { text-align: center; max-width: 760px; margin: 0 auto; }
  .section-head p { margin-top: 14px; font-size: 16px; }

  /* ── FREEING YOUR STAFF (service bay visualization) ── */
  .freeing { background: var(--off-white); padding-top: 60px; }
  .freeing-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
    margin-top: 12px;
  }
  .freeing-copy h2 { margin-bottom: 18px; }
  .freeing-copy p { font-size: 16px; margin-bottom: 16px; }
  .freeing-copy p strong { color: var(--navy); }
  .freeing-callout {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--accent);
    box-shadow: 0 2px 12px rgba(28,58,95,0.06);
    margin-top: 16px;
  }
  .freeing-callout .icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .freeing-callout .icon svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2; }
  .freeing-callout span {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--navy);
    font-size: 14px;
  }

  /* Drive visual */
  .drive-viz {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--gray-light);
    box-shadow: 0 6px 24px rgba(28,58,95,0.07);
    position: relative;
  }
  .drive-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 22px;
  }
  .drive-title {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .drive-time {
    font-family: var(--font-head);
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-muted);
  }
  .drive-legend {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
    flex-wrap: wrap;
  }
  .legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.2px;
  }
  .legend-swatch {
    width: 14px; height: 14px;
    border-radius: 3px;
    border: 1px solid;
  }
  .legend-swatch.booked { background: var(--accent-mist); border-color: var(--accent); }
  .legend-swatch.missed { background: var(--gray-light); border: 1px dashed var(--gray-mid); }
  .legend-swatch.you { background: var(--navy); border-color: var(--navy); }

  .drive-bays {
    display: grid;
    grid-template-columns: 80px repeat(8, 1fr);
    gap: 6px;
    margin-bottom: 18px;
  }
  .lane-label {
    font-family: var(--font-head);
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    padding-right: 8px;
  }
  .drive-bay {
    aspect-ratio: 1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    position: relative;
  }
  .drive-bay.booked {
    background: var(--accent-mist);
    border: 1px solid var(--accent);
    color: var(--accent-hover);
  }
  .drive-bay.missed {
    background: var(--gray-light);
    border: 1px dashed var(--gray-mid);
    color: var(--text-muted);
  }
  .drive-bay.you {
    background: var(--navy);
    border: 1px solid var(--navy);
    color: var(--white);
  }
  .drive-foot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid var(--gray-light);
  }
  .drive-stat {
    text-align: left;
  }
  .drive-stat .val {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
  }
  .drive-stat.bad .val { color: #d65656; }
  .drive-stat .lbl {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 6px;
  }

  /* ── COVERAGE GRID (Comment 0: icon-supported feature cards) ── */
  .coverage { background: var(--white); }
  .coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 56px;
  }
  .coverage-card {
    background: var(--white);
    border-radius: 14px;
    padding: 32px 28px;
    border: 1px solid var(--gray-light);
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
  }
  .coverage-card:hover {
    box-shadow: 0 12px 32px rgba(28,58,95,0.1);
    transform: translateY(-4px);
  }
  .coverage-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 60%; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--navy-light));
    border-radius: 0 0 4px 0;
  }
  .coverage-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-mist) 0%, rgba(46,196,168,0.05) 100%);
    border: 1px solid rgba(46,196,168,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .coverage-icon svg { width: 26px; height: 26px; stroke: var(--accent-hover); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .coverage-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
  }
  .coverage-card p {
    font-size: 14.5px;
    line-height: 1.65;
  }
  .coverage-tag {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
  }

  /* ── TEAM GETS (4-up ribbon) ── */
  .gets {
    background: var(--navy);
    color: var(--white);
  }
  .gets .section-label { color: rgba(255,255,255,0.55); }
  .gets h2 { color: var(--white); }
  .gets-ribbon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
  }
  .gets-block {
    background: rgba(255,255,255,0.04);
    padding: 36px 28px 32px;
    border-right: 1px solid rgba(255,255,255,0.08);
    position: relative;
    transition: background 0.2s;
  }
  .gets-block:last-child { border-right: none; }
  .gets-block:hover { background: rgba(255,255,255,0.07); }
  .gets-num {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 18px;
  }
  .gets-block h3 {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
    line-height: 1.3;
  }
  .gets-block p {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    line-height: 1.65;
  }
  .gets-pill {
    display: inline-block;
    margin-top: 16px;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(46,196,168,0.15);
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
  }

  /* ── TESTIMONIALS (Featured + 2 supporting) ── */
  .testimonials { background: var(--off-white); }
  .testimonials-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
    margin-top: 56px;
  }
  .testimonial-featured {
    background: var(--white);
    border-radius: 16px;
    padding: 48px 44px;
    border: 1px solid var(--gray-light);
    position: relative;
    box-shadow: 0 8px 28px rgba(28,58,95,0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .testimonial-featured::before {
    content: '\201C';
    font-size: 120px;
    line-height: 0.8;
    color: var(--accent);
    opacity: 0.18;
    position: absolute;
    top: 24px;
    left: 32px;
    font-family: Georgia, serif;
  }
  .testimonial-featured .tf-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
    margin-bottom: 28px;
    margin-top: 24px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.1px;
  }
  .testimonial-featured .tf-author {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
  }
  .testimonial-featured .tf-role {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
  }
  .testimonial-side { display: flex; flex-direction: column; gap: 16px; }
  .testimonial-small {
    background: var(--white);
    border-radius: 12px;
    padding: 24px 26px;
    border: 1px solid var(--gray-light);
    flex: 1;
  }
  .testimonial-small .ts-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text);
    font-style: italic;
    margin-bottom: 14px;
  }
  .testimonial-small .ts-author {
    font-family: var(--font-head);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy);
  }
  .testimonial-small .ts-role {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 2px;
  }

  /* ── RESULTS STRIP (Navy gradient card) ── */
  .results-strip {
    background: var(--off-white);
    padding: 24px 40px 80px;
  }
  .results-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: 16px;
    padding: 48px 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .results-inner::before {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46,196,168,0.2) 0%, transparent 70%);
    pointer-events: none;
  }
  .results-head {
    text-align: center;
    margin-bottom: 36px;
    position: relative;
  }
  .results-head .section-label { color: var(--accent); margin-bottom: 8px; }
  .results-head h3 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
  }
  .results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
  }
  .result {
    text-align: center;
    padding: 12px 16px;
    border-right: 1px solid rgba(255,255,255,0.12);
  }
  .result:last-child { border-right: none; }
  .result-val {
    font-family: var(--font-head);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    line-height: 1;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 10px;
  }
  .result-val .unit { font-size: 0.4em; color: var(--accent); font-weight: 700; margin-left: 4px; }
  .result-val .plus { color: var(--accent); }
  .result-label {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
  }

  /* ── CTA ── */
  .cta-section {
    background: linear-gradient(135deg, #1c3a5f 0%, #254d7a 100%);
    padding: 80px 40px;
    text-align: center;
    color: var(--white);
  }
  .cta-section h2 { color: var(--white); font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
  .cta-section p { color: rgba(255,255,255,0.85); font-size: 18px; max-width: 760px; margin: 0 auto 36px; text-wrap: balance; }
  .cta-section .btn { font-size: 15px; padding: 14px 30px; }
  .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  /* ── FOOTER ── */

  /* ── Responsive trims ── */
  @media (max-width: 1080px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-sub { max-width: none; }
  }
  @media (max-width: 980px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-cell { border-bottom: 1px solid var(--gray-light); }
    .freeing-grid { grid-template-columns: 1fr; gap: 36px; }
    .coverage-grid { grid-template-columns: repeat(2, 1fr); }
    .gets-ribbon { grid-template-columns: repeat(2, 1fr); }
    .gets-block:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
    .gets-block:nth-child(2) { border-right: none; }
    .testimonials-layout { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: 1fr; }
    .result { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 24px 16px; }
    .drive-bays { grid-template-columns: 60px repeat(8, 1fr); }
  }
  @media (max-width: 640px) {
    .coverage-grid { grid-template-columns: 1fr; }
    .gets-ribbon { grid-template-columns: 1fr; }
    .gets-block { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
  }

  /* ── TWEAKS PANEL ── */
  #tweaks-panel {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    z-index: 9999;
    width: 260px;
    font-family: var(--font-body);
    border: 1px solid #e0e8f0;
  }
  #tweaks-panel h4 {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
  }
  .tweak-row { margin-bottom: 14px; }
  .tweak-row label { display: block; font-size: 11px; font-weight: 600; color: #6b7f90; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
  .tweak-row input[type=color] { width: 100%; height: 32px; border: 1px solid #dde5ee; border-radius: 6px; cursor: pointer; padding: 2px; }
  .tweak-row select { width: 100%; padding: 7px 10px; border: 1px solid #dde5ee; border-radius: 6px; font-size: 13px; color: var(--navy); background: white; }

/* section CTA wrappers (Book a Demo after Coverage + Team Gets per doc) */
.coverage-cta, .gets-cta { text-align: center; margin-top: 44px; }
