/*
 * Settlement Agreements Redesign — settlement-agreements.css
 * Scoped under .sa-page to prevent bleed into existing site styles.
 * Uses existing site design tokens where known; defines only what's new.
 * Brand magenta: #C8366E | Brand blue: #0075C1
 */

/* ─────────────────────────────────────────────────────────────
   0. DESIGN TOKENS (scoped)
   ───────────────────────────────────────────────────────────── */
   .sa-page {
    --sa-blue:        #0075C1;
    --sa-blue-deep:   #005E9C;
    --sa-blue-darker: #00436F;
    --sa-blue-darkest:#002A4A;
    --sa-magenta:     #C8366E;
    --sa-magenta-deep:#A6285A;
    --sa-magenta-soft:#F8E5EE;
    --sa-ink:         #0F1B2D;
    --sa-ink-soft:    #1B2B4F;
    --sa-ivory:       #F5F7F9;
    --sa-ivory-deep:  #ECEFF3;
    --sa-paper:       #FFFFFF;
    --sa-rule:        #DDE2E8;
    --sa-rule-soft:   #EBEEF2;
    --sa-text:        #2A2A2A;
    --sa-muted:       #6B6B6B;
    --sa-gold:        #E8B048;
    --sa-label-muted: #7C8694;
    --sa-radius-sm:   4px;
    --sa-radius-pill: 999px;
    --sa-shadow-card: 0 20px 40px -24px rgba(15,27,45,.18);
    --sa-shadow-blue: 0 30px 60px -30px rgba(0,60,100,.4);
    --sa-font:        "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
    --sa-section-pad: 96px;
    --sa-container-w: 1240px;
    --sa-container-px: 32px;
    font-family: var(--sa-font);
    color: var(--sa-text);
    line-height: 1.55;
    font-size: 16.5px;
    -webkit-font-smoothing: antialiased;
}

/* ─────────────────────────────────────────────────────────────
   1. LAYOUT UTILITIES
   ───────────────────────────────────────────────────────────── */
.sa-container {
    max-width: var(--sa-container-w);
    margin: 0 auto;
    padding: 0 var(--sa-container-px);
}

.sa-section {
    padding: var(--sa-section-pad) 0;
}
.sa-section--paper  { background: var(--sa-paper); }
.sa-section--blue   { background: var(--sa-blue); }
.sa-section--deep   { background: var(--sa-blue-darkest); }

/* Shared section header (eyebrow + heading left / note right) */
.sa-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 60px;
}
.sa-section-header__left { max-width: 620px; }
.sa-section-header__left .sa-eyebrow { display: block; margin-bottom: 14px; }
.sa-section-header__left h2 { margin-bottom: 16px; }
.sa-section-header__right {
    font-size: .95rem;
    color: var(--sa-muted);
    max-width: 320px;
    text-align: right;
    line-height: 1.5;
    padding-bottom: 6px;
}

/* ─────────────────────────────────────────────────────────────
   2. TYPOGRAPHY
   ───────────────────────────────────────────────────────────── */
.sa-page h1,
.sa-page h2,
.sa-page h3,
.sa-page h4 {
    font-family: var(--sa-font);
    color: var(--sa-ink);
    letter-spacing: -.015em;
    line-height: 1.15;
    margin: 0;
}
.sa-page h1 {
    font-weight: 500;
    font-size: clamp(2.1rem, 4.4vw, 3.6rem);
    line-height: 1.12;
    margin-bottom: 22px;
}
.sa-page h2 { font-weight: 500; font-size: clamp(1.85rem, 3.4vw, 2.7rem); line-height: 1.18; }
.sa-page h3 { font-weight: 500; font-size: 1.3rem; line-height: 1.3; }
.sa-page p  { font-size: 1.025rem; color: var(--sa-text); margin: 0 0 18px; }
.sa-page p:last-child { margin-bottom: 0; }

/* Italic accent (coloured em in headings) */
.sa-page .sa-italic {
    font-style: italic;
    color: var(--sa-blue);
    font-weight: inherit;
}

/* Eyebrow */
.sa-eyebrow {
    font-family: var(--sa-font);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--sa-label-muted);
    font-weight: 500;
}
.sa-eyebrow--light  { color: rgba(255,255,255,.7); }
.sa-eyebrow--blue   { color: #FFB0BF; letter-spacing: .18em; }
.sa-eyebrow--accent { color: var(--sa-magenta); }

/* Section deep: white headings */
.sa-section--deep h2,
.sa-section--deep h3 { color: #fff; }
.sa-section--blue  h2,
.sa-section--blue  h3 { color: #fff; }

/* ─────────────────────────────────────────────────────────────
   3. BUTTONS
   ───────────────────────────────────────────────────────────── */
.sa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    font-family: var(--sa-font);
    font-weight: 500;
    font-size: .95rem;
    border-radius: var(--sa-radius-pill);
    transition: all .2s ease;
    cursor: pointer;
    border: 1.5px solid transparent;
    text-decoration: none;
    line-height: 1;
}
.sa-btn--primary {
    background: #FFB0BF;
    color: var(--sa-ink);
    border-color: #FFB0BF;
}
.sa-btn--primary:hover {
    background: #FF96A9;
    border-color: #FF96A9;
    transform: translateY(-1px);
    color: var(--sa-ink);
}
.sa-btn--ghost {
    border-color: var(--sa-ink);
    color: var(--sa-ink);
    background: transparent;
}
.sa-btn--ghost:hover {
    background: var(--sa-ink);
    color: #fff;
}
.sa-btn--light {
    background: #fff;
    color: var(--sa-ink);
    border-color: var(--sa-rule);
}
.sa-btn--light:hover { border-color: var(--sa-ink); }
.sa-btn--white-ghost {
    border-color: rgba(255,255,255,.5);
    color: #fff;
    background: transparent;
}
.sa-btn--white-ghost:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff;
}
.sa-btn--full { width: 100%; justify-content: center; }
.sa-btn__arrow { font-size: 1rem; }

/* ─────────────────────────────────────────────────────────────
   4. SECTION 1 — HERO
   ───────────────────────────────────────────────────────────── */
.sa-hero {
    background: var(--sa-ivory);
    padding: 112px 0 96px;
    position: relative;
    overflow: hidden;
}
.sa-hero::before {
    content: "";
    position: absolute;
    top: -120px; right: -160px;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(200,54,110,.07), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sa-hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 72px;
    align-items: center;
}

/* Left column */
.sa-hero__eyebrow-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}
.sa-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #FFB0BF;
    flex-shrink: 0;
}
.sa-hero__heading {
    margin-bottom: 22px;
}
.sa-hero__heading .sa-italic {
    font-style: italic;
    font-weight: 700;
    color: #FFB0BF;
}
.sa-hero__sub {
    font-size: 1.12rem !important;
    color: var(--sa-text) !important;
    max-width: 560px;
    margin-bottom: 36px !important;
    line-height: 1.6;
}
.sa-hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 42px;
}
.sa-hero__trust {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .88rem;
    color: var(--sa-muted);
    flex-wrap: wrap;
}
.sa-hero__stars { color: var(--sa-gold); letter-spacing: 2px; font-size: .95rem; }
.sa-hero__trust strong { color: var(--sa-ink); font-weight: 500; }
.sa-hero__trust-sep { color: var(--sa-rule); }

/* Right column: portrait */
.sa-hero__portrait-wrap { position: relative; }
.sa-hero__portrait {
    position: relative;
    aspect-ratio: 4/5;
    background: linear-gradient(155deg, var(--sa-blue) 0%, var(--sa-blue-deep) 60%, var(--sa-blue-darker) 100%);
    border-radius: var(--sa-radius-sm);
    overflow: hidden;
    box-shadow: var(--sa-shadow-blue);
}
.sa-hero__portrait::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,.08), transparent 50%);
    pointer-events: none;
}
.sa-hero__portrait img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    position: relative; z-index: 1;
}
.sa-hero__badge {
    position: absolute;
    bottom: 22px; left: 22px;
    background: #fff;
    padding: 14px 20px;
    border-radius: var(--sa-radius-sm);
    box-shadow: 0 10px 30px rgba(15,27,45,.18);
    z-index: 3;
}
.sa-hero__badge-num {
    display: block;
    font-family: var(--sa-font);
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--sa-ink);
    line-height: 1;
    letter-spacing: -.02em;
}
.sa-hero__badge-label {
    display: block;
    font-size: .74rem;
    color: var(--sa-muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: 4px;
}

/* ─────────────────────────────────────────────────────────────
   5. SECTION 2 — TRUST STRIP
   ───────────────────────────────────────────────────────────── */
.sa-trust-strip {
    background: var(--sa-blue);
    color: rgba(255,255,255,.95);
    padding: 56px 0;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.sa-trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
}
.sa-trust-strip__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 4px 0 4px 24px;
    border-left: 1px solid rgba(255,255,255,.12);
    transition: opacity .6s ease, transform .6s ease;
}
.sa-trust-strip__item:first-child { border-left: none; padding-left: 0; }
.sa-trust-strip__num {
    font-family: var(--sa-font);
    font-size: 2.1rem;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    letter-spacing: -.02em;
    white-space: nowrap;
}
.sa-trust-strip__text {
    font-size: .85rem;
    color: rgba(255,255,255,.7);
    line-height: 1.4;
}
.sa-trust-strip__text strong { color: #fff; font-weight: 500; }

/* Meet David overrides to match HTML mockup */
.sa-meet-david { background: var(--sa-ivory); }
.sa-count { display: inline; }
.js-anim .sa-trust-strip__item { opacity: 0; transform: translateY(14px); }
.js-anim .sa-trust-strip__item.in-view { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────────────────────
   6. SECTION 3 — SITUATION
   ───────────────────────────────────────────────────────────── */
.sa-situation__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.sa-situation__lead-in {
    font-family: var(--sa-font);
    font-style: italic;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--sa-label-muted);
    margin-bottom: 18px;
}
.sa-situation__left h2 { margin-bottom: 0; }
.sa-situation__right p { color: #404040; }

/* ─────────────────────────────────────────────────────────────
   7. SECTION 4 — MEET DAVID
   ───────────────────────────────────────────────────────────── */
.sa-meet-david__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 72px;
    align-items: center;
}
.sa-meet-david__portrait {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: var(--sa-radius-sm);
    background: linear-gradient(155deg, var(--sa-blue) 0%, var(--sa-blue-deep) 60%, var(--sa-blue-darker) 100%);
    box-shadow: 0 24px 48px -24px rgba(0,60,100,.4);
}
.sa-meet-david__portrait::after {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,.08), transparent 50%);
    pointer-events: none;
}
.sa-meet-david__portrait img {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center bottom;
    position: relative; z-index: 1;
}
.sa-meet-david__portrait--placeholder::before {
    content: "DG";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--sa-font);
    font-style: italic;
    font-size: 6rem;
    color: rgba(255,255,255,.18);
    z-index: 0;
}

.sa-meet-david__content .sa-eyebrow { display: block; margin-bottom: 18px; }
.sa-meet-david__content h2 { margin-bottom: 26px; }
.sa-meet-david__content p { margin-bottom: 18px; color: #404040; }

.sa-meet-david__quote {
    font-family: var(--sa-font);
    font-style: italic;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--sa-ink);
    border-left: 3px solid #FFB0BF;
    padding-left: 24px;
    margin: 28px 0;
}

.sa-meet-david__creds {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 28px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--sa-rule);
}
.sa-cred { display: flex; flex-direction: column; gap: 4px; }
.sa-cred__label {
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--sa-muted);
}
.sa-cred__value {
    font-family: var(--sa-font);
    font-size: .98rem;
    font-weight: 500;
    color: var(--sa-ink);
}
.sa-meet-david__signature {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 18px;
}
.sa-signature__script {
    font-family: var(--sa-font);
    font-style: italic;
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--sa-blue);
    letter-spacing: -.01em;
}
.sa-signature__info {
    font-size: .85rem;
    color: var(--sa-muted);
    line-height: 1.4;
}
.sa-signature__info strong {
    display: block;
    color: var(--sa-ink);
    font-weight: 500;
    margin-bottom: 2px;
}

/* ─────────────────────────────────────────────────────────────
   8. SECTION 5 — VIDEO
   ───────────────────────────────────────────────────────────── */
.sa-video__intro {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}
.sa-video__intro .sa-eyebrow { display: block; margin-bottom: 14px; }
.sa-video__intro h2 { margin-bottom: 18px; }
.sa-video__intro h2 .sa-italic { color: var(--sa-blue); font-style: italic; font-weight: 400; }
.sa-video__intro p { color: var(--sa-muted); font-size: 1.02rem; }

.sa-video__frame {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 30px 80px -30px rgba(0,60,100,.4);
    cursor: pointer;
}
.sa-video__frame:focus-visible { outline: 3px solid var(--sa-blue); outline-offset: 4px; }

.sa-video__poster {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--sa-blue) 0%, var(--sa-blue-darker) 100%);
    display: grid;
    place-items: center;
    overflow: hidden;
}
.sa-video__poster img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: .55;
    mix-blend-mode: luminosity;
    z-index: 1;
}
.sa-video__poster::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,42,74,.65) 0%, rgba(0,42,74,.15) 100%);
    z-index: 2;
}

.sa-video__overlay {
    position: relative; z-index: 3;
    padding: 48px;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sa-video__tag {
    align-self: flex-start;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 8px 14px;
    border-radius: var(--sa-radius-sm);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.sa-video__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}
.sa-video__title {
    color: #fff;
    font-family: var(--sa-font);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.3;
    max-width: 380px;
}
.sa-video__duration {
    background: rgba(0,0,0,.55);
    color: #fff;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: .82rem;
    align-self: flex-end;
}
.sa-video__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 88px; height: 88px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all .25s ease;
    box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.sa-video__frame:hover .sa-video__play,
.sa-video__frame:focus-visible .sa-video__play {
    transform: translate(-50%, -50%) scale(1.08);
    background: var(--sa-magenta);
}
.sa-video__play svg { width: 30px; height: 30px; margin-left: 4px; fill: var(--sa-blue); transition: fill .25s; }
.sa-video__frame:hover .sa-video__play svg { fill: #fff; }

.sa-video__embed-wrap {
    position: absolute; inset: 0; z-index: 10;
    background: #000;
}
.sa-video__embed-wrap iframe {
    width: 100%; height: 100%;
    border: none;
}

/* ─────────────────────────────────────────────────────────────
   9. SECTION 6 — OUTCOMES
   ───────────────────────────────────────────────────────────── */
.sa-outcomes__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--sa-rule);
    border-left: 1px solid var(--sa-rule);
}
.sa-outcome {
    border-right: 1px solid var(--sa-rule);
    border-bottom: 1px solid var(--sa-rule);
    padding: 36px 28px;
    background: var(--sa-paper);
    transition: background .2s;
}
.sa-outcome:hover { background: var(--sa-ivory); }
.sa-outcome__icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--sa-blue);
    color: var(--sa-blue);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    font-size: 1.05rem;
}
.sa-outcome h3 { font-size: 1.08rem; line-height: 1.3; margin-bottom: 10px; font-weight: 500; }
.sa-outcome p  { font-size: .92rem; color: var(--sa-muted); line-height: 1.5; margin: 0; }

/* ─────────────────────────────────────────────────────────────
   10. SECTION 7 — CASE STUDIES
   ───────────────────────────────────────────────────────────── */
.sa-case-studies { background: var(--sa-ivory); }
.sa-case-studies__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.sa-case-card {
    background: var(--sa-paper);
    border: 1px solid var(--sa-rule);
    border-radius: var(--sa-radius-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .25s;
}
.sa-case-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sa-shadow-card);
}
.sa-case-card__head {
    background: var(--sa-blue);
    color: #fff;
    padding: 24px 28px;
    min-height: 120px;
}
.sa-case-card__ref {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.6);
    margin-bottom: 8px;
}
.sa-case-card__role {
    font-family: var(--sa-font);
    font-size: 1.05rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    min-height: calc(1.05rem * 1.3 * 2); /* reserve 2 lines so heads align */
}
@media (max-width: 1024px) {
    .sa-case-card__role { min-height: 0; }
}
.sa-case-card__body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sa-field-label {
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--sa-muted);
    margin-bottom: 6px;
}
.sa-field-value {
    font-size: .92rem;
    color: var(--sa-text);
    line-height: 1.5;
}
.sa-case-card__uplift {
    padding: 20px 28px;
    background: var(--sa-ivory);
    border-top: 1px solid var(--sa-rule);
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
}
.sa-case-card__uplift-label {
    color: var(--sa-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 4px;
}
.sa-case-card__uplift-value {
    font-family: var(--sa-font);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--sa-ink);
    letter-spacing: -.01em;
    line-height: 1;
}
.sa-case-studies__disclaimer {
    margin-top: 32px !important;
    font-size: .82rem !important;
    color: var(--sa-muted) !important;
    text-align: center;
    font-style: italic;
}

/* ─────────────────────────────────────────────────────────────
   11. SECTION 8 — MID-PAGE CTA
   ───────────────────────────────────────────────────────────── */
.sa-mid-cta { background: var(--sa-ivory); }
.sa-mid-cta .sa-eyebrow { display: block; margin-bottom: 14px; }
.sa-mid-cta h2 {
    color: var(--sa-ink);
    margin-bottom: 18px;
    font-size: 1.85rem;
}
.sa-mid-cta h2 .sa-italic { color: var(--sa-blue); font-style: italic; font-weight: 600; }
.sa-mid-cta__card {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 0;
    background: var(--sa-paper);
    border: 1px solid var(--sa-rule);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px -40px rgba(0,60,100,.3);
}

/* Form column */
.sa-mid-cta__form-col {
    padding: 48px 48px 44px;
}
.sa-mid-cta__sub {
    color: var(--sa-muted);
    margin-bottom: 28px;
    font-size: .98rem;
    line-height: 1.6;
}

/* Form elements */
.sa-mid-cta__form .sa-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.sa-mid-cta__form .sa-form-field { display: flex; flex-direction: column; gap: 6px; }
.sa-mid-cta__form .sa-form-field--full { grid-column: 1/-1; }
.sa-mid-cta__form label {
    font-size: .78rem;
    color: var(--sa-ink);
    font-weight: 500;
    letter-spacing: .01em;
}
.sa-mid-cta__form input,
.sa-mid-cta__form select {
    padding: 12px 14px;
    background: var(--sa-paper);
    border: 1px solid var(--sa-rule);
    border-radius: 6px;
    color: var(--sa-text);
    font-family: var(--sa-font);
    font-size: .95rem;
    transition: border-color .15s, box-shadow .15s;
    width: 100%;
}
.sa-mid-cta__form input::placeholder { color: var(--sa-muted); opacity: .6; }
.sa-mid-cta__form input:focus,
.sa-mid-cta__form select:focus {
    outline: none;
    border-color: var(--sa-blue);
    box-shadow: 0 0 0 3px rgba(0,117,193,.12);
}
.sa-mid-cta__form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237C8694' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.sa-mid-cta__form .sa-btn--primary { margin-top: 6px; width: 100%; justify-content: center; }
.sa-mid-cta__note {
    margin-top: 14px !important;
    font-size: .8rem !important;
    color: var(--sa-muted) !important;
    text-align: center;
    line-height: 1.5;
}

button:focus:not(:focus-visible) {
    outline: 0;
    background: transparent;
    color: unset;
    border: none;
}

/* Call column */
.sa-mid-cta__call-col {
    background: linear-gradient(160deg, var(--sa-blue) 0%, var(--sa-blue-darker) 100%);
    color: #fff;
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sa-mid-cta__call-eyebrow {
    display: block;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #FFB0BF;
    font-weight: 500;
    margin-bottom: 16px;
}
.sa-mid-cta__call-col h3 { color: #fff; margin-bottom: 10px; font-size: 1.45rem; line-height: 1.3; }
.sa-mid-cta__call-sub {
    color: rgba(255,255,255,.78) !important;
    font-size: .94rem !important;
    margin-bottom: 28px !important;
    line-height: 1.5;
}
.sa-mid-cta__phone {
    display: block;
    font-family: var(--sa-font);
    font-size: 2rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: -.01em;
    text-decoration: none;
    transition: color .15s;
}
.sa-mid-cta__phone:hover { color: #FFB0BF; }
.sa-mid-cta__hours {
    font-size: .86rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 28px;
}
.sa-mid-cta__divider {
    height: 1px;
    background: rgba(255,255,255,.15);
    margin: 0 0 24px;
}
.sa-mid-cta__points {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sa-mid-cta__points li {
    font-size: .92rem;
    color: rgba(255,255,255,.9);
    padding-left: 26px;
    position: relative;
    line-height: 1.45;
}
.sa-mid-cta__points li::before {
    content: "";
    position: absolute;
    left: 0; top: 4px;
    width: 16px; height: 16px;
    border-radius: 50%;
    border: 1.5px solid #FFB0BF;
    background: transparent;
}
.sa-mid-cta__points li::after {
    content: "";
    position: absolute;
    left: 5px; top: 8px;
    width: 6px; height: 3px;
    border-left: 1.5px solid #FFB0BF;
    border-bottom: 1.5px solid #FFB0BF;
    transform: rotate(-45deg);
}

/* ─────────────────────────────────────────────────────────────
   12. SECTION 9 — PROCESS STEPS
   ───────────────────────────────────────────────────────────── */
.sa-process { background: var(--sa-blue); color: rgba(245,241,234,1); }
.sa-process .sa-eyebrow--blue { color: #FFB0BF; }
.sa-process h2 { color: #fff; margin: 8px 0 56px; max-width: 720px; }
.sa-process h2 .sa-italic { font-style: italic; color: #FFB0BF; font-weight: 600; }

.sa-process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.sa-process__steps::before {
    content: "";
    position: absolute;
    top: 28px; left: 4%; right: 4%;
    height: 1px;
    background: rgba(255,255,255,.15);
    z-index: 0;
}

.sa-step {
    padding: 0 18px 0 0;
    position: relative;
    z-index: 1;
}
.sa-step:last-child { padding-right: 0; }
.sa-step__num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--sa-blue-darker);
    border: 1px solid rgba(255,255,255,.35);
    display: grid;
    place-items: center;
    font-family: var(--sa-font);
    font-weight: 500;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    transition: all .2s;
}
.sa-step--active .sa-step__num,
.sa-step:hover .sa-step__num {
    background: #FFB0BF;
    border-color: #FFB0BF;
    color: var(--sa-ink);
}
.sa-step h3 { font-size: 1.18rem; margin-bottom: 10px; color: #fff; font-weight: 500; }
.sa-step p  { font-size: .94rem; color: rgba(255,255,255,.7); line-height: 1.55; margin: 0 0 12px; }
.sa-step__timing {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(248,182,204,.12);
    color: #FFB0BF;
    font-size: .78rem;
    border-radius: var(--sa-radius-pill);
    letter-spacing: .04em;
}

/* ─────────────────────────────────────────────────────────────
   13. SECTION 10 — TESTIMONIALS
   ───────────────────────────────────────────────────────────── */
.sa-testimonials { background: var(--sa-ivory); }
.sa-testimonials__link {
    display: block;
    margin-top: 8px;
    color: var(--sa-label-muted);
    font-size: .9rem;
    text-decoration: underline;
    transition: color .15s;
}
.sa-testimonials__link:hover { color: var(--sa-blue); }

.sa-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 56px;
}
.sa-test-card {
    background: var(--sa-paper);
    padding: 36px;
    border-radius: var(--sa-radius-sm);
    border: 1px solid var(--sa-rule);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: box-shadow .2s;
}
.sa-test-card:hover { box-shadow: var(--sa-shadow-card); }
.sa-test-card::before {
    content: '"';
    position: absolute;
    top: 20px; left: 24px;
    font-family: Georgia, serif;
    font-size: 4.5rem;
    color: #FFB0BF;
    line-height: 0.7;
}
.sa-test-card blockquote {
    margin: 0;
    font-family: var(--sa-font);
    font-weight: 400;
    font-style: italic;
    font-size: 1.08rem;
    line-height: 1.55;
    color: var(--sa-ink);
    padding-top: 24px;
    margin-bottom: 24px;
    flex: 1;
}
.sa-test-card__footer {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--sa-rule-soft);
    padding-top: 18px;
}
.sa-test-card__stars { color: var(--sa-gold); letter-spacing: 1px; font-size: .95rem; }
.sa-test-card__source { font-size: .82rem; color: var(--sa-muted); }

/* ─────────────────────────────────────────────────────────────
   14. SECTION 11 — FAQ
   ───────────────────────────────────────────────────────────── */
.sa-faq { background: var(--sa-paper); }
.sa-faq__grid {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 80px;
    align-items: start;
}
.sa-faq__head .sa-eyebrow { display: block; margin-bottom: 14px; }
.sa-faq__head h2 { margin-bottom: 18px; }
.sa-faq__head p { color: var(--sa-muted); margin-bottom: 24px; }

.sa-faq__list { display: flex; flex-direction: column; gap: 0; }

.sa-faq__item {
    border-bottom: 1px solid var(--sa-rule);
}
.sa-faq__item:first-child { border-top: 1px solid var(--sa-rule); }

.sa-faq__question {
    width: 100%;
    text-align: left;
    padding: 22px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--sa-font);
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--sa-ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color .15s;
}
.sa-faq__question:hover {
    color: var(--sa-blue);
    background: transparent;
    border: none;
}
.sa-faq__icon {
    flex-shrink: 0;
    font-family: var(--sa-font);
    font-size: 1.5rem;
    color: #FFB0BF;
    font-weight: 300;
    transition: all .2s;
    line-height: 1;
    width: 20px;
    text-align: center;
}
.sa-faq__icon::before { content: "+"; }
.sa-faq__icon::after  { display: none; }

.sa-faq__item--open .sa-faq__icon::before { content: "−"; }
/* .sa-faq__item--open .sa-faq__question {
    background: var(--sa-blue);
    color: #fff;
    padding: 22px 20px;
    border-radius: 6px;
    margin-bottom: 4px;
} */
/* .sa-faq__item--open .sa-faq__icon { color: #fff; } */

/* Reset padding/border on open item's border so card looks clean */
.sa-faq__item--open { border-bottom: none; padding-bottom: 16px; }

.sa-faq__answer {
    padding: 0 0 22px;
    font-size: .98rem;
    color: #404040;
    line-height: 1.65;
}
.sa-faq__answer p { font-size: .98rem; }
.sa-faq__answer[hidden] { display: none; }

/* ─────────────────────────────────────────────────────────────
   15. SECTION 12 — GUIDES
   ───────────────────────────────────────────────────────────── */
.sa-guides { background: var(--sa-ivory); }
.sa-guides__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
}
.sa-guide-card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: var(--sa-paper);
    border: 1px solid var(--sa-rule);
    border-radius: var(--sa-radius-sm);
    text-decoration: none;
    transition: all .25s;
    color: inherit;
}
.sa-guide-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sa-shadow-card);
    border-color: transparent;
}
.sa-guide-card__meta {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--sa-label-muted);
    font-weight: 500;
    margin-bottom: 18px;
}
.sa-guide-card h3 {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--sa-ink);
    flex: 1;
    margin: 0 0 14px;
    min-height: 0;
}
.sa-guide-card__arrow {
    color: var(--sa-ink);
    font-size: 1.1rem;
    margin-top: 8px;
    transition: transform .2s;
}
.sa-guide-card:hover .sa-guide-card__arrow { transform: translateX(4px); }
.sa-guide-card:hover { border-color: var(--sa-ink); }

/* ─────────────────────────────────────────────────────────────
   16. SECTION 13 — FINAL CTA
   ───────────────────────────────────────────────────────────── */
.sa-final-cta {
    background: var(--sa-blue);
    color: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.sa-final-cta::before {
    content: "";
    position: absolute;
    top: -200px; left: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,54,110,.18), transparent 65%);
    pointer-events: none;
}
.sa-final-cta__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.sa-final-cta .sa-eyebrow--accent { color: #FFB0BF; }
.sa-final-cta h2 {
    margin-top: 14px;
    color: #fff;
    margin-bottom: 24px;
    font-size: clamp(1.85rem, 3.6vw, 3rem);
    font-weight: 500;
}
.sa-final-cta h2 .sa-italic { font-style: italic; color: #FFB0BF; font-weight: 600; }
.sa-final-cta__lead {
    color: rgba(255,255,255,.75);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 36px;
}
.sa-final-cta__btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Contact block */
.sa-contact-block {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--sa-radius-sm);
    padding: 32px;
    backdrop-filter: blur(4px);
}
.sa-contact-block__label {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(255,255,255,.5);
    margin-bottom: 8px;
    display: block;
}
.sa-contact-block__phone {
    display: block;
    font-family: var(--sa-font);
    font-size: 1.85rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -.01em;
    text-decoration: none;
    transition: color .15s;
}
.sa-contact-block__phone:hover { color: var(--sa-magenta); }
.sa-contact-block__email {
    display: block;
    font-size: 1rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 20px;
    text-decoration: none;
    word-break: break-word;
    transition: color .15s;
}
.sa-contact-block__email:hover { color: #fff; }
.sa-contact-block__hours {
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.1);
}

/* ─────────────────────────────────────────────────────────────
   17. RESPONSIVE — TABLET (≤1024px)
   ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .sa-page { --sa-section-pad: 72px; --sa-container-px: 24px; }

    .sa-hero { padding: 80px 0 64px; }
    .sa-hero__grid { grid-template-columns: 1fr; gap: 40px; }
    .sa-hero__portrait {
        aspect-ratio: auto;
        max-height: unset;
    }
    .sa-hero__portrait-wrap { order: -1; }

    .sa-trust-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .sa-trust-strip__item { border-left: none; padding-left: 0; }
    .sa-trust-strip__item:nth-child(2n+1) { border-left: none; }

    .sa-situation__grid { grid-template-columns: 1fr; gap: 40px; }
    .sa-meet-david__grid { grid-template-columns: 1fr; gap: 40px; }
    .sa-meet-david__portrait { aspect-ratio: 5/4; max-height: 400px; }

    .sa-outcomes__grid { grid-template-columns: repeat(2, 1fr); }
    .sa-case-studies__grid { grid-template-columns: 1fr; }
    .sa-mid-cta__card { grid-template-columns: 1fr; }
    .sa-mid-cta__call-col { border-left: none; border-top: 1px solid rgba(255,255,255,.1); }
    .sa-process__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .sa-process__steps::before { display: none; }
    .sa-testimonials__grid { grid-template-columns: 1fr; }
    .sa-faq__grid { grid-template-columns: 1fr; gap: 48px; }
    .sa-guides__grid { grid-template-columns: repeat(2, 1fr); }
    .sa-final-cta__grid { grid-template-columns: 1fr; gap: 48px; }
    .sa-section-header { flex-direction: column; align-items: flex-start; gap: 18px; }
    .sa-section-header__right { text-align: left; max-width: 100%; }
}

/* ─────────────────────────────────────────────────────────────
   18. RESPONSIVE — MOBILE (≤768px)
   ───────────────────────────────────────────────────────────── */
   @media (max-width: 768px) {
    .sa-page {
        --sa-section-pad: 56px;
        --sa-container-px: 20px;
        font-size: 16px;
    }
 
    .sa-hero { padding: 60px 0 48px; }
    .sa-hero__ctas { flex-direction: column; }
    .sa-hero__ctas .sa-btn { width: 100%; justify-content: center; }
    .sa-hero__trust { gap: 8px; }
 
    /* Badge: pull out of portrait overlay, sit below image as inline block */
    /* .sa-hero__badge {
        position: static;
        display: inline-flex;
        align-items: center;
        gap: 14px;
        margin-top: 12px;
        width: 100%;
        box-shadow: 0 4px 16px rgba(15,27,45,.12);
    } */
    .sa-hero__badge-num { font-size: 1.5rem; }
    .sa-hero__badge-label { margin-top: 0; font-size: .72rem; }
 
    .sa-trust-strip { padding: 40px 0; }
    .sa-trust-strip__num { font-size: 1.7rem; }
 
    .sa-mid-cta__form-col { padding: 32px 24px 28px; }
    .sa-mid-cta__call-col { padding: 28px 24px; }
    .sa-mid-cta__form .sa-form-row { grid-template-columns: 1fr; }
 
    .sa-outcomes__grid { grid-template-columns: 1fr; }
 
    .sa-process__steps { grid-template-columns: 1fr; }
 
    .sa-guides__grid { grid-template-columns: 1fr; }
 
    .sa-final-cta__btns { flex-direction: column; }
    .sa-final-cta__btns .sa-btn { width: 100%; justify-content: center; }
 
    .sa-meet-david__creds { grid-template-columns: 1fr; }
 
    .sa-video__overlay { padding: 24px; }
    .sa-video__title { font-size: 1rem; }
    .sa-video__play { width: 64px; height: 64px; }
    .sa-video__play svg { width: 22px; height: 22px; }
}
 
/* ─────────────────────────────────────────────────────────────
   19. ACCESSIBILITY & FOCUS STATES
   ───────────────────────────────────────────────────────────── */
.sa-page *:focus-visible {
    outline: 2px solid var(--sa-blue);
    outline-offset: 3px;
    border-radius: 2px;
}
.sa-faq__question:focus-visible { outline-offset: 0; }
 
@media (prefers-reduced-motion: reduce) {
    .sa-page *, .sa-page *::before, .sa-page *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
    .js-anim .sa-trust-strip__item { opacity: 1; transform: none; transition: none; }
}