/* ============================================================
   Client Values First — Landing page
   Branding: navy + light blue + red-orange | Serif headings
   ============================================================ */

:root {
    --navy: #1E3A5F;
    --navy-deep: #142A47;
    --blue: #339FD6;
    --blue-soft: #EAF5FC;
    --blue-mist: #F2F8FC;
    --red: #E84F37;
    --red-dark: #C9402A;
    --red-soft: #FDEEEB;
    --ink: #142033;
    --muted: #6A7A8C;
    --muted-soft: #A6B0BD;
    --line: #ECEFF4;
    --line-soft: #F4F6FA;
    --bg: #FFFFFF;
    --bg-soft: #F7F9FC;
    --bg-tint: #FAFBFD;

    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --serif: var(--sans);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-xs: 0 1px 2px rgba(20, 42, 71, 0.04);
    --shadow-sm: 0 2px 8px rgba(20, 42, 71, 0.05);
    --shadow-md: 0 8px 28px rgba(20, 42, 71, 0.08);
    --shadow-lg: 0 24px 60px rgba(20, 42, 71, 0.12);
    --shadow-red: 0 10px 30px rgba(232, 79, 55, 0.28);

    --ease: cubic-bezier(0.2, 0.7, 0.2, 1);

    --container: 1180px;
}

/* Force Inter Regular only — no bold, italic, or other weights */
*, *::before, *::after,
h1, h2, h3, h4, h5, h6,
strong, b, em, i {
    font-weight: 400 !important;
    font-style: normal;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.65;
    letter-spacing: -0.005em;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color 0.18s var(--ease); }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
button { font-family: inherit; cursor: pointer; }

/* Emphasis via color, not weight */
strong, b {
    color: var(--navy);
    letter-spacing: -0.01em;
}
.accent-text { color: var(--red); }

::selection { background: var(--red); color: #fff; }

/* ---------- LAYOUT ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.section { padding: 96px 0; position: relative; }
@media (max-width: 720px) {
    .section { padding: 64px 0; }
}

/* ---------- TYPOGRAPHY ---------- */
.kicker {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    margin: 0 0 18px;
    padding: 6px 12px;
    background: var(--red-soft);
    border-radius: 999px;
    line-height: 1;
}
.kicker--centered {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    color: var(--navy);
    font-size: clamp(1.9rem, 3.4vw, 2.75rem);
    line-height: 1.12;
    margin: 0 0 28px;
    letter-spacing: -0.025em;
}
.section-title--centered { text-align: center; }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 1rem;
    padding: 15px 28px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    text-align: center;
    transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s var(--ease), color 0.22s var(--ease);
    line-height: 1.1;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: -0.005em;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.22s var(--ease);
}
.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: var(--shadow-red), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 14px 36px rgba(232, 79, 55, 0.36), inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
    background: #fff;
    color: var(--navy);
    border-color: var(--line);
    box-shadow: var(--shadow-xs);
}
.btn-ghost:hover {
    background: var(--bg-soft);
    border-color: var(--navy);
    text-decoration: none;
    transform: translateY(-1px);
}
.btn-sm { padding: 11px 20px; font-size: 0.92rem; }
.btn-lg { padding: 19px 36px; font-size: 1.08rem; }

/* ---------- HEADER ---------- */
.site-header {
    padding: 16px 0;
    border-bottom: 1px solid rgba(236, 239, 244, 0.8);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    background: rgba(255, 255, 255, 0.78);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.logo-link { display: inline-flex; align-items: center; }
.logo { height: 44px; width: auto; }
@media (max-width: 540px) {
    .logo { height: 32px; }
    .btn-sm { padding: 9px 14px; font-size: 0.85rem; }
}

/* ---------- HERO ---------- */
.hero {
    padding: 100px 0 130px;
    position: relative;
    background: var(--bg);
    overflow: hidden;
    isolation: isolate;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 50% at 18% 20%, rgba(51, 159, 214, 0.10) 0%, rgba(51, 159, 214, 0) 60%),
        radial-gradient(50% 45% at 82% 30%, rgba(232, 79, 55, 0.08) 0%, rgba(232, 79, 55, 0) 60%),
        radial-gradient(80% 60% at 50% 100%, rgba(30, 58, 95, 0.05) 0%, rgba(30, 58, 95, 0) 70%);
    z-index: -1;
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 920px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-title {
    color: var(--navy);
    font-size: clamp(2.2rem, 5.6vw, 4rem);
    line-height: 1.04;
    margin: 0 0 26px;
    letter-spacing: -0.035em;
    max-width: 880px;
}
.hero-sub {
    font-size: 1.18rem;
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.6;
    letter-spacing: -0.005em;
}
.hero-cta { display: inline-flex; flex-direction: column; align-items: center; gap: 14px; }
.hero-cta-note { font-size: 0.9rem; color: var(--muted-soft); margin: 0; }

/* Decorative side blocks — refined gradient pill style */
.accent-block {
    position: absolute;
    width: 8px;
    height: 220px;
    border-radius: 999px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.85;
}
.accent-block--left {
    background: linear-gradient(180deg, var(--blue) 0%, rgba(51, 159, 214, 0.25) 100%);
    left: 24px;
}
.accent-block--right {
    background: linear-gradient(180deg, var(--red) 0%, rgba(232, 79, 55, 0.25) 100%);
    right: 24px;
}
@media (max-width: 720px) {
    .hero { padding: 64px 0 80px; }
    .accent-block { width: 4px; height: 130px; left: 10px; }
    .accent-block--right { right: 10px; }
}

/* ---------- PAIN SECTION ---------- */
.section--pain { background: var(--bg); position: relative; overflow: hidden; }
.pain-inner {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.pain-image {
    position: relative;
}
.pain-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3.2;
    object-fit: cover;
    width: 100%;
}
.pain-image::after {
    content: "";
    position: absolute;
    inset: -16px -16px auto auto;
    width: 96px;
    height: 96px;
    background: var(--red-soft);
    border-radius: 50%;
    z-index: -1;
}
.pain-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pain-list li {
    position: relative;
    padding: 14px 0 14px 36px;
    border-bottom: 1px solid var(--line);
    font-size: 1.03rem;
    line-height: 1.5;
    transition: padding-left 0.22s var(--ease);
}
.pain-list li:last-child { border-bottom: none; }
.pain-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22px;
    width: 18px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transition: width 0.22s var(--ease);
}
.pain-list li:hover::before { width: 26px; }
@media (max-width: 820px) {
    .pain-inner { grid-template-columns: 1fr; gap: 40px; }
    .pain-image::after { width: 64px; height: 64px; }
}

/* Pain section side accent blocks — refined */
.section--pain::before,
.section--pain::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 240px;
    border-radius: 999px;
    z-index: 1;
    opacity: 0.85;
}
.section--pain::before {
    background: linear-gradient(180deg, var(--blue) 0%, rgba(51, 159, 214, 0.25) 100%);
    left: 24px;
}
.section--pain::after {
    background: linear-gradient(180deg, var(--red) 0%, rgba(232, 79, 55, 0.25) 100%);
    right: 24px;
}
@media (max-width: 720px) {
    .section--pain::before, .section--pain::after { width: 4px; height: 130px; left: 10px; }
    .section--pain::after { right: 10px; }
}

/* ---------- BRIDGE ---------- */
.section--bridge { background: var(--bg-soft); }
.bridge-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.bridge-text {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--ink);
    margin: 0 0 18px;
}
.bridge-text:last-child { margin-bottom: 0; }

/* ---------- APPROACH (4 cards) ---------- */
.section--approach { background: #fff; }
.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 48px;
}
.approach-card {
    position: relative;
    padding-top: 28px;
    transition: transform 0.3s var(--ease);
}
.approach-card:hover { transform: translateY(-6px); }
/* The "stacked" offset duplicate behind the card */
.approach-card::after {
    content: "";
    position: absolute;
    inset: 32px -10px 0 14px;
    background: linear-gradient(180deg, var(--blue) 0%, rgba(51, 159, 214, 0.6) 100%);
    border-radius: var(--radius-lg);
    z-index: 0;
    opacity: 0.85;
    transition: inset 0.3s var(--ease), opacity 0.3s var(--ease);
}
.approach-card:hover::after { inset: 36px -14px 0 18px; opacity: 1; }
.approach-card-inner {
    position: relative;
    z-index: 2;
    background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 66px 28px 36px;
    min-height: 290px;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.3s var(--ease);
}
.approach-card:hover .approach-card-inner { box-shadow: var(--shadow-lg); }
.approach-badge {
    position: absolute;
    top: 0;
    left: 26px;
    z-index: 3;
    width: 56px;
    height: 56px;
    background: var(--red);
    color: #fff;
    border-radius: 18px;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-red);
    transition: transform 0.3s var(--ease);
}
.approach-card:hover .approach-badge { transform: rotate(-6deg) scale(1.04); }
.approach-title {
    font-size: 1.18rem;
    margin: 0 0 14px;
    line-height: 1.3;
    color: #fff;
    letter-spacing: -0.015em;
}
.approach-sub {
    display: block;
    font-family: var(--sans);
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
    letter-spacing: 0;
}
.approach-desc {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}
.approach-conclusion {
    max-width: 760px;
    margin: 40px auto 0;
    text-align: center;
    font-size: 1.12rem;
    line-height: 1.55;
    color: var(--navy);
    font-weight: 500;
}
@media (max-width: 980px) {
    .approach-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .approach-grid { grid-template-columns: 1fr; }
}

/* ---------- FORM SECTION ---------- */
.section--form { background: var(--bg-soft); }
.form-container { max-width: 880px; }
.form-intro {
    text-align: center;
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
}
.form-wrapper {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 56px 52px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    position: relative;
}
.form-wrapper::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(180deg, rgba(51, 159, 214, 0.16), rgba(232, 79, 55, 0.0) 70%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}
@media (max-width: 640px) {
    .form-wrapper { padding: 28px 22px; border-radius: var(--radius-lg); }
}

/* Progress bar */
.form-progress {
    margin-bottom: 40px;
    position: relative;
}
.form-progress-bar {
    height: 6px;
    background: var(--line);
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    margin-bottom: 26px;
}
.form-progress-bar::after {
    content: "";
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 25%;
    background: linear-gradient(90deg, var(--blue) 0%, var(--red) 100%);
    border-radius: 999px;
    transition: width 0.45s var(--ease);
    box-shadow: 0 1px 6px rgba(232, 79, 55, 0.3);
}
.form-progress-bar[data-progress="2"]::after { width: 50%; }
.form-progress-bar[data-progress="3"]::after { width: 75%; }
.form-progress-bar[data-progress="4"]::after { width: 100%; }

.form-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.form-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--muted);
    transition: color 0.2s ease;
}
.form-step .step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--line);
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    letter-spacing: -0.01em;
}
.form-step.is-active { color: var(--navy); }
.form-step.is-active .step-num {
    background: var(--red);
    color: #fff;
    transform: scale(1.08);
    box-shadow: var(--shadow-red);
}
.form-step.is-done .step-num { background: var(--navy); color: #fff; }
@media (max-width: 640px) {
    .step-label { display: none; }
    .form-steps { justify-content: center; gap: 14px; }
}

/* Fieldsets (steps) */
.form-fieldset {
    border: none;
    padding: 0;
    margin: 0;
    display: none;
}
.form-fieldset.is-active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}
.form-legend {
    font-size: 1.6rem;
    color: var(--navy);
    margin: 0 0 10px;
    padding: 0;
    line-height: 1.2;
    letter-spacing: -0.025em;
}
.form-helper {
    color: var(--muted);
    font-size: 0.96rem;
    margin: 0 0 28px;
}
.form-group { margin: 0 0 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 540px) {
    .form-row { grid-template-columns: 1fr; }
}
.form-label {
    display: block;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.98rem;
    margin: 0 0 12px;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    font-family: var(--sans);
    font-size: 1rem;
    padding: 15px 18px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--bg-tint);
    color: var(--ink);
    transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s var(--ease);
    letter-spacing: -0.005em;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted-soft); }
.form-input:hover, .form-select:hover, .form-textarea:hover { background: #fff; border-color: #D8DDE6; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(51, 159, 214, 0.14);
}
.form-select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path fill='%231E3A5F' d='M6 8 0 0h12z'/></svg>"); background-repeat: no-repeat; background-position: right 18px center; background-size: 10px; padding-right: 44px; }
.form-textarea { resize: vertical; min-height: 90px; }

/* Radio cards */
.radio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}
.radio-grid--horizontal { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
.radio-card {
    position: relative;
    display: block;
    cursor: pointer;
}
.radio-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.radio-card span {
    display: block;
    padding: 14px 14px;
    text-align: center;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--bg-tint);
    font-size: 0.95rem;
    color: var(--ink);
    transition: all 0.22s var(--ease);
    letter-spacing: -0.005em;
}
.radio-card:hover span { border-color: var(--blue); background: var(--blue-mist); transform: translateY(-1px); }
.radio-card input:checked + span {
    border-color: var(--red);
    background: var(--red);
    color: #fff;
    box-shadow: var(--shadow-red);
}

/* Checkbox cards */
.checkbox-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
}
.checkbox-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--bg-tint);
    cursor: pointer;
    transition: all 0.22s var(--ease);
    line-height: 1.45;
}
.checkbox-card:hover { border-color: var(--blue); background: var(--blue-mist); transform: translateY(-1px); }
.checkbox-card input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--red);
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
}
.checkbox-card span { font-size: 0.98rem; color: var(--ink); letter-spacing: -0.005em; }
.checkbox-card:has(input:checked) {
    border-color: var(--red);
    background: var(--red-soft);
    box-shadow: 0 4px 14px rgba(232, 79, 55, 0.10);
}
.checkbox-card--consent {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0 0 24px;
}
.checkbox-card--consent span { font-size: 0.88rem; }

/* Form actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
    gap: 12px;
    flex-wrap: wrap;
}
.form-actions .btn-primary { margin-left: auto; }

/* Success / Error states */
.form-fieldset--success.is-active,
.form-fieldset--error.is-active { display: block; }
.success-state, .error-state { text-align: center; padding: 30px 0; }
.success-icon {
    width: 84px; height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: #fff;
    font-size: 2.5rem;
    line-height: 84px;
    margin: 0 auto 24px;
    box-shadow: 0 18px 40px rgba(232, 79, 55, 0.34), inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
}
.success-icon::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--red-soft);
    z-index: -1;
}
.success-title, .error-title {
    font-size: 1.9rem;
    color: var(--navy);
    margin: 0 0 14px;
    letter-spacing: -0.025em;
    line-height: 1.15;
}
.success-text { font-size: 1.08rem; line-height: 1.55; margin: 0 0 14px; }
.success-subtext { color: var(--muted); font-size: 0.96rem; margin: 0; }
.error-state .btn { margin-top: 18px; }

/* Invalid state */
.form-input.is-invalid,
.form-select.is-invalid,
.form-textarea.is-invalid {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(232, 79, 55, 0.10);
}
.form-error-message {
    color: var(--red);
    font-size: 0.88rem;
    margin: 8px 0 0;
    font-weight: 500;
}

/* ---------- FAQ ---------- */
.section--faq { background: var(--bg); }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-item {
    border: 1.5px solid var(--line);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    background: var(--bg-tint);
    transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s var(--ease);
    overflow: hidden;
}
.faq-item:hover { background: #fff; border-color: #D8DDE6; }
.faq-item[open] {
    border-color: rgba(51, 159, 214, 0.4);
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.faq-item summary {
    padding: 22px 60px 22px 26px;
    cursor: pointer;
    color: var(--navy);
    list-style: none;
    position: relative;
    font-size: 1.05rem;
    letter-spacing: -0.015em;
    transition: color 0.22s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--red-soft);
    transition: transform 0.3s var(--ease), background 0.22s var(--ease);
}
.faq-item summary::before {
    content: "";
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-right: 1.5px solid var(--red);
    border-bottom: 1.5px solid var(--red);
    transform: translateY(-70%) rotate(45deg);
    z-index: 2;
    transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { background: var(--red); }
.faq-item[open] summary::before {
    border-color: #fff;
    transform: translateY(-30%) rotate(-135deg);
}
.faq-item p {
    padding: 0 26px 24px;
    margin: 0;
    color: var(--ink);
    line-height: 1.65;
}

/* ---------- FINAL CTA ---------- */
.section--final-cta {
    background: var(--navy);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.section--final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(50% 60% at 50% 0%, rgba(232, 79, 55, 0.22) 0%, rgba(232, 79, 55, 0) 60%),
        radial-gradient(60% 60% at 0% 100%, rgba(51, 159, 214, 0.18) 0%, rgba(51, 159, 214, 0) 60%),
        radial-gradient(60% 60% at 100% 80%, rgba(232, 79, 55, 0.10) 0%, rgba(232, 79, 55, 0) 60%);
    z-index: -1;
}
.final-cta-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.final-cta-title, .section--final-cta .section-title { color: #fff; }
.section--final-cta .accent-text { color: var(--red); }
.section--final-cta .btn-primary { box-shadow: 0 14px 36px rgba(232, 79, 55, 0.42); }

/* ---------- PAIN COST CALLOUT ---------- */
.pain-cost {
    margin: 28px 0 8px;
    padding: 18px 22px;
    background: rgba(232, 79, 55, 0.06);
    border-left: 4px solid var(--red);
    border-radius: var(--radius-md);
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--ink);
}
.pain-cost strong { color: var(--navy); }
.pain-cost-note {
    margin: 8px 4px 0;
    font-size: 0.82rem;
    color: var(--muted);
    font-style: italic;
}

/* ---------- BRIDGE APPARTENANCE LINE ---------- */
.bridge-text--belonging {
    margin: 56px auto 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    max-width: 720px;
    text-align: center;
    color: var(--navy);
    font-size: clamp(1.15rem, 1.7vw, 1.3rem);
    line-height: 1.5;
    letter-spacing: -0.015em;
    position: relative;
}
.bridge-text--belonging::before {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    background: var(--red);
    margin: 0 auto 28px;
    border-radius: 2px;
}
@media (max-width: 720px) {
    .bridge-text--belonging { margin-top: 40px; font-size: 1.08rem; }
    .bridge-text--belonging::before { margin-bottom: 20px; }
}

/* ---------- ÉCART SECTION ---------- */
.section--ecart { background: #fff; }
.ecart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 40px 0 0;
}
.ecart-col {
    padding: 34px 30px;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--line);
}
.ecart-col--before { background: var(--bg-soft); }
.ecart-col--after {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    box-shadow: var(--shadow-md);
    position: relative;
}
.ecart-col--after::before {
    content: "→";
    position: absolute;
    top: 28px;
    left: -22px;
    width: 44px;
    height: 44px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 6px 18px rgba(232, 79, 55, 0.32);
}
.ecart-col-title {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 0 18px;
    line-height: 1.2;
}
.ecart-col--before .ecart-col-title { color: var(--muted); }
.ecart-col--after .ecart-col-title { color: #fff; }
.ecart-list { list-style: none; padding: 0; margin: 0; }
.ecart-list li {
    position: relative;
    padding: 12px 0 12px 28px;
    border-bottom: 1px solid;
    font-size: 0.98rem;
    line-height: 1.5;
}
.ecart-list li:last-child { border-bottom: none; }
.ecart-col--before .ecart-list li { border-color: var(--line); color: var(--ink); }
.ecart-col--after .ecart-list li { border-color: rgba(255,255,255,0.10); color: rgba(255,255,255,0.92); }
.ecart-col--before .ecart-list li::before {
    content: "×";
    position: absolute; left: 0; top: 11px;
    width: 18px; height: 18px;
    color: var(--muted); font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
}
.ecart-col--after .ecart-list li::before {
    content: "";
    position: absolute; left: 0; top: 17px;
    width: 14px; height: 8px;
    border-left: 2.5px solid var(--red);
    border-bottom: 2.5px solid var(--red);
    transform: rotate(-45deg);
}
.ecart-cost {
    margin-top: 36px;
    text-align: center;
    background: var(--bg-soft);
    border: 1.5px solid var(--line);
    border-left: 4px solid var(--red);
    border-radius: var(--radius-md);
    padding: 24px 28px;
}
.ecart-cost p { margin: 0; font-size: 1.06rem; line-height: 1.55; color: var(--ink); }
.ecart-cost p strong { color: var(--navy); }
.ecart-cost-note {
    margin-top: 8px !important;
    font-size: 0.84rem !important;
    color: var(--muted) !important;
    font-style: italic;
}
@media (max-width: 720px) {
    .ecart-grid { grid-template-columns: 1fr; gap: 18px; }
    .ecart-col { padding: 26px 22px; }
    .ecart-col--after::before { display: none; }
}

/* ---------- APPROACH OUTCOME (per card) ---------- */
.approach-outcome {
    margin: 18px 0 0;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.9rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
}
.approach-outcome span {
    display: inline;
    color: var(--red);
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-right: 4px;
}

/* ---------- FINAL CTA EXTRAS ---------- */
.final-cta-sub {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.55;
    margin: 0 auto 28px;
    max-width: 620px;
}
.final-cta-note {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.86rem;
    margin: 16px 0 0;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.62);
    padding: 36px 0;
    font-size: 0.9rem;
    letter-spacing: -0.005em;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}
.footer-inner p { margin: 0; }
.footer-contact { color: rgba(255, 255, 255, 0.88); }
.footer-contact a { color: inherit; }
.footer-contact a:hover { color: #fff; }
