/* ==============================================
   FORMATION PRATICIEN EFT — v5 "Lumière"
   Editorial magazine approach
   Typography: Instrument Serif + Outfit
   ============================================== */

/* ——— DESIGN TOKENS ——— */
:root {
    /* Palette — deep navy + violet + amber */
    --ink: #0D1117;
    --ink-soft: #1E2530;
    --slate: #374151;
    --muted: #6B7280;
    --silver: #9CA3AF;
    --border: #E5E7EB;
    --cloud: #F3F4F6;
    --paper: #F9F8F5;
    --white: #FFFFFF;
    --violet: #7C3AED;
    --violet-light: #EDE9FE;
    --violet-dark: #5B21B6;
    --amber: #F59E0B;
    --amber-light: #FEF3C7;

    /* Typography scale */
    --f-display: 'Instrument Serif', Georgia, serif;
    --f-body: 'Outfit', -apple-system, sans-serif;
    --fs-hero: clamp(3rem, 7vw, 6rem);
    --fs-h1: clamp(2.25rem, 4.5vw, 4rem);
    --fs-h2: clamp(1.75rem, 3.5vw, 3rem);
    --fs-h3: clamp(1.25rem, 2vw, 1.75rem);
    --fs-h4: 1.25rem;
    --fs-body: 1.0625rem;
    --fs-sm: 0.9375rem;
    --fs-xs: 0.8125rem;
    --fs-label: 0.75rem;

    /* Spacing */
    --gap: clamp(1rem, 3vw, 2rem);
    --section-pad: clamp(4rem, 10vw, 8rem);
    --container: 1200px;
    --gutter: clamp(1.25rem, 4vw, 3rem);

    /* Misc */
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
    --transition: 0.3s cubic-bezier(.4,0,.2,1);
}


/* ——— RESET & BASE ——— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--f-body);
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--slate);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.skip-link {
    position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus { position: fixed; top: 0; left: 0; width: auto; height: auto; padding: 1rem; background: var(--violet); color: white; z-index: 10000; }


/* ——— HEADER — Glassmorphism + Mega Menu ——— */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header.is-scrolled {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 0.625rem 0;
    box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,.03);
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

/* Inner pages: header starts with solid bg + dark text */
body:not(.home) .site-header {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 var(--border);
}
body:not(.home) .logo { color: var(--ink); }
body:not(.home) .nav-item > a { color: var(--slate); }
body:not(.home) .nav-item > a:hover { color: var(--ink); background: var(--cloud); }
body:not(.home) .hamburger span { background: var(--ink); }

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    transition: color var(--transition);
    text-decoration: none;
}
.site-header.is-scrolled .logo { color: var(--ink); }

.logo-mark {
    width: 40px; height: 40px;
    background: var(--violet);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-size: 1.25rem;
    color: var(--white);
    flex-shrink: 0;
    transition: transform var(--transition);
}
.logo:hover .logo-mark { transform: rotate(-6deg) scale(1.05); }

.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong { font-family: var(--f-display); font-size: 1.25rem; font-weight: 400; }
.logo-text small { font-family: var(--f-body); font-size: var(--fs-xs); font-weight: 400; opacity: 0.65; }
.logo-icon { display: none; }

/* Navigation */
.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 0.25rem; }

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--white);
    border-radius: 100px;
    transition: all var(--transition);
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.site-header.is-scrolled .nav-item > a { color: var(--slate); }
.nav-item > a:hover { color: var(--white); background: rgba(255,255,255,.15); }
.site-header.is-scrolled .nav-item > a:hover { color: var(--ink); background: var(--cloud); }
.nav-item.active > a { color: var(--white); }
.site-header.is-scrolled .nav-item.active > a { color: var(--violet); }

/* Chevron for mega menu triggers */
.nav-item > a .nav-chevron {
    width: 12px; height: 12px;
    transition: transform var(--transition);
    opacity: 0.5;
}
.nav-item.has-mega:hover > a .nav-chevron { transform: rotate(180deg); opacity: 1; }

/* Mega Menu */
.nav-item.has-mega { position: static; }

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,.1), 0 1px 0 var(--border);
    padding: 2.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 999;
}
.nav-item.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: repeat(3, 1fr) 280px;
    gap: 2.5rem;
}

.mega-menu__col {}

.mega-menu__col-title {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--violet);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid var(--border);
}

.mega-menu__links { display: flex; flex-direction: column; gap: 0.25rem; }

.mega-menu__link {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    border-radius: var(--radius);
    transition: background var(--transition);
    text-decoration: none;
}
.mega-menu__link:hover { background: var(--cloud); }

.mega-menu__link-icon {
    width: 36px; height: 36px;
    background: var(--violet-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.mega-menu__link-icon svg {
    width: 18px; height: 18px;
    stroke: var(--violet);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mega-menu__link-text { flex: 1; }
.mega-menu__link-title {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 0.125rem;
}
.mega-menu__link-desc {
    font-size: var(--fs-xs);
    color: var(--muted);
    line-height: 1.5;
}

/* Mega menu featured card */
.mega-menu__featured {
    background: var(--violet);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mega-menu__featured-title {
    font-family: var(--f-display);
    font-size: var(--fs-h4);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.mega-menu__featured-text {
    font-size: var(--fs-xs);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.mega-menu__featured .btn { align-self: flex-start; }

/* Simple dropdown (for items without mega) */
.nav-item.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}
.nav-item.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
    display: block;
    padding: 0.625rem 1rem;
    font-size: var(--fs-sm);
    color: var(--slate);
    border-radius: var(--radius);
    transition: background var(--transition);
}
.dropdown a:hover { background: var(--violet-light); color: var(--violet-dark); }

/* CTA nav */
.nav-cta {
    margin-left: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1.5rem;
    background: var(--violet);
    color: var(--white) !important;
    font-size: var(--fs-sm);
    font-weight: 600;
    border-radius: 100px;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}
.nav-cta:hover { background: var(--violet-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(124,58,237,.3); }
.nav-cta svg { width: 16px; height: 16px; }

/* Mobile toggle */
.menu-toggle {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.hamburger span {
    display: block; width: 100%; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: all var(--transition);
}
.site-header.is-scrolled .hamburger span { background: var(--ink); }
.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ——— BUTTONS ——— */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--f-body);
    font-weight: 600;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background: var(--violet);
    color: var(--white);
    padding: 1rem 2.25rem;
    font-size: var(--fs-body);
}
.btn-primary:hover { background: var(--violet-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,58,237,.3); }

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.25rem;
    font-size: var(--fs-body);
    border: 1.5px solid rgba(255,255,255,.3);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-outline-dark {
    background: transparent;
    color: var(--ink);
    padding: 1rem 2.25rem;
    font-size: var(--fs-body);
    border: 1.5px solid var(--border);
}
.btn-outline-dark:hover { border-color: var(--ink); }

.btn-accent {
    background: var(--amber);
    color: var(--ink);
    padding: 1rem 2.25rem;
    font-size: var(--fs-body);
}
.btn-accent:hover { background: #E8900A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,.3); }

.btn-sm { padding: 0.5625rem 1.25rem; font-size: var(--fs-sm); }
.btn-lg { padding: 1.125rem 2.75rem; font-size: 1.0625rem; }
.btn-xl { padding: 1.25rem 3rem; font-size: 1.125rem; }
.btn-block { width: 100%; }
.btn-white { background: var(--white); color: var(--ink); }
.btn-white:hover { background: var(--cloud); }


/* ——— HERO — Full-bleed magazine cover ——— */
.hero-cover {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 0 clamp(3rem, 8vw, 6rem);
    overflow: hidden;
}

.hero-cover__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-cover__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-cover__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13,17,23,.2) 0%,
        rgba(13,17,23,.35) 40%,
        rgba(13,17,23,.85) 75%,
        rgba(13,17,23,.95) 100%
    );
}

.hero-cover__content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
}

.hero-cover__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-label);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1.5rem;
}

.hero-cover__eyebrow::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--amber);
}

.hero-cover__title {
    font-family: var(--f-display);
    font-size: var(--fs-hero);
    font-weight: 400;
    line-height: 1.05;
    color: var(--white);
    letter-spacing: -0.03em;
    max-width: 900px;
    margin-bottom: 1.5rem;
}

.hero-cover__title em {
    font-style: italic;
    color: var(--amber);
}

.hero-cover__divider {
    width: 60px; height: 1px;
    background: rgba(255,255,255,.3);
    margin-bottom: 1.5rem;
}

.hero-cover__subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255,255,255,.7);
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-cover__actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}


/* ——— MARQUEE TRUST STRIP ——— */
.trust-strip {
    background: var(--ink);
    padding: 1rem 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.trust-strip__track {
    display: flex;
    gap: 3rem;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.trust-strip__item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    white-space: nowrap;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: rgba(255,255,255,.6);
}

.trust-strip__icon {
    width: 20px; height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124,58,237,.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.trust-strip__icon svg { width: 12px; height: 12px; stroke: var(--violet); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.trust-strip__sep {
    width: 4px; height: 4px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ——— EDITORIAL SECTIONS ——— */
.ed-section {
    padding: var(--section-pad) 0;
}

.ed-section--tinted { background: var(--cloud); }
.ed-section--dark { background: var(--ink); color: var(--white); }
.ed-section--violet { background: var(--violet); color: var(--white); }

/* Numbered chapter heading */
.chapter {
    display: flex;
    align-items: flex-start;
    gap: clamp(1.5rem, 3vw, 3rem);
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.chapter__number {
    font-family: var(--f-display);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    color: var(--border);
    flex-shrink: 0;
    letter-spacing: -0.04em;
    font-weight: 400;
}

.ed-section--dark .chapter__number { color: rgba(255,255,255,.1); }

.chapter__text { padding-top: 0.75rem; }

.chapter__title {
    font-family: var(--f-display);
    font-size: var(--fs-h2);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.ed-section--dark .chapter__title { color: var(--white); }

.chapter__lead {
    font-size: clamp(1rem, 1.3vw, 1.125rem);
    color: var(--muted);
    max-width: 600px;
    line-height: 1.7;
}

.ed-section--dark .chapter__lead { color: rgba(255,255,255,.5); }

.chapter.text-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.chapter.text-center .chapter__text {
    align-items: center;
}

.chapter.text-center .chapter__title {
    text-align: center;
}

.chapter.text-center .chapter__lead {
    text-align: center;
    margin: 0 auto;
}

/* Center variant (no number) */
.chapter--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.chapter--center .chapter__text { text-align: center; }
.chapter--center .chapter__title { text-align: center; }
.chapter--center .chapter__lead { text-align: center; margin: 0 auto; }

/* Light variant (for dark backgrounds) */
.chapter--light .chapter__number { color: rgba(255,255,255,.08); }
.chapter--light .chapter__title { color: var(--white); }
.chapter--light .chapter__lead { color: rgba(255,255,255,.5); }


/* ——— SPLIT LAYOUT (asymmetric) ——— */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.split--wide-left { grid-template-columns: 1.3fr 1fr; }
.split--wide-right { grid-template-columns: 1fr 1.3fr; }

.split__media {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split__body { max-width: 540px; }

.split__body h2 {
    font-family: var(--f-display);
    font-size: var(--fs-h2);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.split__body .chapter {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.split__body .chapter__number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.split__body p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.split__body p:last-of-type { margin-bottom: 2rem; }

/* Pull quote */
.pull-quote {
    border-left: 3px solid var(--violet);
    padding: 0.25rem 0 0.25rem 1.5rem;
    margin: 2rem 0;
    font-family: var(--f-display);
    font-size: var(--fs-h3);
    font-style: italic;
    color: var(--ink);
    line-height: 1.4;
    letter-spacing: -0.01em;
}


/* ——— BENTO GRID ——— */
.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: var(--gap);
}

.bento-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: clamp(1.75rem, 3vw, 2.5rem);
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    border-color: var(--violet);
    box-shadow: 0 0 0 1px var(--violet), var(--shadow-md);
    transform: translateY(-3px);
}

.bento-card--span2 { grid-column: span 2; }
.bento-card--tall { grid-row: span 2; }

.bento-card--featured {
    background: var(--violet);
    border-color: var(--violet);
    color: var(--white);
}
.bento-card--featured:hover { box-shadow: 0 12px 40px rgba(124,58,237,.3); border-color: var(--violet-dark); }

.bento-card__number {
    font-family: var(--f-display);
    font-size: 2.5rem;
    color: var(--border);
    line-height: 1;
    margin-bottom: 1rem;
}
.bento-card--featured .bento-card__number { color: rgba(255,255,255,.2); }

.bento-card__title {
    font-family: var(--f-display);
    font-size: var(--fs-h3);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.bento-card--featured .bento-card__title { color: var(--white); }

.bento-card__text {
    color: var(--muted);
    font-size: var(--fs-sm);
    line-height: 1.7;
    flex-grow: 1;
}
.bento-card--featured .bento-card__text { color: rgba(255,255,255,.7); }

.bento-card__icon {
    width: 48px; height: 48px;
    background: var(--violet-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.bento-card__icon svg { width: 24px; height: 24px; stroke: var(--violet); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bento-card--featured .bento-card__icon { background: rgba(255,255,255,.15); }
.bento-card--featured .bento-card__icon svg { stroke: var(--white); }


/* ——— HORIZONTAL SCROLL MODULE ——— */
.hscroll-section {
    padding: var(--section-pad) 0;
    background: var(--ink);
    color: var(--white);
    overflow: hidden;
}

.hscroll__track {
    display: flex;
    gap: var(--gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 var(--gutter);
    scrollbar-width: none;
}
.hscroll__track::-webkit-scrollbar { display: none; }

.hscroll__card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition);
}
.hscroll__card:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); }

.hscroll__card-number {
    font-family: var(--f-display);
    font-size: 1.125rem;
    color: var(--violet);
    margin-bottom: 1rem;
}

.hscroll__card-title {
    font-family: var(--f-display);
    font-size: var(--fs-h4);
    font-weight: 400;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.hscroll__card-text {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,.5);
    line-height: 1.7;
}


/* ——— SINGLE TESTIMONIAL (large) ——— */
.testimony {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimony__quote-mark {
    font-family: var(--f-display);
    font-size: 5rem;
    color: var(--violet-light);
    line-height: 1;
    margin-bottom: -1rem;
}

.testimony__text {
    font-family: var(--f-display);
    font-size: var(--fs-h3);
    font-weight: 400;
    font-style: italic;
    color: var(--ink);
    line-height: 1.5;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.testimony__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimony__avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--cloud);
}

.testimony__info { text-align: left; }
.testimony__name { font-weight: 600; color: var(--ink); font-size: var(--fs-sm); }
.testimony__role { color: var(--muted); font-size: var(--fs-xs); }

/* Testimony dots */
.testimony__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}
.testimony__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: background var(--transition);
    padding: 0;
}
.testimony__dot.active { background: var(--violet); width: 24px; border-radius: 4px; }


/* ——— PRICING CARD — centered single ——— */
.pricing-block {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--violet);
    border-radius: var(--radius-xl);
    padding: clamp(2rem, 4vw, 3rem);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--violet), var(--amber));
}

.pricing-card__badge {
    display: inline-block;
    background: var(--violet-light);
    color: var(--violet-dark);
    font-size: var(--fs-xs);
    font-weight: 600;
    padding: 0.375rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.pricing-card__name {
    font-family: var(--f-display);
    font-size: var(--fs-h3);
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.pricing-card__price {
    font-family: var(--f-display);
    font-size: 3.5rem;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 0.25rem;
    letter-spacing: -0.04em;
}

.pricing-card__price-note {
    font-size: var(--fs-sm);
    color: var(--muted);
    margin-bottom: 2rem;
}

.pricing-card__features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0;
    font-size: var(--fs-sm);
    color: var(--slate);
    border-bottom: 1px solid var(--cloud);
}
.pricing-card__features li:last-child { border: none; }

.pricing-card__features li svg {
    width: 18px; height: 18px;
    stroke: var(--violet);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card__guarantees {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.pricing-card__guarantee {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: var(--fs-xs);
    color: var(--muted);
}

.pricing-card__guarantee svg {
    width: 14px; height: 14px;
    stroke: var(--muted);
    fill: none;
    stroke-width: 2;
}


/* ——— EDITORIAL BLOG LIST ——— */
.article-list { border-top: 1px solid var(--border); }

.article-list__item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
.article-list__item:hover { background: var(--cloud); padding-left: 1rem; padding-right: 1rem; border-radius: var(--radius); }

.article-list__date {
    font-size: var(--fs-xs);
    color: var(--silver);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.article-list__body { min-width: 0; }

.article-list__title {
    font-family: var(--f-display);
    font-size: var(--fs-h4);
    color: var(--ink);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.article-list__excerpt {
    font-size: var(--fs-sm);
    color: var(--muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-list__arrow {
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cloud);
    transition: all var(--transition);
    flex-shrink: 0;
}
.article-list__item:hover .article-list__arrow { background: var(--violet); }
.article-list__arrow svg { width: 16px; height: 16px; stroke: var(--muted); fill: none; stroke-width: 2; }
.article-list__item:hover .article-list__arrow svg { stroke: var(--white); }


/* ——— FAQ ACCORDION ——— */
.faq-list { max-width: 800px; margin: 0 auto; }

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

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.375rem 0;
    font-family: var(--f-display);
    font-size: var(--fs-h4);
    font-weight: 400;
    color: var(--ink);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition);
    gap: 1rem;
}
.faq-item__question:hover { color: var(--violet); }

.faq-item__icon {
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--cloud);
    transition: all var(--transition);
}
.faq-item__icon svg {
    width: 14px; height: 14px;
    stroke: var(--muted);
    fill: none;
    stroke-width: 2;
    transition: transform var(--transition);
}
.faq-item.is-open .faq-item__icon { background: var(--violet-light); }
.faq-item.is-open .faq-item__icon svg { stroke: var(--violet); transform: rotate(180deg); }

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item__answer-inner {
    padding-bottom: 1.5rem;
    color: var(--muted);
    font-size: var(--fs-sm);
    line-height: 1.8;
}


/* ——— CTA BLOCK VARIANTS ——— */
.cta-block { margin: 2rem 0; }

.cta-primary .cta-block__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--violet);
    border-radius: var(--radius-xl);
    padding: clamp(2rem, 4vw, 3rem);
    color: var(--white);
}

.cta-block__title {
    font-family: var(--f-display);
    font-size: var(--fs-h3);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.cta-block__sub { font-size: var(--fs-sm); opacity: 0.7; margin-bottom: 0.75rem; }

.cta-block__reassurance {
    display: flex; gap: 1.25rem; flex-wrap: wrap;
    font-size: var(--fs-xs); opacity: 0.8;
}

.cta-banner {
    background: var(--ink);
    padding: 1rem 0;
}
.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.cta-banner__text { color: rgba(255,255,255,.8); font-size: var(--fs-sm); }
.cta-banner__text strong { color: var(--white); }

.cta-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--violet);
    font-weight: 600;
    font-size: var(--fs-sm);
    transition: gap var(--transition);
}
.cta-inline:hover { gap: 0.75rem; }
.cta-inline__arrow { transition: transform var(--transition); }

.cta-card {
    background: var(--white);
    border: 2px solid var(--violet);
    border-radius: var(--radius-xl);
    padding: clamp(2rem, 4vw, 3rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--violet), var(--amber));
}
.cta-card__badge {
    display: inline-block;
    background: var(--violet-light);
    color: var(--violet-dark);
    font-size: var(--fs-xs);
    font-weight: 600;
    padding: 0.375rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}
.cta-card__title {
    font-family: var(--f-display);
    font-size: var(--fs-h3);
    color: var(--ink);
    margin-bottom: 1.25rem;
}
.cta-card__features {
    text-align: left;
    margin-bottom: 1.5rem;
}
.cta-card__features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0;
    font-size: var(--fs-sm);
    color: var(--slate);
}
.cta-card__features li svg { width: 16px; height: 16px; stroke: var(--violet); fill: none; stroke-width: 2; flex-shrink: 0; }
.cta-card__price { margin-bottom: 1.5rem; }
.cta-card__price-amount { font-family: var(--f-display); font-size: 2.5rem; color: var(--ink); }
.cta-card__price-detail { display: block; font-size: var(--fs-xs); color: var(--muted); }
.cta-card__guarantees {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    font-size: var(--fs-xs);
    color: var(--muted);
    flex-wrap: wrap;
}

.cta-sidebar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
}
.cta-sidebar__label { font-size: var(--fs-xs); font-weight: 600; color: var(--violet); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.cta-sidebar__title { font-family: var(--f-display); font-size: var(--fs-h4); color: var(--ink); margin-bottom: 0.5rem; }
.cta-sidebar__desc { font-size: var(--fs-sm); color: var(--muted); margin-bottom: 1rem; line-height: 1.6; }
.cta-sidebar__price { margin-bottom: 1rem; }
.cta-sidebar__price strong { font-family: var(--f-display); font-size: 1.75rem; color: var(--ink); }
.cta-sidebar__price small { color: var(--muted); }
.cta-sidebar__guarantee { margin-top: 0.75rem; text-align: center; }


/* ——— FOOTER ——— */
.pre-footer-cta {
    background: linear-gradient(135deg, var(--violet), var(--violet-dark));
    padding: clamp(3rem, 6vw, 5rem) 0;
    position: relative;
    overflow: hidden;
}
.pre-footer-cta::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
    border-radius: 50%;
}
.pre-footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}
.pre-footer-cta__content h2 {
    font-family: var(--f-display);
    font-size: var(--fs-h2);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.pre-footer-cta__content p {
    color: rgba(255,255,255,.7);
    max-width: 500px;
}

/* Newsletter */
.footer-newsletter {
    background: var(--ink-soft);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-newsletter__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.footer-newsletter__text h3 {
    font-family: var(--f-display);
    font-size: var(--fs-h3);
    color: var(--white);
    margin-bottom: 0.25rem;
}
.footer-newsletter__text p { color: rgba(255,255,255,.5); font-size: var(--fs-sm); }
.footer-newsletter__form { display: flex; gap: 0.5rem; }
.footer-newsletter__input {
    padding: 0.75rem 1.25rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 100px;
    color: var(--white);
    font-family: var(--f-body);
    font-size: var(--fs-sm);
    width: 280px;
    outline: none;
    transition: border-color var(--transition);
}
.footer-newsletter__input::placeholder { color: rgba(255,255,255,.3); }
.footer-newsletter__input:focus { border-color: var(--violet); }

.site-footer {
    background: var(--ink);
    color: rgba(255,255,255,.5);
    padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    padding-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--f-display);
    font-size: 1.375rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    text-decoration: none;
}
.footer-logo strong { font-weight: 400; }
.footer-logo .footer-logo__mark {
    width: 32px; height: 32px;
    background: var(--violet);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-size: 0.875rem;
    color: var(--white);
    flex-shrink: 0;
}

.footer-about p { font-size: var(--fs-sm); line-height: 1.7; margin-bottom: 0.75rem; }
.footer-disclaimer { opacity: 0.4; }

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.footer-social__link {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.06);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.footer-social__link:hover { background: var(--violet); }
.footer-social__link svg {
    width: 16px; height: 16px;
    stroke: rgba(255,255,255,.5);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.footer-social__link:hover svg { stroke: var(--white); }

.footer-col h3 {
    font-family: var(--f-display);
    font-size: 1.0625rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.125rem; }
.footer-col a {
    display: block;
    font-size: var(--fs-sm);
    color: rgba(255,255,255,.5);
    padding: 0.375rem 0;
    padding-left: 0;
    border-left: 2px solid transparent;
    transition: all var(--transition);
}
.footer-col a:hover {
    color: var(--white);
    padding-left: 0.75rem;
    border-left-color: var(--violet);
}

.footer-reassurance { margin-top: 1.25rem; }
.footer-reassurance p { font-size: var(--fs-xs); margin-bottom: 0.375rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 1.5rem 0;
}
.footer-bottom__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: var(--fs-xs);
}
.footer-bottom__links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom__links a {
    color: rgba(255,255,255,.4);
    transition: color var(--transition);
    font-size: var(--fs-xs);
}
.footer-bottom__links a:hover { color: rgba(255,255,255,.8); }
.footer-bottom__disclaimer {
    padding-top: 1rem;
    text-align: center;
    font-size: var(--fs-xs);
    opacity: 0.35;
    line-height: 1.6;
}


/* ——— CONTENT LAYOUT (article pages) ——— */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.content-sidebar { position: sticky; top: 100px; }

/* Article typography */
.content-main h1 { font-family: var(--f-display); font-size: var(--fs-h1); font-weight: 400; color: var(--ink); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.content-main h2 { font-family: var(--f-display); font-size: var(--fs-h2); font-weight: 400; color: var(--ink); line-height: 1.2; margin: 3rem 0 1rem; letter-spacing: -0.02em; }
.content-main h3 { font-family: var(--f-display); font-size: var(--fs-h3); font-weight: 400; color: var(--ink); line-height: 1.3; margin: 2rem 0 0.75rem; }
.content-main p { margin-bottom: 1.25rem; color: var(--slate); line-height: 1.8; }
.content-main a { color: var(--violet); border-bottom: 1px solid transparent; transition: border-color var(--transition); }
.content-main a:hover { border-bottom-color: var(--violet); }
.content-main ul, .content-main ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.content-main li { margin-bottom: 0.5rem; }
.content-main ul li { list-style-type: disc; }
.content-main ol li { list-style-type: decimal; }
.content-main blockquote {
    border-left: 3px solid var(--violet);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-family: var(--f-display);
    font-size: var(--fs-h4);
    font-style: italic;
    color: var(--ink);
    background: var(--violet-light);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.content-main img { border-radius: var(--radius-lg); margin: 2rem 0; }

/* TOC */
.toc {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}
.toc__title { font-size: var(--fs-sm); font-weight: 600; color: var(--ink); margin-bottom: 1rem; }
.toc a {
    display: block;
    padding: 0.375rem 0;
    font-size: var(--fs-sm);
    color: var(--muted);
    transition: color var(--transition);
    border-bottom: none;
}
.toc a:hover { color: var(--violet); }

/* Breadcrumb */
.breadcrumb {
    display: flex;
    gap: 0.5rem;
    font-size: var(--fs-xs);
    color: var(--silver);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--violet); }
.breadcrumb__sep { opacity: 0.5; }

/* Page header for inner pages */
.page-header {
    padding-top: calc(80px + clamp(3rem, 6vw, 5rem));
    padding-bottom: clamp(2rem, 4vw, 3rem);
    background: var(--ink);
    color: var(--white);
}

.page-header__title {
    font-family: var(--f-display);
    font-size: var(--fs-h1);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 700px;
}

.page-header__subtitle {
    color: rgba(255,255,255,.6);
    max-width: 600px;
    margin-top: 1rem;
}

.page-header .breadcrumb { margin-bottom: 1.5rem; }
.page-header .breadcrumb, .page-header .breadcrumb a { color: rgba(255,255,255,.5); }
.page-header .breadcrumb a:hover { color: var(--white); }


/* ——— BLOG PAGE (listing) ——— */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }

.blog-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--cloud);
}
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card__image img { transform: scale(1.05); }

.blog-card__body { padding: 1.5rem; }
.blog-card__date { font-size: var(--fs-xs); color: var(--silver); margin-bottom: 0.5rem; }
.blog-card__title {
    font-family: var(--f-display);
    font-size: var(--fs-h4);
    color: var(--ink);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
.blog-card__excerpt { font-size: var(--fs-sm); color: var(--muted); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }


/* ——— PAGINATION ——— */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    margin-top: 3rem;
}

.pagination__link,
.pagination__current {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: var(--radius);
    font-size: var(--fs-sm);
    font-weight: 500;
    transition: all var(--transition);
}

.pagination__link { color: var(--muted); background: var(--white); border: 1px solid var(--border); }
.pagination__link:hover { border-color: var(--violet); color: var(--violet); }
.pagination__current { background: var(--violet); color: var(--white); }
.pagination__link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }


/* ——— RELATED ARTICLES ——— */
.related-articles { padding: var(--section-pad) 0; background: var(--cloud); }
.related-articles__title { font-family: var(--f-display); font-size: var(--fs-h2); color: var(--ink); margin-bottom: 2rem; text-align: center; }
.related-articles__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }


/* ——— ANIMATIONS ——— */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }


/* ——— IMAGE BREAK ——— */
.ed-section--img-break { padding: clamp(2rem, 4vw, 3rem) 0; }
.img-break {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 3/1;
}
.img-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ——— SUB-PAGE HERO ——— */
.hero {
    padding-top: calc(80px + clamp(3rem, 6vw, 5rem));
    padding-bottom: clamp(3rem, 6vw, 4rem);
    background: var(--paper);
}
.hero--secondary {
    padding-top: calc(80px + clamp(2rem, 4vw, 3rem));
    padding-bottom: clamp(2rem, 4vw, 3rem);
    background: var(--paper);
}
.hero__inner { max-width: 800px; }
.hero__content {}
.hero__badge {
    display: inline-block;
    font-family: var(--f-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--violet);
    background: var(--violet-light);
    padding: 0.375rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}
.hero__title {
    font-family: var(--f-display);
    font-size: var(--fs-h1);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.hero__subtitle {
    font-size: var(--fs-body);
    color: var(--muted);
    line-height: 1.7;
    max-width: 660px;
    margin-bottom: 2rem;
}
.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}


/* ——— CONTENT SECTIONS ——— */
.section {
    padding: var(--section-pad) 0;
}
.section--alt {
    background: var(--cloud);
}
.section__header {
    max-width: 700px;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section__header h2 {
    font-family: var(--f-display);
    font-size: var(--fs-h2);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}
.section__header p {
    font-size: var(--fs-body);
    color: var(--muted);
    line-height: 1.7;
}

/* Breadcrumb section */
.breadcrumb-section {
    padding: 0.75rem 0;
    background: var(--paper);
}
.breadcrumb-section .breadcrumb {
    margin-bottom: 0;
}
.breadcrumb li {
    list-style: none;
}
.breadcrumb li + li::before {
    content: '›';
    margin-right: 0.5rem;
    color: var(--silver);
}
.breadcrumb__list {
    display: flex;
    gap: 0.5rem;
    font-size: var(--fs-xs);
    color: var(--silver);
    list-style: none;
    flex-wrap: wrap;
}
.breadcrumb__item + .breadcrumb__item::before {
    content: '›';
    margin-right: 0.5rem;
    color: var(--silver);
}
.breadcrumb__item a { color: var(--muted); transition: color var(--transition); }
.breadcrumb__item a:hover { color: var(--violet); }


/* ——— FEATURE ROWS ——— */
.feature-row {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1.25rem;
    transition: border-color var(--transition);
}
.feature-row:hover {
    border-color: var(--violet-light);
}
.feature-row__content h3 {
    font-family: var(--f-display);
    font-size: var(--fs-h3);
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.75rem;
}
.feature-row__content p {
    color: var(--muted);
    line-height: 1.7;
}
.feature-row__content ul {
    margin-top: 1rem;
    padding-left: 1.25rem;
    color: var(--slate);
    line-height: 1.8;
}
.feature-row__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ——— CARD GRID ——— */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--gap);
}
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 3vw, 2rem);
    transition: all var(--transition);
}
.card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
}
.card__title {
    font-family: var(--f-display);
    font-size: var(--fs-h4);
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.75rem;
}
.card__text {
    font-size: var(--fs-sm);
    color: var(--muted);
    line-height: 1.7;
}


/* ——— STEPS ——— */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--gap);
}
.step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 3vw, 2rem);
    transition: all var(--transition);
}
.step:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
}
.step__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--violet-light);
    color: var(--violet);
    font-weight: 700;
    font-size: var(--fs-body);
    border-radius: 50%;
    margin-bottom: 1rem;
}
.step__title {
    font-family: var(--f-display);
    font-size: var(--fs-h4);
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.5rem;
}
.step__text {
    font-size: var(--fs-sm);
    color: var(--muted);
    line-height: 1.7;
}


/* ——— COMPARISON TABLE ——— */
.comparison-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: var(--white);
}
.table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-sm);
}
.table th,
.table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.table thead th {
    background: var(--cloud);
    font-weight: 600;
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--slate);
    white-space: nowrap;
}
.table tbody tr:last-child td { border-bottom: none; }
.table tbody tr:hover { background: rgba(124,58,237,.02); }
.text-success { color: #059669; }
.text-warning { color: #D97706; }
.text-danger { color: #DC2626; }


/* ——— PRICING CARDS ——— */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--gap);
}
.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 3vw, 2rem);
    transition: all var(--transition);
}
.pricing-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.pricing-card__title {
    font-family: var(--f-display);
    font-size: var(--fs-h4);
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.75rem;
}
.pricing-card__price {
    font-family: var(--f-display);
    font-size: var(--fs-h2);
    font-weight: 400;
    color: var(--violet);
    margin-bottom: 0.25rem;
}
.pricing-card__duration {
    font-size: var(--fs-sm);
    color: var(--silver);
    margin-bottom: 1.25rem;
}
.pricing-card__features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.25rem;
}
.pricing-card__features li {
    padding: 0.375rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: var(--fs-sm);
    color: var(--slate);
    border-bottom: 1px solid var(--border);
}
.pricing-card__features li:last-child { border-bottom: none; }
.pricing-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--violet);
    font-weight: 700;
}
.pricing-card__note {
    font-size: var(--fs-xs);
    color: var(--silver);
    font-style: italic;
}


/* ——— INFO BOX ——— */
.info-box {
    background: var(--violet-light);
    border-radius: var(--radius-xl);
    padding: clamp(1.25rem, 3vw, 2rem);
    margin-top: 2rem;
}
.info-box__title {
    font-weight: 600;
    color: var(--violet-dark);
    margin-bottom: 0.5rem;
}
.info-box p:not(.info-box__title) {
    font-size: var(--fs-sm);
    color: var(--slate);
    line-height: 1.7;
}


/* ——— BLOG CARD CATEGORY ——— */
.blog-card__category {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--violet);
    margin-bottom: 0.5rem;
}

/* Blog card placeholder gradient (when no image) */
.blog-card__image:empty {
    background: linear-gradient(135deg, var(--violet-light) 0%, var(--cloud) 60%, var(--amber-light) 100%);
}


/* ——— FOOTER NEWSLETTER ——— */
.footer-newsletter {
    background: var(--ink);
    padding: clamp(2rem, 4vw, 3rem) 0;
}
.footer-newsletter__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-newsletter__text h3 {
    font-family: var(--f-display);
    font-size: var(--fs-h3);
    color: var(--white);
    font-weight: 400;
    margin-bottom: 0.25rem;
}
.footer-newsletter__text p {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,.6);
}
.footer-newsletter__form {
    display: flex;
    gap: 0.5rem;
}
.footer-newsletter__input {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.08);
    color: var(--white);
    font-size: var(--fs-sm);
    min-width: 260px;
    font-family: var(--f-body);
}
.footer-newsletter__input::placeholder { color: rgba(255,255,255,.4); }
.btn-violet {
    background: var(--violet);
    color: var(--white);
}
.btn-violet:hover {
    background: var(--violet-dark);
}


/* ——— PRE-FOOTER CTA ——— */
.pre-footer-cta {
    background: var(--violet);
    padding: clamp(3rem, 6vw, 4rem) 0;
}
.pre-footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.pre-footer-cta__content h2 {
    font-family: var(--f-display);
    font-size: var(--fs-h2);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.pre-footer-cta__content p {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,.75);
}


/* ——— SITE FOOTER ——— */
.site-footer {
    background: var(--ink);
    color: rgba(255,255,255,.6);
    padding: clamp(3rem, 6vw, 5rem) 0 2rem;
    font-size: var(--fs-sm);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: var(--fs-body);
    margin-bottom: 1rem;
}
.footer-logo__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--violet);
    color: var(--white);
    border-radius: 10px;
    font-family: var(--f-display);
    font-size: 1.25rem;
    font-weight: 400;
}
.footer-about p {
    line-height: 1.7;
    margin-bottom: 1rem;
}
.footer-disclaimer {
    opacity: 0.5;
}
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}
.footer-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    transition: all var(--transition);
}
.footer-social__link:hover { background: var(--violet); }
.footer-social__link svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255,255,255,.6);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.footer-social__link:hover svg { stroke: var(--white); }
.footer-col h3 {
    color: var(--white);
    font-family: var(--f-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
    color: rgba(255,255,255,.5);
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-reassurance {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.08);
}
.footer-reassurance p {
    font-size: var(--fs-xs);
    color: rgba(255,255,255,.4);
    margin-bottom: 0.25rem;
}
.footer-bottom {
    padding-top: 1.5rem;
}
.footer-bottom__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}
.footer-bottom__links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom__links a {
    color: rgba(255,255,255,.4);
    font-size: var(--fs-xs);
    transition: color var(--transition);
}
.footer-bottom__links a:hover { color: var(--white); }
.footer-bottom__disclaimer {
    font-size: var(--fs-xs);
    color: rgba(255,255,255,.3);
    line-height: 1.6;
}


/* ——— RELATED CARD ——— */
.related-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    transition: all var(--transition);
}
.related-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.related-card__category {
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--violet);
    margin-bottom: 0.5rem;
    display: block;
}
.related-card__title {
    font-family: var(--f-display);
    font-size: var(--fs-h4);
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.related-card__excerpt {
    font-size: var(--fs-sm);
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.related-card__link {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--violet);
}


/* ——— FAQ SECTION (sub-pages) ——— */
.faq-section {
    padding: var(--section-pad) 0;
}
.faq-section__title {
    font-family: var(--f-display);
    font-size: var(--fs-h2);
    font-weight: 400;
    color: var(--ink);
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}


/* ——— CTA COMPONENT ——— */
.cta-box {
    background: var(--violet);
    border-radius: var(--radius-xl);
    padding: clamp(2rem, 4vw, 3rem);
    text-align: center;
}
.cta-box h3 {
    font-family: var(--f-display);
    font-size: var(--fs-h3);
    color: var(--white);
    font-weight: 400;
    margin-bottom: 0.75rem;
}
.cta-box p {
    color: rgba(255,255,255,.75);
    margin-bottom: 1.5rem;
    font-size: var(--fs-sm);
}


/* ——— UTILITY ——— */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-auto { margin-top: auto; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
