/* ============================================================================
   ROADITION COMPLIANCE — Services Site
   ============================================================================
   Mood: Professional services firm. Calm, authoritative, scannable.
   Visitor is panicked or anxious. Site must build trust within 10 seconds.

   Palette:
     --ink     #0E1A2E : deep navy near-black, DOT/government feeling
     --bone    #F7F4ED : warm cream, brand continuity with card site
     --signal  #1F7A4E : emerald — "compliant" indicator (functional)
     --alert   #C2410C : burnt orange — "risk" indicator (functional)
     --steel   #5A6573 : muted text
   ============================================================================ */

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

:root {
    --ink:           #0E1A2E;
    --ink-deep:      #07101F;
    --ink-soft:      #1A2842;
    --ink-line:      #283655;
    --bone:          #F7F4ED;
    --bone-deep:     #ECE4D1;
    --bone-line:     #DDD2B8;
    --paper:         #FFFEF9;
    --signal:        #1F7A4E;
    --signal-soft:   rgba(31, 122, 78, 0.1);
    --signal-deep:   #155A38;
    --alert:         #C2410C;
    --alert-soft:    rgba(194, 65, 12, 0.1);
    --warn:          #B58400;
    --warn-soft:     rgba(181, 132, 0, 0.12);
    --steel:         #5A6573;
    --steel-deep:    #3A4358;
    --steel-light:   #8A93A0;

    --font-display: 'Inter Tight', 'Inter', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, -apple-system, sans-serif;
    --font-mono:    'JetBrains Mono', 'Fira Code', monospace;

    --container-w: 1180px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bone);
    color: var(--ink);
    line-height: 1.6;
    font-size: 16.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 2px;
}

.container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 28px;
}

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================================
   HEADER
   ============================================================================ */
.site-header {
    background: var(--bone);
    border-bottom: 1px solid var(--bone-line);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
    background: rgba(247, 244, 237, 0.94);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.brand-mark {
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand-mark svg {
    display: block;
    fill: var(--signal);
    stroke: var(--ink);
}

.brand-mark path:first-child {
    fill: var(--signal-soft);
    stroke: var(--signal-deep);
}

.brand-mark path:last-child {
    stroke: var(--signal-deep);
    fill: none;
}

.brand-name, .brand-text { color: var(--ink); }

.brand-tag, .brand-badge {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--signal-deep);
    background: var(--signal-soft);
    padding: 3px 8px;
    border-radius: 100px;
}

.primary-nav {
    display: flex;
    gap: 30px;
}

.primary-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--steel);
    transition: color 0.15s;
}

.primary-nav a:hover { color: var(--ink); }

.header-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.link-quiet, .link-muted {
    font-size: 14px;
    color: var(--steel);
    font-weight: 500;
}

.link-quiet:hover, .link-muted:hover { color: var(--ink); }

@media (max-width: 820px) {
    .primary-nav { display: none; }
    .header-cta .link-quiet, .header-cta .link-muted { display: none; }
}

/* ============================================================================
   BUTTONS
   ============================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.15s;
    text-align: center;
    line-height: 1.2;
    border-radius: var(--radius-sm);
}

.btn-primary {
    background: var(--ink);
    color: var(--bone);
}

.btn-primary:hover {
    background: var(--ink-soft);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.btn-ghost:hover {
    background: var(--ink);
    color: var(--bone);
}

.btn-ink {
    background: var(--ink);
    color: var(--bone);
}

.btn-ink:hover {
    background: var(--ink-soft);
}

.btn-lg {
    padding: 15px 28px;
    font-size: 15px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-meta {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    opacity: 0.7;
    margin-top: 2px;
    letter-spacing: 0.02em;
}

.btn-lg .btn-meta {
    margin-top: 0;
    margin-left: 12px;
}

@media (max-width: 640px) {
    .btn-lg { flex-direction: column; gap: 4px; padding: 13px 22px; }
    .btn-lg .btn-meta { margin-left: 0; }
}

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */
.eyebrow {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--steel-deep);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.eyebrow-light {
    color: var(--bone-deep);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dot-signal { background: var(--signal); }
.dot-alert { background: var(--alert); }

.display-1 {
    font-family: var(--font-display);
    font-size: clamp(34px, 4.6vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 22px;
    font-weight: 700;
}

.display-2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.2vw, 50px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 24px;
    font-weight: 700;
}

.display-light { color: var(--bone); }

.lede {
    font-size: 18px;
    line-height: 1.6;
    color: var(--steel-deep);
    max-width: 580px;
    margin-bottom: 32px;
}

.section-lede {
    font-size: 17px;
    line-height: 1.6;
    color: var(--steel);
    max-width: 660px;
    margin-bottom: 48px;
}

.section-lede-light {
    color: var(--bone-deep);
}

/* ============================================================================
   HERO
   ============================================================================ */
.hero {
    padding: 80px 0 100px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: stretch;
    margin-bottom: 36px;
}

.hero-trust {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: var(--steel-deep);
    padding: 0;
}

.hero-trust li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--signal);
    display: inline-block;
    flex-shrink: 0;
}

/* Alternative trust display when used as 3-column stats */
.hero-trust.is-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 28px;
    font-size: inherit;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.02em;
}

.trust-label {
    font-size: 12.5px;
    color: var(--steel);
    line-height: 1.35;
    max-width: 160px;
}

/* ============================================================================
   SCORECARD — Hero signature element
   ============================================================================ */
.scorecard {
    background: var(--paper);
    border: 1px solid var(--bone-line);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow:
        0 1px 0 var(--bone-line) inset,
        0 20px 40px -16px rgba(14, 26, 46, 0.18),
        0 6px 16px -8px rgba(14, 26, 46, 0.1);
    max-width: 460px;
    margin-left: auto;
    position: relative;
}

.scorecard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--signal) 0%, var(--signal) 65%, var(--warn) 65%, var(--warn) 88%, var(--alert) 88%, var(--alert) 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.scorecard-head, .sc-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--bone-line);
}

.sc-eyebrow, .sc-tag {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 6px;
    display: block;
}

.sc-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.sc-mc {
    font-family: var(--font-mono);
    font-weight: 500;
}

.sc-id {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--steel-deep);
    display: block;
    margin-top: 2px;
}

.sc-grade {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.sc-letter {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 800;
    line-height: 0.95;
    color: var(--signal-deep);
    letter-spacing: -0.04em;
}

.sc-sub, .sc-grade-meta {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--steel);
    margin-top: 2px;
}

.sc-categories, .sc-cats {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sc-cat {
    display: grid;
    grid-template-columns: 1fr 100px 36px;
    gap: 12px;
    align-items: center;
}

.sc-cat-label, .sc-cat-name {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
}

.sc-bar, .sc-cat-bar {
    height: 6px;
    background: var(--bone-deep);
    border-radius: 100px;
    overflow: hidden;
    width: 100%;
    display: block;
}

.sc-bar-fill, .sc-cat-bar > span {
    height: 100%;
    display: block;
    border-radius: 100px;
    background: var(--signal);
}

.sc-good .sc-cat-bar > span { background: var(--signal); }
.sc-mid .sc-cat-bar > span { background: var(--warn); }
.sc-warn .sc-cat-bar > span { background: var(--alert); }

.sc-cat-score {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    text-align: right;
}

.sc-actions {
    background: var(--bone);
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--ink);
}

.sc-actions-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 8px;
}

.sc-action-list {
    padding-left: 18px;
    margin: 0;
    font-size: 13px;
    color: var(--ink);
    line-height: 1.55;
}

.sc-action-list li { margin-bottom: 3px; }

@media (max-width: 920px) {
    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .scorecard { max-width: 100%; margin: 0; }
}

/* ============================================================================
   STRIP
   ============================================================================ */
.strip {
    background: var(--ink);
    color: var(--bone);
    padding: 28px 0;
    border-top: 1px solid var(--ink-line);
    border-bottom: 1px solid var(--ink-line);
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    font-size: 13.5px;
    color: var(--bone-deep);
    line-height: 1.5;
}

.strip-item strong { color: var(--bone); font-weight: 600; }

@media (max-width: 880px) {
    .strip-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ============================================================================
   SLABS
   ============================================================================ */
.slab {
    padding: 100px 0;
    position: relative;
}

.slab-bone { background: var(--bone); }
.slab-white { background: var(--paper); }

.slab-ink {
    background: var(--ink);
    color: var(--bone);
}

.slab-ink .display-2 { color: var(--bone); }

.slab-signal {
    background: var(--signal);
    color: var(--bone);
}

.slab-signal .display-2 { color: var(--bone); }
.slab-signal .eyebrow { color: var(--bone-deep); }

/* ============================================================================
   PROBLEM GRID
   ============================================================================ */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.problem {
    background: var(--paper);
    border: 1px solid var(--bone-line);
    border-radius: var(--radius-md);
    padding: 24px 22px;
    transition: border-color 0.15s, transform 0.15s;
}

.problem:hover {
    border-color: var(--ink-line);
    transform: translateY(-2px);
}

.problem-num {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--alert);
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 8px;
}

.problem-title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.problem p {
    font-size: 14px;
    color: var(--steel-deep);
    line-height: 1.55;
}

@media (max-width: 880px) {
    .problem-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .problem-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   SERVICES GRID
   ============================================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.service {
    background: var(--paper);
    border: 1px solid var(--bone-line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.15s, transform 0.15s;
}

.service:hover { border-color: var(--ink-line); }

.service-featured {
    border: 2px solid var(--ink);
    box-shadow: 0 12px 32px -16px rgba(14, 26, 46, 0.15);
}

.service-flag {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--signal);
    color: var(--bone);
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
}

.service-head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 14px;
}

.service-num {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--steel);
    letter-spacing: 0.06em;
}

.service-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.service-desc {
    font-size: 14.5px;
    color: var(--steel-deep);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}

.service-includes li {
    font-size: 13.5px;
    color: var(--ink);
    padding: 7px 0 7px 20px;
    border-top: 1px solid var(--bone-line);
    position: relative;
    line-height: 1.5;
}

.service-includes li:first-child { border-top: 0; }

.service-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 8px;
    height: 8px;
    background: var(--signal);
    border-radius: 50%;
}

.service-price {
    background: var(--bone);
    margin: 0 -28px 20px;
    padding: 18px 28px;
    border-top: 1px solid var(--bone-line);
    border-bottom: 1px solid var(--bone-line);
}

.price-tier {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 6px 0;
    font-size: 14px;
}

.price-tier strong, .price-tier-amt {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
}

.price-tier span, .price-tier-label {
    font-size: 13px;
    color: var(--steel);
}

.price-headline strong, .price-mono-amt {
    font-size: 30px !important;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.price-mono {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.price-mono-period {
    font-size: 14px;
    color: var(--steel);
}

.price-mono-meta {
    font-size: 12.5px;
    color: var(--steel);
    line-height: 1.45;
    margin-top: 4px;
}

@media (max-width: 880px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   COMPLIANCE SHIELD DEEP DIVE
   ============================================================================ */
.shield-demo {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 40px 0 48px;
}

.shield-card {
    background: var(--ink-soft);
    border: 1px solid var(--ink-line);
    border-radius: var(--radius-md);
    padding: 22px 24px;
}

.shield-good { border-left: 4px solid var(--signal); }
.shield-mid { border-left: 4px solid var(--warn); }
.shield-bad { border-left: 4px solid var(--alert); }

.shield-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 6px;
}

.shield-status {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--bone);
    letter-spacing: 0.05em;
}

.shield-meta {
    font-size: 12px;
    color: var(--bone-deep);
}

.shield-card-body {
    font-size: 13.5px;
    color: var(--bone-deep);
    line-height: 1.55;
}

.shield-h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--bone);
    letter-spacing: -0.02em;
    margin: 0 0 18px;
}

.shield-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 56px;
}

.check-pill {
    background: var(--ink-soft);
    border: 1px solid var(--ink-line);
    color: var(--bone);
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
}

.shield-cta-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--bone);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.shield-comp-num {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--signal);
}

/* Compare table */
.shield-compare { margin-top: 16px; }

.compare-table {
    background: var(--ink-soft);
    border: 1px solid var(--ink-line);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.compare-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 16px;
    padding: 14px 22px;
    border-top: 1px solid var(--ink-line);
    font-size: 14px;
    color: var(--bone-deep);
}

.compare-row:first-child { border-top: 0; }

.compare-head {
    background: var(--ink-deep);
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--bone);
}

.compare-cell-good {
    color: var(--bone);
    font-weight: 600;
}

@media (max-width: 800px) {
    .shield-demo { grid-template-columns: 1fr; }
    .compare-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 18px; }
    .compare-head { display: none; }
    .compare-row > div:first-child {
        font-family: var(--font-mono);
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--steel-light);
    }
}

/* ============================================================================
   APPROACH GRID
   ============================================================================ */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.approach-item {
    padding: 0;
}

.approach-item h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.approach-item p {
    font-size: 15px;
    color: var(--steel-deep);
    line-height: 1.65;
}

@media (max-width: 720px) {
    .approach-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================================
   CONSULT FORM
   ============================================================================ */
.consult-container {
    max-width: 720px;
}

.consult-container .display-2,
.consult-container .section-lede {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.consult-form {
    margin-top: 40px;
    background: var(--bone);
    padding: 36px;
    border-radius: var(--radius-lg);
    color: var(--ink);
}

.form-row {
    margin-bottom: 16px;
}

.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--steel-deep);
    margin-bottom: 6px;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 14.5px;
    background: var(--paper);
    border: 1.5px solid var(--bone-line);
    color: var(--ink);
    border-radius: var(--radius-sm);
}

.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
    outline: none;
    border-color: var(--ink);
}

.consult-form textarea {
    resize: vertical;
    min-height: 80px;
    font-family: var(--font-body);
}

.form-fineprint {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--steel);
    text-align: center;
    margin-top: 14px;
    letter-spacing: 0.02em;
}

@media (max-width: 600px) {
    .form-row-split { grid-template-columns: 1fr; }
    .consult-form { padding: 24px 20px; }
}

/* ============================================================================
   FAQ
   ============================================================================ */
.faq-container { max-width: 800px; }

.faq-item {
    border-top: 1px solid var(--bone-line);
    padding: 22px 0;
}

.faq-item:last-child {
    border-bottom: 1px solid var(--bone-line);
}

.faq-item summary {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 36px;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-mono);
    font-size: 22px;
    color: var(--signal);
    transition: transform 0.2s;
    line-height: 0;
    font-weight: 400;
}

.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-item p {
    margin-top: 14px;
    color: var(--steel-deep);
    font-size: 15.5px;
    line-height: 1.65;
}

.faq-item p a {
    color: var(--signal-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.site-footer {
    background: var(--ink-deep);
    color: var(--bone-deep);
    padding: 64px 0 28px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 44px;
}

.footer-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--bone);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.footer-logo .brand-mark svg {
    fill: var(--signal-soft);
    stroke: var(--signal);
}

.footer-product {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--signal);
    background: rgba(31, 122, 78, 0.12);
    padding: 3px 8px;
    border-radius: 100px;
}

.footer-tag {
    font-size: 13.5px;
    color: var(--steel-light);
    line-height: 1.55;
    max-width: 320px;
}

.footer-heading {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--steel-light);
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-col a {
    display: block;
    padding: 4px 0;
    color: var(--bone-deep);
    transition: color 0.15s;
}

.footer-col a:hover { color: var(--bone); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--ink-line);
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--steel-light);
    letter-spacing: 0.03em;
    flex-wrap: wrap;
    gap: 8px;
}

@media (max-width: 760px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; }
}

/* ============================================================================
   REDUCED MOTION
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================================
   PATCHES — styles for class names used in the existing index.html that
   weren't covered above.
   ============================================================================ */

/* Trust strip after hero (different from strip-grid) */
.trust-strip {
    padding: 28px 0 60px;
    border-bottom: 1px solid var(--bone-line);
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-stat .trust-num {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    color: var(--ink);
    line-height: 0.95;
    letter-spacing: -0.025em;
}

.trust-stat .trust-label {
    font-size: 13.5px;
    color: var(--steel);
    max-width: 200px;
    line-height: 1.4;
}

@media (max-width: 740px) {
    .trust-strip-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* Problem list section */
.problem-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 40px;
    border-top: 1px solid var(--bone-line);
}

.problem-item {
    padding: 22px 0;
    border-bottom: 1px solid var(--bone-line);
    border-right: 1px solid var(--bone-line);
    padding-right: 28px;
}

.problem-item:nth-child(2n) {
    border-right: 0;
    padding-right: 0;
    padding-left: 28px;
}

.problem-item h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.problem-item p {
    font-size: 14.5px;
    color: var(--steel-deep);
    line-height: 1.55;
}

@media (max-width: 740px) {
    .problem-list { grid-template-columns: 1fr; }
    .problem-item, .problem-item:nth-child(2n) {
        border-right: 0;
        padding-right: 0;
        padding-left: 0;
    }
}

/* Service blocks — additional classes used */
.service-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.service-sub {
    font-size: 13px;
    color: var(--steel);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.service-body {
    font-size: 14.5px;
    color: var(--steel-deep);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-pricing {
    background: var(--bone);
    margin: 0 -28px 20px;
    padding: 14px 28px;
    border-top: 1px solid var(--bone-line);
    border-bottom: 1px solid var(--bone-line);
}

.price-meta {
    font-size: 12.5px;
    color: var(--steel);
    margin-top: 4px;
    font-style: italic;
}

.service-cta {
    margin-top: auto;
}

.service-cta a {
    color: var(--ink);
    font-weight: 600;
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.service-cta-strong a {
    display: block;
    background: var(--ink);
    color: var(--bone);
    text-align: center;
    padding: 11px 18px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
}

.service-cta-strong a:hover {
    background: var(--ink-soft);
}

/* Scorecard priority pills */
.sc-priority {
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2px 6px;
    margin-right: 6px;
    border-radius: 3px;
    color: var(--bone);
    vertical-align: middle;
}

.sc-priority-high { background: var(--alert); }
.sc-priority-med { background: var(--warn); }
.sc-priority-low { background: var(--steel); }

.sc-action-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}

.sc-grade-b .sc-letter { color: var(--signal-deep); }

/* Shield section detail blocks */
.shield-container {
    /* uses .container, no additional needed */
}

.shield-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    margin-top: 40px;
    align-items: start;
}

.shield-side-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--bone);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.status-block {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    background: var(--ink-soft);
    border: 1px solid var(--ink-line);
}

.status-block.status-green { border-left: 4px solid var(--signal); }
.status-block.status-yellow { border-left: 4px solid var(--warn); }
.status-block.status-red { border-left: 4px solid var(--alert); }

.status-light {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
    box-shadow: 0 0 0 2px var(--ink-soft), 0 0 12px currentColor;
}

.status-green .status-light { background: var(--signal); color: var(--signal); }
.status-yellow .status-light { background: var(--warn); color: var(--warn); }
.status-red .status-light { background: var(--alert); color: var(--alert); }

.status-text {
    font-size: 14px;
    color: var(--bone-deep);
    line-height: 1.55;
}

.status-text strong {
    display: block;
    color: var(--bone);
    font-weight: 600;
    margin-bottom: 2px;
}

.shield-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.shield-check-list li {
    font-size: 13.5px;
    color: var(--bone-deep);
    padding: 8px 14px;
    background: var(--ink-soft);
    border: 1px solid var(--ink-line);
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.shield-check-list li::before {
    content: '✓';
    color: var(--signal);
    font-weight: 700;
}

.shield-cta-row {
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid var(--ink-line);
}

.shield-cta-block {
    margin-top: 16px;
}

.shield-comparisons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.shield-comp {
    padding: 18px 22px;
    background: var(--ink-soft);
    border: 1px solid var(--ink-line);
    border-radius: var(--radius-md);
}

.shield-comp-num {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--signal);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 6px;
    display: block;
}

.shield-comp-label {
    font-size: 13px;
    color: var(--bone-deep);
    line-height: 1.4;
}

.shield-cta-note {
    font-size: 13px;
    color: var(--bone-deep);
    margin-top: 8px;
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
}

@media (max-width: 880px) {
    .shield-grid { grid-template-columns: 1fr; gap: 32px; }
    .shield-comparisons { grid-template-columns: 1fr; }
}

/* Approach list */
.approach-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.approach-item {
    padding-left: 22px;
    border-left: 2px solid var(--signal);
}

.approach-item h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.approach-item p {
    font-size: 15px;
    color: var(--steel-deep);
    line-height: 1.65;
}

@media (max-width: 720px) {
    .approach-list { grid-template-columns: 1fr; gap: 22px; }
}

/* Footer additions */
.footer-blurb {
    font-size: 13.5px;
    color: var(--steel-light);
    line-height: 1.55;
    margin-top: 12px;
    max-width: 320px;
}

.footer-bottom-meta {
    color: var(--steel-light);
}

.brand-mark-footer svg {
    fill: var(--signal-soft);
    stroke: var(--signal);
}

/* btn-signal */
.btn-signal {
    background: var(--signal);
    color: var(--bone);
}

.btn-signal:hover {
    background: var(--signal-deep);
}

/* two-col layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 880px) {
    .two-col { grid-template-columns: 1fr; gap: 32px; }
}

/* Hero trust list — keep existing layout from base CSS */
.hero-trust {
    list-style: none;
    padding: 0;
    margin: 0;
}
