/* =====================================================
   MotivatiebriefPro — Shared styles
   ===================================================== */

:root {
    --ink: #0B1733;
    --ink-soft: #1f2e54;
    --paper: #FBFAF7;
    --paper-warm: #F4F1EA;
    --paper-line: #E8E3D8;

    --accent: #2563EB;
    --accent-deep: #1E40AF;
    --accent-bright: #3B82F6;
    --accent-electric: #60A5FA;
    --accent-soft: rgba(37, 99, 235, 0.08);
    --accent-mid: rgba(37, 99, 235, 0.16);

    --success: #0E8A5F;
    --success-light: #4ABF8F;
    --success-soft: rgba(14, 138, 95, 0.10);

    --highlight: #DBEAFE;
    --highlight-soft: rgba(96, 165, 250, 0.22);

    --muted: #4F5A6E;
    --muted-soft: #7A8499;
    --line: rgba(11, 23, 51, 0.08);
    --line-strong: rgba(11, 23, 51, 0.14);

    --shadow-xs: 0 1px 2px rgba(11, 23, 51, 0.04);
    --shadow-sm: 0 2px 8px rgba(11, 23, 51, 0.06);
    --shadow-md: 0 8px 24px rgba(11, 23, 51, 0.08);
    --shadow-lg: 0 24px 60px rgba(11, 23, 51, 0.12);
    --shadow-xl: 0 40px 100px rgba(11, 23, 51, 0.15);
    --shadow-blue: 0 14px 40px rgba(37, 99, 235, 0.28);
    --shadow-blue-lg: 0 24px 60px rgba(37, 99, 235, 0.35);

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

    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonials,
.compare-section,
.faq-section,
.seo-links-section,
.final-cta,
footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    background-color: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    font-size: 18px;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 12% 8%, rgba(37, 99, 235, 0.13), transparent 38%),
        radial-gradient(circle at 88% 18%, rgba(96, 165, 250, 0.11), transparent 42%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.06), transparent 55%),
        radial-gradient(circle at 8% 78%, rgba(37, 99, 235, 0.10), transparent 45%),
        radial-gradient(circle at 92% 92%, rgba(96, 165, 250, 0.12), transparent 40%),
        linear-gradient(180deg, #F4F8FF 0%, var(--paper) 30%, #EEF4FE 70%, var(--paper) 100%);
    pointer-events: none;
}
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        repeating-radial-gradient(circle at 20% 30%, rgba(11, 23, 51, 0.012) 0, rgba(11, 23, 51, 0.012) 1px, transparent 1px, transparent 3px),
        repeating-radial-gradient(circle at 80% 70%, rgba(11, 23, 51, 0.012) 0, rgba(11, 23, 51, 0.012) 1px, transparent 1px, transparent 3px);
    opacity: 0.6;
    pointer-events: none;
}

.ambient-particles {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
.ambient-particles span {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.5), rgba(37, 99, 235, 0));
    filter: blur(1px);
    animation: particleFloat 20s ease-in-out infinite;
    opacity: 0.7;
}
.ambient-particles span:nth-child(1) { width: 8px; height: 8px; top: 15%; left: 20%; animation-delay: 0s; animation-duration: 22s; }
.ambient-particles span:nth-child(2) { width: 6px; height: 6px; top: 65%; left: 80%; animation-delay: -3s; animation-duration: 18s; }
.ambient-particles span:nth-child(3) { width: 10px; height: 10px; top: 40%; left: 65%; animation-delay: -7s; animation-duration: 25s; background: radial-gradient(circle, rgba(96, 165, 250, 0.5), transparent); }
.ambient-particles span:nth-child(4) { width: 5px; height: 5px; top: 80%; left: 15%; animation-delay: -10s; animation-duration: 20s; }
.ambient-particles span:nth-child(5) { width: 7px; height: 7px; top: 25%; left: 90%; animation-delay: -5s; animation-duration: 24s; background: radial-gradient(circle, rgba(96, 165, 250, 0.5), transparent); }
.ambient-particles span:nth-child(6) { width: 9px; height: 9px; top: 55%; left: 8%; animation-delay: -12s; animation-duration: 21s; }
@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.4; }
    25% { transform: translate(30px, -40px); opacity: 0.8; }
    50% { transform: translate(-20px, -80px); opacity: 0.6; }
    75% { transform: translate(-50px, -30px); opacity: 0.7; }
}
@media (prefers-reduced-motion: reduce) {
    .ambient-particles { display: none; }
}
@media (max-width: 768px) {
    .ambient-particles { display: none; }
}

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.16), rgba(96, 165, 250, 0.08) 35%, rgba(37, 99, 235, 0) 65%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease;
    opacity: 0;
    mix-blend-mode: multiply;
    will-change: transform;
}
body.cursor-active .cursor-glow { opacity: 1; }
@media (max-width: 768px) {
    .cursor-glow { display: none; }
}

a { color: inherit; text-decoration: none; transition: opacity 0.2s ease; }
a.inline-link { color: var(--accent); font-weight: 500; border-bottom: 1px solid rgba(37, 99, 235, 0.3); }
a.inline-link:hover { border-bottom-color: var(--accent); }
ul, ol { list-style: none; }

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--ink);
    color: #fff;
    padding: 0.85rem 1.4rem;
    z-index: 9999;
    border-radius: 0 0 8px 0;
    font-weight: 600;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

.font-display { font-family: var(--font-display); font-weight: 400; }

h1 {
    font-family: var(--font-display);
    font-size: clamp(2.85rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -0.025em;
    font-weight: 400;
    color: var(--ink);
}
h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
h2 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.5vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 400;
    color: var(--ink);
}
h2 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: -0.01em;
    color: var(--ink);
}
p { color: var(--muted); font-size: 1.08rem; line-height: 1.65; }
p.lead { font-size: 1.25rem; color: var(--ink-soft); line-height: 1.6; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
}
.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--accent);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; width: 100%; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 2rem; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.15rem 2.1rem;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    cursor: pointer;
    border: none;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.2s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    color: #fff;
    box-shadow: var(--shadow-blue);
}
.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s var(--ease);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue-lg);
}
.btn-primary:hover::before { left: 100%; }
.btn-secondary {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line-strong);
}
.btn-secondary:hover {
    border-color: var(--ink);
    background: var(--paper-warm);
}
.btn-lg { padding: 1.35rem 2.5rem; font-size: 1.12rem; }
.btn-arrow { transition: transform 0.3s var(--ease); position: relative; z-index: 1; }
.btn:hover .btn-arrow { transform: translateX(5px); }

/* ===== Header ===== */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1rem 0;
    background: rgba(251, 250, 247, 0.55);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, background 0.3s ease, padding 0.3s ease;
}
header.scrolled {
    border-bottom-color: var(--line);
    background: rgba(251, 250, 247, 0.82);
    padding: 0.75rem 0;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.logo em {
    color: var(--accent);
    font-style: italic;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}
.nav-link {
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.2s;
    position: relative;
}
.nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
    padding: 0.7rem 1.35rem;
    font-size: 0.98rem;
    background: var(--ink);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover {
    background: var(--accent);
    transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
    padding: 8rem 0 3rem;
    position: relative;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}
.hero-orb.orb-1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.28), transparent 70%);
    top: 5%;
    left: -12%;
    animation: orbFloat 20s ease-in-out infinite;
}
.hero-orb.orb-2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.24), transparent 70%);
    top: 25%;
    right: -10%;
    animation: orbFloat 25s ease-in-out infinite reverse;
}
.hero-orb.orb-3 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18), transparent 70%);
    bottom: -10%;
    left: 35%;
    animation: orbFloat 28s ease-in-out infinite;
    animation-delay: -8s;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -40px) scale(1.08); }
    66% { transform: translate(-30px, 30px) scale(0.95); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow-stack {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.live-dot {
    width: 9px;
    height: 9px;
    background: var(--success);
    border-radius: 50%;
    position: relative;
}
.live-dot::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--success);
    opacity: 0.3;
    animation: livePulse 2s infinite;
}
@keyframes livePulse {
    0% { transform: scale(0.8); opacity: 0.4; }
    100% { transform: scale(2.2); opacity: 0; }
}
.live-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--muted);
}
.live-text strong { color: var(--ink); font-weight: 600; }

.hero h1 { margin-bottom: 1.5rem; }
.hero .lead { margin-bottom: 2rem; max-width: 520px; }

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.price-microcopy {
    font-size: 0.98rem;
    color: var(--muted);
}
.price-microcopy strong { color: var(--ink); font-weight: 600; }

.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}
.trust-avatars {
    display: flex;
    align-items: center;
}
.trust-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--paper);
    background: linear-gradient(135deg, var(--accent), var(--accent-electric));
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    transition: transform 0.3s var(--ease);
}
.trust-avatar:first-child { margin-left: 0; }
.trust-avatar:nth-child(2) { background: linear-gradient(135deg, #4A6FE8, #7B9BF0); }
.trust-avatar:nth-child(3) { background: linear-gradient(135deg, var(--success), #4ABF8F); }
.trust-avatar:nth-child(4) { background: linear-gradient(135deg, #8B5CF6, #B39AF8); }
.trust-avatars:hover .trust-avatar { transform: translateX(-2px); }
.trust-avatars:hover .trust-avatar:nth-child(2) { transform: translateX(2px); }
.trust-avatars:hover .trust-avatar:nth-child(3) { transform: translateX(6px); }
.trust-avatars:hover .trust-avatar:nth-child(4) { transform: translateX(10px); }

.trust-stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.stars {
    display: inline-flex;
    gap: 1px;
    color: #F5A623;
    font-size: 1rem;
}
.trust-stars-text {
    font-size: 0.95rem;
    color: var(--muted);
}
.trust-stars-text strong { color: var(--ink); }

/* ===== Transform stage ===== */
.transform-stage {
    position: relative;
    min-height: 460px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.75rem;
    align-items: center;
    padding: 40px 15px 30px;
    overflow: visible;
}
.transform-stage::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 80%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(37, 99, 235, 0.14), transparent 55%),
        radial-gradient(ellipse at 75% 55%, rgba(96, 165, 250, 0.12), transparent 55%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}
.transform-stage > * { position: relative; z-index: 1; }

.input-card {
    background: #fff;
    border: 1px solid rgba(11, 23, 51, 0.06);
    border-radius: 20px;
    padding: 1.2rem 1.2rem 1rem;
    box-shadow:
        0 1px 2px rgba(11, 23, 51, 0.04),
        0 4px 12px rgba(11, 23, 51, 0.06),
        0 16px 40px -8px rgba(11, 23, 51, 0.16),
        0 32px 80px -12px rgba(11, 23, 51, 0.22),
        inset 0 0 0 1px rgba(255, 255, 255, 0.9);
    position: relative;
    transform: rotate(-1.5deg);
    min-height: 380px;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.input-card:hover {
    transform: rotate(-1deg) translateY(-4px);
    box-shadow:
        0 1px 2px rgba(11, 23, 51, 0.04),
        0 6px 16px rgba(11, 23, 51, 0.08),
        0 24px 50px -8px rgba(11, 23, 51, 0.22),
        0 44px 100px -12px rgba(37, 99, 235, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}
.input-card::before {
    content: "";
    position: absolute;
    top: 0; left: 12%; right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
    border-radius: 2px;
}

.input-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 1.1rem;
    border-bottom: 1px solid var(--line);
}
.input-card-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.input-card-title-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.input-card-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--muted);
    background: var(--paper-warm);
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
}
.input-card-status-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 3px rgba(14, 138, 95, 0.18);
}

.input-card-fieldlabel {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-soft);
    margin-bottom: 0.6rem;
}

.input-vacancy {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 0.95rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 0.92rem;
    color: var(--ink);
    margin-bottom: 1.25rem;
    position: relative;
}
.input-vacancy-icon { color: var(--muted-soft); flex-shrink: 0; }
.input-vacancy-text {
    flex: 1;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    border-right: 1.5px solid var(--accent);
    width: 0;
    animation: typeInVacancy 1.2s steps(28) 0.4s forwards,
               cursorBlink 0.8s 1.6s infinite;
}

.input-tags-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.input-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 0.95rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 0.92rem;
    color: var(--ink);
    opacity: 0;
    transform: translateY(6px);
    animation: tagAppear 0.4s var(--ease-smooth) forwards;
    width: fit-content;
    max-width: 100%;
}
.input-tag-icon {
    width: 18px; height: 18px;
    border-radius: 5px;
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.input-tag.t1 { animation-delay: 2.0s; }
.input-tag.t2 { animation-delay: 2.6s; }
.input-tag.t3 { animation-delay: 3.2s; }

@keyframes tagAppear {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes typeInVacancy {
    from { width: 0; }
    to { width: 100%; }
}
@keyframes cursorBlink {
    50% { border-right-color: transparent; }
}

.input-card-footer {
    margin-top: auto;
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--muted);
}
.input-card-footer-left {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.input-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    background: linear-gradient(135deg, var(--ink), var(--ink-soft));
    color: #fff;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    opacity: 0;
    animation: tagAppear 0.4s var(--ease-smooth) 3.8s forwards;
}

.transform-arrow {
    position: relative;
    width: 70px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.transform-chevron {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
}
.transform-chevron svg {
    width: 18px;
    height: 18px;
    color: var(--muted-soft);
    opacity: 0.4;
    animation: chevronPulse 2.4s ease-in-out infinite;
}
.transform-chevron svg:nth-child(1) { animation-delay: 0s; }
.transform-chevron svg:nth-child(2) { animation-delay: 0.2s; }
.transform-chevron svg:nth-child(3) { animation-delay: 0.4s; }

@keyframes chevronPulse {
    0%, 100% { opacity: 0.2; color: var(--muted-soft); }
    50% { opacity: 1; color: var(--accent); }
}

.letter-card {
    background: #fff;
    border: 1px solid rgba(11, 23, 51, 0.06);
    border-radius: 20px;
    padding: 1.3rem 1.4rem 0;
    box-shadow:
        0 1px 2px rgba(11, 23, 51, 0.04),
        0 6px 16px rgba(11, 23, 51, 0.07),
        0 24px 50px -10px rgba(11, 23, 51, 0.18),
        0 48px 120px -20px rgba(11, 23, 51, 0.28),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95);
    position: relative;
    transform: rotate(1.5deg);
    min-height: 380px;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.letter-card:hover {
    transform: rotate(1deg) translateY(-4px);
    box-shadow:
        0 1px 2px rgba(11, 23, 51, 0.04),
        0 8px 20px rgba(11, 23, 51, 0.09),
        0 32px 60px -10px rgba(11, 23, 51, 0.24),
        0 60px 140px -20px rgba(37, 99, 235, 0.32),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95);
}

.letter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0 0.9rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}
.letter-header-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--ink);
}
.letter-header-date {
    font-size: 0.78rem;
    color: var(--muted-soft);
    font-variant-numeric: tabular-nums;
}

.letter-body {
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--ink-soft);
    flex: 1;
    position: relative;
    padding-bottom: 90px;
}
.letter-greeting {
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--ink);
    opacity: 0;
    animation: letterFade 0.5s var(--ease) 4.6s forwards;
}
.letter-paragraph {
    margin-bottom: 0.8rem;
    opacity: 0;
    animation: letterFade 0.5s var(--ease) forwards;
}
.letter-paragraph.p1 { animation-delay: 5.0s; }
.letter-paragraph.p2 { animation-delay: 5.6s; }

@keyframes letterFade {
    to { opacity: 1; }
}

.highlight {
    background: var(--highlight-soft);
    padding: 0 4px;
    border-radius: 3px;
    font-weight: 500;
    color: var(--ink);
    opacity: 0;
    animation: highlightPop 0.5s var(--ease) forwards;
}
.highlight.h1 { animation-delay: 5.2s; }
.highlight.h2 { animation-delay: 5.8s; }
.highlight.h3 { animation-delay: 6.2s; }
@keyframes highlightPop {
    0% { opacity: 0; background: transparent; }
    50% { background: var(--highlight); }
    100% { opacity: 1; background: var(--highlight-soft); }
}

.letter-fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 110px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.85) 45%,
        #fff 100%);
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0.9rem;
    opacity: 0;
    animation: fadeInDelayed 0.6s var(--ease) 6.8s forwards;
}
.letter-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.95rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--muted);
    box-shadow: var(--shadow-sm);
}
.letter-meta-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--success);
}
.letter-meta strong { color: var(--ink); font-weight: 600; }
@keyframes fadeInDelayed { to { opacity: 1; } }

.letter-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--success), #4ABF8F);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    box-shadow:
        0 2px 4px rgba(14, 138, 95, 0.15),
        0 6px 14px rgba(14, 138, 95, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    opacity: 0;
    transform: scale(0.8);
    animation: badgePop 0.5s var(--ease-bounce) 7.2s forwards;
    z-index: 4;
    white-space: nowrap;
    letter-spacing: -0.005em;
}
.letter-badge svg { width: 11px; height: 11px; flex-shrink: 0; }
@keyframes badgePop {
    to { opacity: 1; transform: scale(1); }
}

/* ===== Logo bar ===== */
.logo-bar {
    padding: 2.5rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-top: 2rem;
    position: relative;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.025) 50%, transparent);
}
.logo-bar::before, .logo-bar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-mid), transparent);
    opacity: 0.6;
}
.logo-bar::before { top: 0; }
.logo-bar::after { bottom: 0; }
.logo-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.logo-bar-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    flex-shrink: 0;
}
.logo-bar-items {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    color: var(--muted);
}
.logo-bar-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.72;
    transition: opacity 0.2s, color 0.2s, transform 0.2s;
}
.logo-bar-item:hover {
    opacity: 1;
    color: var(--accent);
    transform: translateY(-2px);
}
.logo-bar-item svg { width: 18px; height: 18px; }

/* ===== Sections ===== */
section {
    padding: 6rem 0;
    position: relative;
}

section:not(.section-warm):not(.section-dark):not(.testimonials):not(.faq-section):not(.hero) {
    background:
        radial-gradient(ellipse at top right, rgba(37, 99, 235, 0.04), transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(96, 165, 250, 0.05), transparent 55%),
        linear-gradient(180deg, transparent 0%, rgba(219, 234, 254, 0.18) 50%, transparent 100%);
}

section:not(.section-warm):not(.section-dark):not(.testimonials):not(.faq-section):not(.hero)::before {
    content: "";
    position: absolute;
    top: 8%;
    right: -10%;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}
section:not(.section-warm):not(.section-dark):not(.testimonials):not(.faq-section):not(.hero)::after {
    content: "";
    position: absolute;
    bottom: 5%;
    left: -8%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.07), transparent 70%);
    filter: blur(45px);
    pointer-events: none;
    z-index: 0;
}
section:not(.section-warm):not(.section-dark):not(.testimonials):not(.faq-section):not(.hero) > * {
    position: relative;
    z-index: 1;
}

section.section-warm {
    background:
        radial-gradient(ellipse at 20% 30%, rgba(37, 99, 235, 0.05), transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(96, 165, 250, 0.05), transparent 50%),
        var(--paper-warm);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
section.section-dark {
    background: var(--ink);
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}
section.section-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(37, 99, 235, 0.28), transparent 50%),
        radial-gradient(ellipse at 85% 50%, rgba(96, 165, 250, 0.18), transparent 50%);
    pointer-events: none;
}
section.section-dark > * { position: relative; z-index: 1; }

.section-header {
    max-width: 720px;
    margin: 0 auto 4rem;
    text-align: center;
    position: relative;
}
.section-header::before {
    content: "";
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.5;
}
.section-header .eyebrow { margin-bottom: 1.25rem; }
.section-header .eyebrow::before { display: none; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p {
    font-size: 1.15rem;
    color: var(--muted);
}
.section-number {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--muted-soft);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}
.section-number::before { content: "—  "; opacity: 0.5; }
.section-number::after { content: "  —"; opacity: 0.5; }
section.section-dark .section-header h2 { color: #fff; }
section.section-dark .section-header p { color: rgba(255,255,255,0.7); }
section.section-dark .section-number { color: rgba(255,255,255,0.4); }
section.section-dark .eyebrow { color: var(--accent-electric); }
section.section-dark .eyebrow::before { background: var(--accent-electric); }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Live feed ticker ===== */
.live-feed-strip {
    background:
        linear-gradient(90deg, rgba(37, 99, 235, 0.06), rgba(96, 165, 250, 0.04) 50%, rgba(37, 99, 235, 0.06)),
        var(--paper-warm);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 0.95rem 0;
    overflow: hidden;
    position: relative;
}
.live-feed-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.live-feed-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--success);
}
.live-feed-label-dot {
    width: 9px; height: 9px;
    background: var(--success);
    border-radius: 50%;
    position: relative;
}
.live-feed-label-dot::after {
    content: "";
    position: absolute;
    inset: -3px;
    background: var(--success);
    border-radius: 50%;
    opacity: 0.4;
    animation: livePulse 2s infinite;
}
.live-feed-viewport {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 24px;
}
.live-feed-viewport::before,
.live-feed-viewport::after {
    content: "";
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.live-feed-viewport::before {
    left: 0;
    background: linear-gradient(to right, var(--paper-warm), transparent);
}
.live-feed-viewport::after {
    right: 0;
    background: linear-gradient(to left, var(--paper-warm), transparent);
}
.live-feed-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: feedScroll 50s linear infinite;
    width: max-content;
}
.live-feed-item {
    font-size: 0.95rem;
    color: var(--ink-soft);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}
.live-feed-item-dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}
.live-feed-item-time {
    color: var(--muted-soft);
    font-variant-numeric: tabular-nums;
    font-weight: 500;
    margin-right: 0.25rem;
}
.live-feed-item em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}
@keyframes feedScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.live-feed-inner:hover .live-feed-track {
    animation-play-state: paused;
}

/* ===== Compare table ===== */
.compare-section { padding: 6rem 0; }
.compare-wrap {
    max-width: 980px;
    margin: 0 auto;
    padding-top: 18px;
}
.compare-table {
    background:
        linear-gradient(135deg, #fff 0%, #fff 80%, rgba(219, 234, 254, 0.3) 100%);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 8px 32px rgba(11, 23, 51, 0.06);
    transition: box-shadow 0.4s var(--ease);
}
.compare-table:hover {
    box-shadow: 0 16px 48px rgba(11, 23, 51, 0.10);
}
.compare-header-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    background: var(--paper-warm);
    border-bottom: 1px solid var(--line);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}
.compare-header-cell {
    padding: 1.6rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted);
    text-align: center;
    border-right: 1px solid var(--line);
}
.compare-header-cell:last-child {
    border-right: none;
    border-top-right-radius: 24px;
}
.compare-header-cell.first-col {
    text-align: left;
    background: var(--ink);
    color: #fff;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    border-top-left-radius: 24px;
}
.compare-header-cell.highlighted {
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    position: relative;
    border-top-right-radius: 24px;
}
.compare-header-cell.highlighted::before {
    content: "Beste keuze";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(11, 23, 51, 0.25);
    z-index: 2;
}
.compare-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--line);
    transition: background 0.2s;
}
.compare-row:last-child { border-bottom: none; }
.compare-row:last-child .compare-cell:first-child { border-bottom-left-radius: 24px; }
.compare-row:last-child .compare-cell:last-child { border-bottom-right-radius: 24px; }
.compare-row:hover { background: rgba(37, 99, 235, 0.025); }
.compare-cell {
    padding: 1.2rem 1.25rem;
    font-size: 1rem;
    color: var(--ink-soft);
    text-align: center;
    border-right: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
}
.compare-cell:last-child { border-right: none; }
.compare-cell.feature-label {
    text-align: left;
    justify-content: flex-start;
    font-weight: 500;
    color: var(--ink);
}
.compare-cell.highlighted-col {
    background: rgba(37, 99, 235, 0.04);
}
.compare-value-yes {
    color: var(--success);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
}
.compare-value-yes svg {
    width: 18px; height: 18px;
    background: var(--success-soft);
    border-radius: 50%;
    padding: 3px;
}
.compare-value-no {
    color: var(--muted-soft);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
}
.compare-value-no svg {
    width: 18px; height: 18px;
    color: var(--muted-soft);
    opacity: 0.6;
}
.compare-value-partial {
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
}
.compare-footnote {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--muted);
    font-style: italic;
}

.compare-mobile { display: none; }
.compare-card {
    background: linear-gradient(135deg, #fff 0%, #fff 75%, rgba(219, 234, 254, 0.4) 100%);
    border: 1px solid var(--line);
    border-radius: 18px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s var(--ease);
}
.compare-card.is-winner {
    border: 2px solid var(--accent);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.18);
    position: relative;
}
.compare-card.is-winner::before {
    content: "Beste keuze";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 0 0 999px 999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(11, 23, 51, 0.25);
    z-index: 2;
}
.compare-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 1.25rem 1.25rem;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.compare-card.is-winner .compare-card-header {
    padding-top: 2.25rem;
}
.compare-card-title {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.compare-card-title strong {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.1;
}
.compare-card.is-winner .compare-card-title strong {
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.compare-card-subtitle {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 500;
}
.compare-card-toggle {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--paper-warm);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    transition: all 0.3s var(--ease);
}
.compare-card.is-open .compare-card-toggle {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: rotate(180deg);
}
.compare-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease);
}
.compare-card.is-open .compare-card-body {
    max-height: 700px;
}
.compare-card-body-inner {
    padding: 0 1.25rem 1.25rem;
    border-top: 1px solid var(--line);
    padding-top: 1rem;
}
.compare-feature {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
}
.compare-feature:last-child { border-bottom: none; }
.compare-feature-label {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.35;
    flex: 1;
}
.compare-feature-value {
    font-size: 0.92rem;
    text-align: right;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.compare-feature-value.is-yes {
    color: var(--success);
    font-weight: 600;
}
.compare-feature-value.is-yes::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--success-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E8A5F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
    flex-shrink: 0;
}
.compare-feature-value.is-no { color: var(--muted-soft); }
.compare-feature-value.is-no::before {
    content: "✕";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 0.85rem;
    color: var(--muted-soft);
    flex-shrink: 0;
}
.compare-feature-value.is-partial { color: var(--muted); }
.compare-feature-value.is-partial::before {
    content: "~";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 1rem;
    color: var(--muted-soft);
    flex-shrink: 0;
}
.compare-feature-value.is-highlight { color: var(--accent); font-weight: 700; }

/* ===== Steps ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}
.steps-grid::before {
    content: "";
    position: absolute;
    top: 46px;
    left: 16.66%;
    right: 16.66%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-mid) 20%, var(--accent-mid) 80%, transparent);
    z-index: 0;
}
.step-card {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 1rem;
}
.step-number {
    width: 92px;
    height: 92px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--paper);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 2.5rem;
    color: var(--ink);
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), color 0.3s, background 0.3s;
}
.step-number::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed var(--line-strong);
    transition: border-color 0.3s, transform 0.5s var(--ease);
}
.step-card:hover .step-number {
    transform: translateY(-6px) scale(1.05);
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    color: #fff;
    box-shadow: var(--shadow-blue);
}
.step-card:hover .step-number::after {
    border-color: var(--accent-mid);
    transform: rotate(180deg) scale(1.05);
}
.step-card h3 { margin-bottom: 0.85rem; }
.step-card p {
    font-size: 1.02rem;
    max-width: 280px;
    margin: 0 auto;
}

/* ===== Testimonials ===== */
.testimonials {
    background:
        radial-gradient(ellipse at 15% 25%, rgba(37, 99, 235, 0.07), transparent 50%),
        radial-gradient(ellipse at 85% 75%, rgba(96, 165, 250, 0.06), transparent 50%),
        var(--paper-warm);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 6rem 0;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}
.testimonials::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.10), transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}
.testimonials > * { position: relative; z-index: 1; }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    background:
        linear-gradient(135deg, #fff 0%, #fff 80%, rgba(219, 234, 254, 0.4) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-xs);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    overflow: hidden;
}
.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-bright));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.testimonial-card:hover::before { transform: scaleX(1); }
.testimonial-stars {
    color: #F5A623;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.testimonial-quote {
    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}
.testimonial-quote em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}
.testimonial-author-info { line-height: 1.3; }
.testimonial-author-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink);
}
.testimonial-author-role {
    font-size: 0.9rem;
    color: var(--muted);
}
.testimonial-outcome {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--success);
    background: var(--success-soft);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    width: fit-content;
}

/* ===== Stats ===== */
.stats-strip { padding: 5rem 0; }
.stats-strip:not(.section-dark) { border-bottom: 1px solid var(--line); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item {
    padding: 1rem;
    transition: transform 0.4s var(--ease);
}
.stat-item:hover { transform: translateY(-4px); }
.stat-value {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 4.2vw, 3.75rem);
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
}
.stat-value em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.4;
}
section.section-dark .stat-value { color: #fff; }
section.section-dark .stat-value em {
    background: linear-gradient(135deg, var(--accent-electric), #93C5FD);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
section.section-dark .stat-label { color: rgba(255,255,255,0.7); }
section.section-dark .stats-grid { position: relative; }
section.section-dark .stat-item { position: relative; }
section.section-dark .stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20%;
    right: -1rem;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.08);
}

/* ===== Funnel ===== */
.funnel-section { padding: 6rem 0; }
.funnel-card {
    max-width: 880px;
    margin: 0 auto;
    background:
        linear-gradient(135deg, #fff 0%, #fff 70%, rgba(219, 234, 254, 0.5) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.funnel-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-bright), var(--success));
}
.funnel-card::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent 70%);
    pointer-events: none;
}
.funnel-step { display: none; position: relative; }
.funnel-step.active { display: block; animation: funnelFade 0.4s var(--ease); }
@keyframes funnelFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.funnel-header { text-align: center; margin-bottom: 2.5rem; }
.funnel-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}
.funnel-badge-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
.funnel-title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.6rem);
    line-height: 1.1;
    margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
}
.funnel-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.funnel-subtitle {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto;
}
.funnel-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.funnel-option {
    background: var(--paper);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.6rem 1.3rem;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}
.funnel-option::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.funnel-option:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-blue);
    background: #fff;
}
.funnel-option:hover::before { opacity: 1; }
.funnel-option > * { position: relative; z-index: 1; }
.funnel-option-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.95rem;
    color: var(--accent);
    transition: all 0.3s var(--ease);
}
.funnel-option:hover .funnel-option-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    color: #fff;
    transform: scale(1.08) rotate(-5deg);
}
.funnel-option-title {
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.4rem;
}
.funnel-option-text {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.5;
}
.funnel-option-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.3rem;
    color: var(--muted-soft);
    transition: all 0.3s var(--ease);
}
.funnel-option:hover .funnel-option-arrow {
    color: var(--accent);
    transform: translateX(4px);
}
.funnel-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--muted);
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.funnel-note-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.funnel-note-item svg { color: var(--success); }

.funnel-confirm { text-align: center; }
.funnel-confirm-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success), #4ABF8F);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    box-shadow: 0 12px 32px rgba(14, 138, 95, 0.35);
    animation: confirmPop 0.5s var(--ease-bounce);
}
@keyframes confirmPop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}
.funnel-confirm-title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.4rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.funnel-confirm-text {
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
}
.funnel-confirm-bullets {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.funnel-confirm-bullet {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink);
    background: var(--paper-warm);
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid var(--line);
}
.funnel-confirm-bullet svg { color: var(--success); }
.funnel-btn-back {
    background: none;
    border: none;
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s, transform 0.2s;
}
.funnel-btn-back:hover { color: var(--ink); transform: translateX(-3px); }

/* ===== Audience ===== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.audience-card {
    background:
        linear-gradient(135deg, #fff 0%, #fff 75%, rgba(219, 234, 254, 0.35) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.audience-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), var(--accent-bright));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s var(--ease);
}
.audience-card::after {
    content: "";
    position: absolute;
    top: -50%; right: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.04), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-mid);
}
.audience-card:hover::before { transform: scaleY(1); }
.audience-card:hover::after { opacity: 1; }
.audience-card > * { position: relative; z-index: 1; }
.audience-label {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 2.6rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
    line-height: 1;
}
.audience-card h3 { margin-bottom: 0.85rem; }
.audience-card p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
}
.audience-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}
.audience-tag {
    font-size: 0.85rem;
    padding: 0.35rem 0.8rem;
    background: var(--paper-warm);
    color: var(--ink-soft);
    border-radius: 999px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}
.audience-card:hover .audience-tag {
    background: var(--accent-soft);
    color: var(--accent);
}

/* ===== FAQ ===== */
.faq-section {
    padding: 6rem 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(37, 99, 235, 0.08), transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(96, 165, 250, 0.06), transparent 50%),
        var(--paper-warm);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.faq-section::before {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}
.faq-section > * { position: relative; z-index: 1; }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
}
.faq-intro { position: sticky; top: 100px; }
.faq-intro .section-number { margin-bottom: 0.75rem; display: block; }
.faq-intro .section-number::before,
.faq-intro .section-number::after { display: none; }
.faq-intro .eyebrow { margin-bottom: 1rem; }
.faq-intro h2 { margin-bottom: 1rem; }
.faq-intro p { margin-bottom: 1.5rem; }
.faq-intro-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 1.02rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--accent);
    transition: gap 0.3s;
}
.faq-intro-contact:hover { gap: 0.85rem; }
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.faq-item {
    border-bottom: 1px solid var(--line-strong);
    padding: 1.5rem 0;
    cursor: pointer;
    transition: padding 0.3s;
}
.faq-item:first-child { border-top: 1px solid var(--line-strong); }
.faq-item:hover { padding-left: 0.5rem; }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--ink);
}
.faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--paper);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    transition: all 0.4s var(--ease);
}
.faq-item.active .faq-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    color: #fff;
    border-color: var(--accent);
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.65;
}
.faq-item.active .faq-answer {
    max-height: 320px;
    margin-top: 0.95rem;
}

/* ===== Final CTA ===== */
.final-cta { padding: 6rem 0; text-align: center; }
.final-cta-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 4.5rem 3rem;
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}
.final-cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.25), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(96, 165, 250, 0.15), transparent 50%);
}
.final-cta-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.5;
    mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
}
.final-cta-card > * { position: relative; z-index: 1; }
.final-cta-card h2 { color: #fff; margin-bottom: 1rem; }
.final-cta-card h2 em {
    background: linear-gradient(135deg, var(--accent-electric), #93C5FD);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.final-cta-card p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 540px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}
.final-cta-price {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}
.final-cta-price strong {
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
}

/* ===== SEO links ===== */
.seo-links-section { padding: 5rem 0; }
.seo-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    margin-top: 3rem;
}
.seo-link-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background:
        linear-gradient(135deg, #fff 0%, #fff 75%, rgba(219, 234, 254, 0.4) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.35rem 1.5rem;
    transition: all 0.3s var(--ease);
}
.seo-link-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue);
}
.seo-link-card strong {
    display: block;
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 0.25rem;
    font-weight: 600;
}
.seo-link-card span {
    font-size: 0.92rem;
    color: var(--muted);
}
.seo-link-card svg {
    flex-shrink: 0;
    color: var(--muted-soft);
    transition: all 0.3s var(--ease);
}
.seo-link-card:hover svg {
    color: var(--accent);
    transform: translateX(4px);
}

/* ===== Footer ===== */
footer {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.05), transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(96, 165, 250, 0.04), transparent 50%),
        var(--paper-warm);
    border-top: 1px solid var(--line);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-mid), var(--accent), var(--accent-mid), transparent);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand .logo {
    margin-bottom: 1rem;
    display: block;
}
.footer-brand p {
    font-size: 0.98rem;
    max-width: 320px;
}
.footer-col h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
    font-size: 1rem;
    color: var(--ink-soft);
    transition: color 0.2s, padding-left 0.2s;
}
.footer-col a:hover {
    color: var(--accent);
    padding-left: 4px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    font-size: 0.92rem;
    color: var(--muted);
}

/* ===== SUBPAGE-SPECIFIC: simple page hero + content cards ===== */
.page-hero {
    padding: 8rem 0 3rem;
    position: relative;
}
.page-hero .container-narrow { position: relative; z-index: 2; }
.page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.95rem;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}
.page-hero-eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .lead {
    font-size: 1.15rem;
    color: var(--ink-soft);
    max-width: 640px;
    line-height: 1.55;
    margin-bottom: 1.5rem;
}
.page-hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--muted);
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}
.page-hero-meta svg { width: 14px; height: 14px; color: var(--muted-soft); }

/* Soft cards used in SEO landing pages */
.soft-card {
    background:
        linear-gradient(135deg, #fff 0%, #fff 80%, rgba(219, 234, 254, 0.4) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.soft-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.soft-card h2 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    line-height: 1.15;
    margin-bottom: 0.85rem;
}
.soft-card p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.65;
}
.soft-card.accent-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(96, 165, 250, 0.08));
    border-color: rgba(37, 99, 235, 0.15);
}
.soft-card.dark-card {
    background: var(--ink);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.soft-card.dark-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.25), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(96, 165, 250, 0.18), transparent 50%);
    pointer-events: none;
}
.soft-card.dark-card > * { position: relative; z-index: 1; }
.soft-card.dark-card h2 { color: #fff; }
.soft-card.dark-card p { color: rgba(255,255,255,0.78); }
.soft-card.dark-card h2 em {
    background: linear-gradient(135deg, var(--accent-electric), #93C5FD);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subpage-stack {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.subpage-content {
    padding: 0 0 6rem;
}

/* Bullet list (used on SEO subpages) */
ul.feature-bullets {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.7rem;
}
ul.feature-bullets li {
    position: relative;
    padding-left: 2rem;
    color: var(--ink-soft);
    line-height: 1.55;
    font-size: 1rem;
}
ul.feature-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 18px;
    height: 18px;
    background: var(--success-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E8A5F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/11px no-repeat;
    border-radius: 50%;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 992px) {
    body::before {
        background:
            linear-gradient(180deg, #F4F8FF 0%, var(--paper) 100%);
    }
    body::after { display: none; }
    .ambient-particles { display: none; }
    .cursor-glow { display: none; }
    .hero-orb { filter: blur(40px); }
    section.section-dark::before {
        background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.2), transparent 60%);
    }
    section:not(.section-warm):not(.section-dark):not(.testimonials):not(.faq-section):not(.hero)::before,
    section:not(.section-warm):not(.section-dark):not(.testimonials):not(.faq-section):not(.hero)::after {
        display: none;
    }
    .testimonials::before,
    .faq-section::before {
        display: none;
    }

    .nav-menu { gap: 1rem; }
    .nav-link { display: none; }
    .hero { padding: 7rem 0 2rem; }
    .page-hero { padding: 7rem 0 2rem; }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .transform-stage {
        grid-template-columns: 1fr;
        min-height: auto;
        height: auto;
        gap: 1.5rem;
        padding: 30px 5px 20px;
    }
    .input-card, .letter-card {
        transform: none !important;
        min-height: auto;
        height: auto;
        max-width: 440px;
        margin: 0 auto;
        width: 100%;
    }
    .input-card:hover, .letter-card:hover {
        transform: none !important;
    }
    .transform-arrow {
        height: 40px;
        width: 100%;
        margin: -10px auto;
    }
    .transform-chevron {
        flex-direction: column;
        gap: 2px;
    }
    .transform-chevron svg {
        transform: rotate(90deg);
        width: 16px;
        height: 16px;
    }
    .letter-badge { top: -10px; right: 10px; }
    .steps-grid,
    .testimonial-grid,
    .audience-grid,
    .seo-links-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .funnel-options { grid-template-columns: 1fr; }
    .funnel-card { padding: 2.5rem 1.5rem; }
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .faq-intro { position: static; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    section { padding: 4rem 0; }

    .compare-table { display: none; }
    .compare-mobile { display: block; }
    .compare-wrap { padding-top: 0; }

    .live-feed-inner { gap: 0.75rem; padding: 0 1.25rem; }
    .live-feed-label { font-size: 0.78rem; letter-spacing: 0.1em; }
    .live-feed-label span:not(.live-feed-label-dot) { display: none; }
    .live-feed-item { font-size: 0.9rem; }
    .hero-orb { display: none; }
}

@media (max-width: 560px) {
    body { font-size: 17px; }
    .container, .container-narrow { padding: 0 1.25rem; }
    .hero-cta-row { flex-direction: column; align-items: stretch; }
    .hero-cta-row .btn { width: 100%; }
    .hero-trust-row { gap: 1.25rem; }
    .logo-bar-inner { justify-content: center; text-align: center; }
    .final-cta-card { padding: 3rem 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    section.section-dark .stat-item:not(:last-child)::after { display: none; }
    .soft-card { padding: 1.75rem 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
