  /* ============ HERO ============ */
  .rs-hero { padding: 80px 0 80px; background: var(--gradient-deep); color: #fff; position: relative; overflow: hidden; }
  .rs-hero::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 82% 28%, rgba(97,206,112,0.08), transparent 60%);
    pointer-events: none;
  }
  .rs-hero-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
  .rs-hero h1 { font-family: var(--font-display); font-weight: 600; font-size: 60px; letter-spacing: -0.025em; line-height: 1.04; color: #fff; margin: 18px 0 22px; }
  .rs-hero h1 em { font-style: normal; color: var(--green-100); }
  .rs-hero p.sub { color: rgba(255,255,255,0.75); font-size: 19px; line-height: 1.55; margin-bottom: 14px; max-width: 540px; }
  .rs-hero p.support { color: rgba(255,255,255,0.55); font-size: 15px; line-height: 1.55; max-width: 520px; margin-bottom: 30px; display: flex; align-items: center; gap: 10px; }
  .rs-hero p.support::before { content: ""; display: block; width: 18px; height: 1px; background: rgba(255,255,255,0.35); flex-shrink: 0; }
  .rs-hero .disclaim { margin-top: 20px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: rgba(255,255,255,0.45); text-transform: uppercase; }

  /* ============ Tablet survey UI mock ============ */
  .tablet-frame {
    background: #1B2026; border-radius: 28px; padding: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 60px 120px -40px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.04);
    position: relative;
  }
  .tablet-frame::after {
    content: ""; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
    width: 5px; height: 50px; background: rgba(255,255,255,0.08); border-radius: 3px;
  }
  .tablet-screen {
    background: #FAFBFC; border-radius: 14px; overflow: hidden;
    display: grid; grid-template-rows: auto auto 1fr; min-height: 520px;
  }
  .ts-bar { display: flex; align-items: center; gap: 8px; padding: 10px 16px; background: var(--anthracite-100); color: #fff; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; }
  .ts-bar .br { color: var(--green-100); }
  .ts-bar .pid { margin-left: auto; opacity: 0.65; }
  .ts-tabs { display: flex; padding: 0 16px; background: #fff; border-bottom: 1px solid var(--color-border); }
  .ts-tab { padding: 12px 14px; font-size: 12px; font-weight: 600; color: var(--color-text-subtle); border-bottom: 2px solid transparent; position: relative; }
  .ts-tab.active { color: var(--anthracite-100); border-bottom-color: var(--green-100); }
  .ts-tab .pg { font-family: var(--font-mono); font-size: 10px; color: var(--color-text-subtle); margin-left: 6px; }
  .ts-tab.active .pg { color: var(--green-100); }
  .ts-body { padding: 18px 18px 22px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 18px; min-height: 0; }

  .ts-left { display: flex; flex-direction: column; gap: 10px; }
  .ts-section { padding: 12px 12px; border-radius: 10px; background: #fff; border: 1px solid var(--color-border); display: flex; align-items: center; gap: 10px; font-size: 12px; }
  .ts-section .n { font-family: var(--font-mono); font-size: 10px; color: var(--color-text-subtle); width: 18px; }
  .ts-section .nm { flex: 1; font-weight: 600; color: var(--anthracite-100); }
  .ts-section .pg { font-family: var(--font-mono); font-size: 10px; color: var(--color-text-subtle); }
  .ts-section.active { background: var(--anthracite-100); color: #fff; border-color: var(--anthracite-100); }
  .ts-section.active .n, .ts-section.active .nm, .ts-section.active .pg { color: #fff; }
  .ts-section.active .pg { color: var(--green-100); }
  .ts-section.done .nm::after { content: " ✓"; color: var(--green-100); font-weight: 700; }

  .ts-right { display: flex; flex-direction: column; gap: 12px; }
  .ts-q { background: #fff; border: 1px solid var(--color-border); border-radius: 10px; padding: 14px; }
  .ts-q .qh { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
  .ts-q .qt { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--anthracite-100); }
  .ts-q .qid { font-family: var(--font-mono); font-size: 10px; color: var(--color-text-subtle); }
  .ts-rate { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .ts-rate .r { padding: 8px 6px; border: 1px solid var(--color-border); border-radius: 8px; text-align: center; font-size: 11px; font-weight: 600; color: var(--color-text-muted); display: flex; flex-direction: column; align-items: center; gap: 3px; }
  .ts-rate .r .num { font-family: var(--font-display); font-size: 14px; }
  .ts-rate .r.c1 { color: #2C7C3E; }
  .ts-rate .r.c2 { color: #8A6518; }
  .ts-rate .r.c3 { color: #9C2F2F; }
  .ts-rate .r.active.c1 { background: var(--color-success-soft); border-color: rgba(63,174,82,0.4); }
  .ts-rate .r.active.c2 { background: var(--color-warning-soft); border-color: rgba(224,166,43,0.4); }
  .ts-rate .r.active.c3 { background: var(--color-danger-soft); border-color: rgba(209,72,72,0.4); }
  .ts-rate .r .lab { font-size: 9px; font-weight: 500; opacity: 0.75; }

  .ts-evidence { margin-top: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .ts-evidence .ph { aspect-ratio: 1; border-radius: 6px; background-color: #d6cfc1; background-size: cover; background-position: center; position: relative; }
  .ts-evidence .ph:nth-child(1) { background-image: url('../assets/inspection-photos/rics-render-crack.webp'); }
  .ts-evidence .ph:nth-child(2) { background-image: url('../assets/inspection-photos/rics-damp-stain.webp'); }
  .ts-evidence .ph:nth-child(3) { background-image: url('../assets/inspection-photos/rics-roof-tiles.webp'); }
  .ts-evidence .ph.add { background: var(--off-white-60); border: 1px dashed var(--color-border-strong); display: flex; align-items: center; justify-content: center; color: var(--color-text-subtle); font-size: 18px; font-weight: 300; }

  .ts-note { margin-top: 12px; padding: 10px 12px; background: var(--off-white-60); border-radius: 8px; border-left: 3px solid var(--green-100); font-size: 12px; color: var(--anthracite-90); line-height: 1.5; }
  .ts-note .lab { display: block; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-subtle); margin-bottom: 4px; }

  .ts-progress { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: var(--anthracite-100); color: #fff; font-family: var(--font-mono); font-size: 11px; }
  .ts-progress .pct { color: var(--green-100); font-weight: 700; }
  .ts-progress .bar { flex: 1; height: 4px; background: rgba(255,255,255,0.12); border-radius: 2px; overflow: hidden; }
  .ts-progress .bar .fill { width: 68%; height: 100%; background: var(--green-100); }

  /* ============ Section base ============ */
  .rs-section { padding: 96px 0; }
  .rs-section h2 { font-family: var(--font-display); font-weight: 600; font-size: 40px; letter-spacing: -0.02em; line-height: 1.1; margin: 16px 0; max-width: 780px; }
  .rs-section .lead { font-size: 19px; color: var(--color-text-muted); line-height: 1.55; max-width: 720px; margin-bottom: 48px; }
  .rs-section.alt { background: var(--off-white-60); }
  .rs-section.dark { background: var(--anthracite-100); color: #fff; }
  .rs-section.dark h2 { color: #fff; }
  .rs-section.dark .lead { color: rgba(255,255,255,0.72); }

  /* ============ Problem ============ */
  .prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .prob-card { padding: 32px; background: #fff; border: 1px solid var(--color-border); border-radius: 16px; }
  .prob-card .num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; color: var(--color-text-subtle); text-transform: uppercase; }
  .prob-card .ic { width: 44px; height: 44px; border-radius: 10px; background: rgba(217, 90, 80, 0.10); color: #C04032; display: flex; align-items: center; justify-content: center; margin: 16px 0 18px; }
  .prob-card .ic svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
  .prob-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 20px; margin-bottom: 8px; letter-spacing: -0.01em; }
  .prob-card p { font-size: 16px; color: var(--color-text-muted); line-height: 1.55; }

  /* ============ Solution ============ */
  .sol-grid { display: grid; grid-template-columns: 0.85fr 1.1fr; gap: 64px; align-items: center; }
  .feat-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
  .feat-list li { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-top: 1px solid var(--color-border); }
  .feat-list li:last-child { border-bottom: 1px solid var(--color-border); }
  .feat-list .check { flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px; background: var(--green-20); color: #1E7A2B; display: flex; align-items: center; justify-content: center; }
  .feat-list .check svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
  .feat-list .ft { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--color-text); letter-spacing: -0.005em; }
  .feat-list .fd { font-size: 14px; color: var(--color-text-muted); margin-top: 2px; line-height: 1.5; }

  /* Report preview block */
  .report-preview { background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg); border: 1px solid var(--color-border); overflow: hidden; }
  .rp-cover { background: linear-gradient(135deg, var(--anthracite-100), #2A323D); color: #fff; padding: 28px 32px; display: flex; justify-content: space-between; align-items: center; }
  .rp-cover .lo { display: flex; align-items: center; gap: 12px; }
  .rp-cover .lo .sq { width: 28px; height: 28px; border-radius: 6px; background: var(--green-100); }
  .rp-cover .lo .nm { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: -0.005em; }
  .rp-cover .meta { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.65); letter-spacing: 0.06em; }
  .rp-cover-body { padding: 36px 32px 28px; }
  .rp-cover-body .kind { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-100); }
  .rp-cover-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 24px; color: #fff; letter-spacing: -0.015em; margin-top: 6px; }
  .rp-cover-body p { color: rgba(255,255,255,0.6); font-size: 12px; margin-top: 6px; font-family: var(--font-mono); letter-spacing: 0.04em; }

  .rp-body { padding: 28px 32px; display: flex; flex-direction: column; gap: 18px; }
  .rp-row { display: grid; grid-template-columns: 0.4fr 1fr 90px; gap: 16px; align-items: center; padding: 12px 0; border-bottom: 1px dashed var(--color-border); }
  .rp-row:last-child { border-bottom: none; }
  .rp-row .nm { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--anthracite-100); }
  .rp-row .nm .nm-sub { display: block; font-family: var(--font-body); font-weight: 400; font-size: 11px; color: var(--color-text-subtle); margin-top: 2px; }
  .rp-row .desc { font-size: 12px; color: var(--color-text-muted); line-height: 1.5; }
  .rp-rate { padding: 6px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; text-align: center; font-family: var(--font-display); letter-spacing: 0.02em; }
  .rp-rate.c1 { background: var(--color-success-soft); color: #2C7C3E; }
  .rp-rate.c2 { background: var(--color-warning-soft); color: #8A6518; }
  .rp-rate.c3 { background: var(--color-danger-soft); color: #9C2F2F; }

  /* ============ How it works ============ */
  .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .step-card { padding: 26px 24px 28px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); border-radius: 14px; }
  .step-card .n { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
  .step-card .ic { width: 38px; height: 38px; border-radius: 8px; background: rgba(97,206,112,0.14); display: flex; align-items: center; justify-content: center; margin: 18px 0 16px; }
  .step-card .ic svg { width: 20px; height: 20px; stroke: var(--green-100); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
  .step-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: #fff; letter-spacing: -0.01em; margin-bottom: 8px; }
  .step-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.55; }

  /* ============ Survey-type cards ============ */
  .types-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .type-card { padding: 24px 22px; background: #fff; border: 1px solid var(--color-border); border-radius: 14px; transition: all 180ms var(--ease-standard); position: relative; }
  .type-card:hover { transform: translateY(-2px); border-color: var(--anthracite-40); box-shadow: var(--shadow-md); }
  .type-card .lvl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-100); font-weight: 600; }
  .type-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin: 12px 0 10px; letter-spacing: -0.01em; }
  .type-card p { font-size: 13px; color: var(--color-text-muted); line-height: 1.55; }
  .type-card .ic { width: 32px; height: 32px; border-radius: 8px; background: var(--off-white-100); display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
  .type-card .ic svg { width: 16px; height: 16px; stroke: var(--anthracite-100); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

  /* ============ Structured capture ============ */
  .cap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--color-border); border-left: 1px solid var(--color-border); }
  .cap-item { padding: 28px 32px; border-right: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); display: flex; gap: 18px; align-items: flex-start; }
  .cap-item .ic { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; background: var(--green-20); color: #1E7A2B; display: flex; align-items: center; justify-content: center; }
  .cap-item .ic svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
  .cap-item h4 { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin-bottom: 6px; letter-spacing: -0.005em; }
  .cap-item p { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; }

  /* ============ Reporting hero ============ */
  .rep-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .rep-stack { position: relative; height: 480px; }
  .rep-doc { position: absolute; background: #fff; border-radius: 12px; border: 1px solid var(--color-border); box-shadow: 0 28px 60px rgba(54,62,72,0.18); padding: 22px 24px; }
  .rep-doc-back { left: 6%; top: 4%; width: 65%; transform: rotate(-5deg); background: var(--off-white-90); }
  .rep-doc-mid { left: 18%; top: 12%; width: 65%; transform: rotate(2deg); background: #FAFBFC; }
  .rep-doc-front { left: 22%; top: 22%; width: 70%; }
  .rep-doc h5 { font-family: var(--font-display); font-weight: 600; font-size: 14px; margin-bottom: 4px; }
  .rep-doc .sb { font-family: var(--font-mono); font-size: 10px; color: var(--color-text-subtle); margin-bottom: 12px; }
  .rep-doc .seg-h { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-top: 1px solid var(--color-border); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-subtle); }
  .rep-doc .seg-h .rate { padding: 2px 8px; border-radius: 999px; font-size: 9px; font-weight: 700; text-transform: uppercase; }
  .rep-doc .seg-h .rate.c1 { background: var(--color-success-soft); color: #2C7C3E; }
  .rep-doc .seg-h .rate.c2 { background: var(--color-warning-soft); color: #8A6518; }
  .rep-doc .seg-h .rate.c3 { background: var(--color-danger-soft); color: #9C2F2F; }
  .rep-doc .ln { height: 4px; background: var(--off-white-100); border-radius: 2px; margin: 4px 0; }
  .rep-doc .ln.s { width: 70%; }
  .rep-doc .ln.m { width: 90%; }

  /* ============ Consistency bullets ============ */
  .cons-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
  .cons-bullets { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-direction: column; gap: 14px; }
  .cons-bullets li { display: flex; align-items: flex-start; gap: 14px; font-size: 17px; color: var(--color-text); line-height: 1.5; }
  .cons-bullets .arr { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--green-100); color: #fff; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
  .cons-bullets .arr svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

  /* Surveyor consistency chart */
  .surv-board { background: #fff; border: 1px solid var(--color-border); border-radius: 18px; padding: 28px; box-shadow: var(--shadow-md); }
  .sb-h { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--color-border); margin-bottom: 18px; }
  .sb-h .t { font-family: var(--font-display); font-weight: 600; font-size: 16px; }
  .sb-h .pl { padding: 4px 10px; background: var(--green-20); color: #1E7A2B; border-radius: 999px; font-size: 11px; font-weight: 600; }
  .sb-row { display: grid; grid-template-columns: 1.4fr 1.6fr 0.7fr; gap: 16px; align-items: center; padding: 14px 0; border-bottom: 1px dashed var(--color-border); }
  .sb-row:last-child { border-bottom: none; }
  .sb-name { display: flex; align-items: center; gap: 10px; }
  .sb-avatar { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; font-family: var(--font-display); font-weight: 600; font-size: 12px; display: flex; align-items: center; justify-content: center; color: #fff; }
  .sb-avatar.a1 { background: #5577B0; }
  .sb-avatar.a2 { background: #6BA776; }
  .sb-avatar.a3 { background: #B07A55; }
  .sb-avatar.a4 { background: #8A6FA8; }
  .sb-avatar.a5 { background: #486569; }
  .sb-name .nm { font-size: 14px; font-weight: 600; }
  .sb-name .ds { font-size: 11px; color: var(--color-text-subtle); font-family: var(--font-mono); }
  .sb-segs { display: flex; gap: 3px; height: 10px; border-radius: 5px; overflow: hidden; background: var(--off-white-100); }
  .sb-segs span { display: block; }
  .sb-segs .c1 { background: var(--green-100); }
  .sb-segs .c2 { background: #E0A62B; }
  .sb-segs .c3 { background: #D14848; }
  .sb-pct { font-family: var(--font-mono); font-size: 12px; color: var(--color-text); font-weight: 600; text-align: right; }

  /* Scale */
  .scale-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .scale-card { padding: 32px 28px; background: var(--off-white-100); border-radius: 16px; border: 1px solid var(--color-border); }
  .scale-card .v { font-family: var(--font-display); font-weight: 700; font-size: 44px; letter-spacing: -0.02em; color: var(--anthracite-100); line-height: 1; }
  .scale-card .v .pl { color: var(--green-100); }
  .scale-card .l { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-subtle); margin-top: 12px; }
  .scale-card .d { font-size: 14px; color: var(--color-text-muted); margin-top: 6px; line-height: 1.5; }

  /* Related */
  .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .related-card { padding: 28px; background: #fff; border: 1px solid var(--color-border); border-radius: 16px; display: flex; flex-direction: column; gap: 14px; transition: all 180ms var(--ease-standard); }
  .related-card:hover { border-color: var(--anthracite-40); transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .related-card .tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-subtle); }
  .related-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: -0.01em; }
  .related-card p { font-size: 15px; color: var(--color-text-muted); line-height: 1.55; flex: 1; }
  .related-card .go { font-size: 14px; font-weight: 600; color: var(--anthracite-100); display: inline-flex; align-items: center; gap: 6px; }
  .related-card .go svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 150ms; }
  .related-card:hover .go svg { transform: translateX(3px); }

  /* Cross-link strip — sits between Related Solutions and the Final CTA, points
     visitors to /home-inspection-software/ if they're on the wrong page. */
  .rs-cross-strip { padding: 36px 0; background: #fff; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); text-align: center; }
  .rs-cross-strip .container-wide { display: flex; flex-direction: column; align-items: center; gap: 8px; }
  .rs-cross-prompt { font-size: 16px; color: var(--color-text-muted); margin: 0; line-height: 1.5; }
  .rs-cross-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 17px; font-weight: 600;
    color: var(--anthracite-100);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.18);
    padding-bottom: 2px;
    transition: color var(--motion-base) var(--ease-standard), border-color var(--motion-base) var(--ease-standard);
  }
  .rs-cross-link:hover { color: var(--green-100); border-bottom-color: var(--green-100); }
  .rs-cross-link svg { width: 16px; height: 16px; transition: transform var(--motion-base) var(--ease-standard); }
  .rs-cross-link:hover svg { transform: translateX(4px); }
  @media (max-width: 640px) {
    .rs-cross-strip { padding: 28px 16px; }
    .rs-cross-prompt { font-size: 15px; }
    .rs-cross-link { font-size: 16px; }
  }

  /* Final CTA */
  .final-cta { background: var(--gradient-primary); color: #fff; padding: 110px 0; text-align: center; position: relative; overflow: hidden; }
  .final-cta::before {
    content: ""; position: absolute; left: 50%; top: -20%; width: 720px; height: 720px;
    background: radial-gradient(circle, rgba(97,206,112,0.18), transparent 60%);
    transform: translateX(-50%); pointer-events: none;
  }
  .final-cta .inner { position: relative; z-index: 1; }
  .final-cta h2 { font-family: var(--font-display); font-weight: 600; font-size: 48px; letter-spacing: -0.02em; color: #fff; max-width: 900px; margin: 16px auto; }
  .final-cta p.sup { color: rgba(255,255,255,0.78); font-size: 18px; margin-top: 8px; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.55; }
  .final-cta .btns { display: flex; gap: 12px; justify-content: center; margin-top: 32px; }

  /* Compliance disclaimer block */
  .disclaim-block { padding: 36px 0; background: var(--off-white-60); border-top: 1px solid var(--color-border); }
  .disclaim-block .bx { display: flex; gap: 14px; align-items: flex-start; max-width: 920px; }
  .disclaim-block .ic { flex-shrink: 0; width: 28px; height: 28px; border-radius: 6px; background: #fff; border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center; color: var(--color-text-subtle); }
  .disclaim-block .ic svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
  .disclaim-block p { font-size: 13px; color: var(--color-text-subtle); line-height: 1.6; }
  .disclaim-block strong { color: var(--anthracite-100); }

  /* SEO copy block */
  .seo-strip { padding: 32px 0; background: #fff; border-top: 1px solid var(--color-border); }
  .seo-strip p { font-size: 13px; color: var(--color-text-subtle); max-width: 1080px; line-height: 1.6; }

  @media (max-width: 1100px) {
    .types-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 980px) {
    .rs-hero-grid, .sol-grid, .rep-grid, .cons-grid { grid-template-columns: 1fr; gap: 40px; }
    .prob-grid, .steps-grid, .scale-grid, .related-grid, .types-grid { grid-template-columns: 1fr 1fr; }
    .rs-hero h1 { font-size: 44px; }
    .rs-section h2 { font-size: 32px; }
    .cap-grid { grid-template-columns: 1fr; }
    /* Defensive overflow containment — the tablet visual can otherwise force
     * the hero grid wider than the viewport when stacked. */
    .rs-hero-grid > * { min-width: 0; }
    .tablet-frame { min-width: 0; max-width: 100%; overflow: hidden; }
    .tablet-screen { min-height: 0; }
  }
  @media (max-width: 640px) {
    .prob-grid, .steps-grid, .scale-grid, .related-grid, .types-grid { grid-template-columns: 1fr; }
    .ts-body { grid-template-columns: 1fr; }

    /* Section padding + headings — pull back generous desktop spacing. */
    .rs-section, .rs-section.alt, .rs-section.dark { padding: 64px 0; }
    .rs-hero { padding: 64px 0 56px; }
    .rs-section h2 { font-size: 26px; }
    .rs-section .lead { font-size: 16px; margin-bottom: 32px; }
    .rs-hero h1 { font-size: 32px; }
    .rs-hero p.sub { font-size: 16px; }
    .rs-hero p.support { font-size: 14px; }

    /* Card padding — slim down so words fit on iPhone-class widths. */
    .prob-card, .scale-card, .related-card { padding: 24px; }
    .step-card { padding: 22px 22px 24px; }
    .type-card { padding: 22px 20px; }
    .cap-item { padding: 22px 24px; }

    /* Tablet UI mock — prevent the inner grid from forcing horizontal scroll. */
    .ts-bar, .ts-progress { font-size: 10px; padding: 9px 12px; }
    .ts-tabs { padding: 0 10px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .ts-tab { padding: 10px 10px; white-space: nowrap; }
    .ts-body { padding: 14px; gap: 14px; }
    .ts-rate { gap: 4px; }
    .ts-rate .r { padding: 7px 4px; }
    .ts-evidence { grid-template-columns: repeat(4, 1fr); gap: 5px; }

    /* Solution feat-list — keep readable but slimmer. */
    .feat-list .ft { font-size: 16px; }
    .feat-list .fd { font-size: 13px; }

    /* Report preview block (.report-preview) — tighten inner padding so
     * the 3-col grid doesn't push past the viewport. */
    .rp-cover { padding: 20px 22px; }
    .rp-cover-body { padding: 24px 22px 22px; }
    .rp-cover-body h3 { font-size: 20px; }
    .rp-body { padding: 20px 22px; gap: 12px; }
    .rp-row { grid-template-columns: 1fr 80px; gap: 10px; }
    .rp-row .desc { display: none; } /* drops middle column on narrow widths */

    /* Reporting hero stacked-doc visual: collapse the rotated overlap so all
     * three docs stack vertically — rotated absolute layout overflows on
     * mobile and creates horizontal scroll. */
    .rep-stack { height: auto; display: flex; flex-direction: column; gap: 14px; }
    .rep-doc, .rep-doc-back, .rep-doc-mid, .rep-doc-front {
      position: static; left: auto; top: auto; width: 100%;
      transform: none;
    }

    /* Surveyor board (.surv-board) — collapse the 3-col row to stacked. */
    .surv-board { padding: 20px; }
    .sb-h { flex-direction: column; align-items: flex-start; gap: 8px; padding-bottom: 14px; margin-bottom: 14px; }
    .sb-row { grid-template-columns: 1fr; gap: 10px; padding: 12px 0; }
    .sb-pct { text-align: left; }

    /* Consistency bullets — tighter type so they stay on one line. */
    .cons-bullets li { font-size: 15px; }

    /* Final CTA — pull back, keep buttons inline + non-wrapping. */
    .final-cta { padding: 72px 0; }
    .final-cta h2 { font-size: 28px; }
    .final-cta p.sup { font-size: 15px; }
    .final-cta .btns { flex-wrap: nowrap; gap: 10px; }
    .final-cta .btns .btn { flex: 1 1 0; min-width: 0; padding-left: 14px; padding-right: 14px; white-space: nowrap; }

    /* Disclaimer + SEO strips — tighter padding. */
    .disclaim-block { padding: 28px 0; }
    .seo-strip { padding: 24px 0; }
  }
  @media (max-width: 380px) {
    /* Extra-small (iPhone SE class) — pull h1 back further and let the
     * tablet evidence strip drop to 3-col so the photos don't squish. */
    .rs-hero h1 { font-size: 28px; }
    .ts-evidence { grid-template-columns: repeat(3, 1fr); }
    .ts-evidence .ph.add { display: none; }
  }
