/* ==========================================================================
   VendMieux — Main Stylesheet
   Dark-themed SaaS site for AI sales training simulator
   Design system matching the React application
   ========================================================================== */

/* ==========================================================================
   1. CSS VARIABLES
   ========================================================================== */
:root {
    /* Backgrounds — clear hierarchy */
    --bg: #0F1117;
    --surface: #1A1D2E;
    --card: #222640;
    --border: rgba(255,255,255,0.08);
    --border-active: rgba(255,255,255,0.18);
    --border-accent: rgba(255,107,53,0.35);
    --bg-elevated: #222640;
    --bg-input: #2A2D45;

    /* Accent orange VendMieux */
    --accent: #FF6B35;
    --accent-light: #FF8C5A;
    --accent-glow: rgba(255,107,53,0.15);
    --accent-soft: rgba(255,107,53,0.08);
    --accent-dim: rgba(255,107,53,0.12);
    --primary: var(--accent);

    /* Blue secondary */
    --blue: #4F8EF7;
    --blue-light: #7AABFF;
    --blue-dim: rgba(79,142,247,0.15);

    /* Semantic colors */
    --gold: #F59E0B;
    --gold-glow: rgba(245, 158, 11, 0.15);
    --green: #22C55E;
    --green-glow: rgba(34, 197, 94, 0.15);
    --green-dim: rgba(34, 197, 94, 0.12);
    --red: #EF4444;
    --red-glow: rgba(239, 68, 68, 0.15);
    --violet: #8B5CF6;
    --violet-glow: rgba(139, 92, 246, 0.15);
    --warning: #F59E0B;
    --warning-dim: rgba(245, 158, 11, 0.12);

    /* Success / Error backgrounds */
    --success-bg: rgba(34,197,94,0.12);
    --error-bg: rgba(239,68,68,0.12);

    /* Typography — high contrast */
    --text: #F0F2FF;
    --text-bright: #F0F2FF;
    --text-secondary: #CDD2F0;
    --text-muted: #A0A8CC;
    --muted: #A0A8CC;
    --muted-light: #B8BCDB;

    /* Spacing */
    --nav-height: 72px;
    --section-padding: 80px;
    --container-max: 1200px;
    --container-narrow: 800px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-sm: 8px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px var(--accent-glow);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition: 250ms ease;
    --transition-slow: 400ms ease;
}

/* ==========================================================================
   LIGHT THEME
   ========================================================================== */
[data-theme="light"] {
    --bg: #F5F6FA;
    --surface: #FFFFFF;
    --card: #FFFFFF;
    --border: rgba(0,0,0,0.08);
    --border-active: rgba(0,0,0,0.18);
    --border-accent: rgba(255,107,53,0.35);
    --bg-elevated: #FFFFFF;
    --bg-input: #F0F1F5;

    --accent: #E85A2A;
    --accent-light: #FF6B35;
    --accent-glow: rgba(232,90,42,0.12);
    --accent-soft: rgba(232,90,42,0.06);
    --accent-dim: rgba(232,90,42,0.08);
    --primary: var(--accent);

    --blue: #3B7CE5;
    --blue-light: #5A94F0;
    --blue-dim: rgba(59,124,229,0.1);

    --gold: #D97706;
    --gold-glow: rgba(217,119,6,0.1);
    --green: #16A34A;
    --green-glow: rgba(22,163,74,0.1);
    --green-dim: rgba(22,163,74,0.08);
    --red: #DC2626;
    --red-glow: rgba(220,38,38,0.1);
    --violet: #7C3AED;
    --violet-glow: rgba(124,58,237,0.1);
    --warning: #D97706;
    --warning-dim: rgba(217,119,6,0.08);

    --success-bg: rgba(22,163,74,0.08);
    --error-bg: rgba(220,38,38,0.08);

    --text: #1A1D2E;
    --text-bright: #0F1117;
    --text-secondary: #4A4F6A;
    --text-muted: #6B7094;
    --muted: #6B7094;
    --muted-light: #8890B0;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 30px var(--accent-glow);
}
[data-theme="light"] .card {
    box-shadow: var(--shadow-sm);
}
[data-theme="light"] .nav {
    background: rgba(255,255,255,0.92);
    border-bottom: 1px solid var(--border);
}
[data-theme="light"] .footer {
    background: #1A1D2E;
    --text: #F0F2FF;
    --muted: #A0A8CC;
}
[data-theme="light"] .footer a {
    color: #A0A8CC;
}
[data-theme="light"] .footer a:hover {
    color: #F0F2FF;
}
[data-theme="light"] .footer h4 {
    color: #F0F2FF;
}
[data-theme="light"] .footer-desc {
    color: #A0A8CC;
}
[data-theme="light"] .footer-bottom p {
    color: #6B7094;
}
[data-theme="light"] .hero {
    background: linear-gradient(180deg, #EEF0F8 0%, #F5F6FA 100%);
}
[data-theme="light"] .cta-section {
    background: linear-gradient(180deg, #EEF0F8 0%, #F5F6FA 100%);
}

/* ---------- Theme toggle button ---------- */
.theme-toggle {
    background: none;
    border: 1px solid var(--border);
    color: var(--muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}
.theme-toggle:hover {
    border-color: var(--border-active);
    color: var(--text);
    background: var(--accent-soft);
}

/* ---------- First-visit theme modal ---------- */
.theme-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}
.theme-modal {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    max-width: 380px;
    width: 90%;
    text-align: center;
}
.theme-modal h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}
.theme-modal p {
    font-size: 0.8125rem;
    color: var(--muted);
    margin-bottom: 24px;
}
.theme-modal-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.theme-modal-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: inherit;
}
.theme-modal-btn:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
}
.theme-modal-btn span {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 6px;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


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

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

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

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--muted);
}


/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
    color: var(--text-bright);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

strong, b {
    font-weight: 600;
    color: var(--text-bright);
}

a:hover {
    color: var(--accent-light);
}

.text-accent {
    color: var(--accent-light);
}

.text-gold {
    color: var(--gold);
}

.text-green {
    color: var(--green);
}

.text-red {
    color: var(--red);
}

.text-violet {
    color: var(--violet);
}

.text-muted {
    color: var(--muted);
}

.text-bright {
    color: var(--text-bright);
}

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

.text-left {
    text-align: left;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, var(--violet) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--muted-light);
    line-height: 1.8;
    max-width: 640px;
}

.eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-light);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.overline {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: 12px;
    display: block;
}

.lead {
    font-size: 1.25rem;
    color: var(--text);
    line-height: 1.7;
}

.highlight {
    color: var(--accent-light);
    font-weight: 700;
}


/* ==========================================================================
   4. NAVIGATION
   ========================================================================== */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 13, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 42, 69, 0.5);
    height: var(--nav-height);
    display: flex;
    align-items: center;
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    font-weight: 800;
    font-size: 1.125rem;
    border-radius: 10px;
    letter-spacing: -0.02em;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--muted-light);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-bright);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav dropdown */
.nav-mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 13, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    padding: 32px 24px;
    gap: 8px;
    overflow-y: auto;
}

.nav-mobile-menu.open {
    display: flex;
}

.nav-mobile-menu a {
    display: block;
    padding: 14px 20px;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.nav-mobile-menu a:hover {
    background: var(--surface);
    color: var(--accent-light);
}

.nav-mobile-menu .btn {
    margin-top: 16px;
    text-align: center;
}


/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.4;
    font-family: inherit;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

/* Primary */
.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(212, 133, 74, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 24px rgba(212, 133, 74, 0.45);
    color: #fff;
}

/* Outline */
.btn-outline {
    background: transparent;
    color: var(--accent-light);
    border-color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent-glow);
    color: var(--accent-light);
    border-color: var(--accent-light);
}

/* Gold */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), #D97706);
    color: #000;
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25);
}

.btn-gold:hover {
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.4);
    color: #000;
}

/* Ghost */
.btn-ghost {
    background: transparent;
    color: var(--muted-light);
    border-color: var(--border);
}

.btn-ghost:hover {
    background: var(--surface);
    color: var(--text);
    border-color: var(--muted);
}

/* White (for use on colored backgrounds) */
.btn-white {
    background: #fff;
    color: var(--accent);
    border-color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    background: #F0F6FF;
    color: var(--accent);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

/* Sizes */
.btn-sm {
    padding: 8px 18px;
    font-size: 0.8125rem;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.0625rem;
    border-radius: var(--radius-lg);
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius-sm);
}

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

/* Button row */
.btn-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-row-center {
    justify-content: center;
}


/* ==========================================================================
   6. LAYOUT / SECTIONS
   ========================================================================== */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-sm {
    padding: 48px 0;
}

.section-lg {
    padding: 120px 0;
}

.section-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.section-header .subtitle {
    margin: 16px auto 0;
}

.section-header p {
    color: var(--muted-light);
    font-size: 1.0625rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-surface {
    background: var(--surface);
}

.section-card {
    background: var(--card);
}

.divider {
    height: 1px;
    background: var(--border);
    border: none;
    margin: 0;
}

.separator-gradient {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    border: none;
}


/* ==========================================================================
   7. HERO SECTIONS
   ========================================================================== */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero .section-inner {
    position: relative;
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.hero .subtitle,
.hero .hero-subtitle {
    font-size: 1.25rem;
    margin: 0 auto 2rem;
    max-width: 640px;
    color: var(--muted-light);
    line-height: 1.7;
}

.hero .sub-text {
    font-size: 0.8125rem;
    color: var(--muted);
    margin-top: 16px;
}

.hero .btn-row {
    justify-content: center;
    margin-top: 2rem;
}

/* Demo page hero variant */
.demo-hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.demo-hero::before {
    background: radial-gradient(ellipse, rgba(212, 133, 74, 0.12) 0%, transparent 60%);
}

/* Hero with screenshot/visual */
.hero-visual {
    position: relative;
    margin-top: 3rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg), 0 0 60px var(--accent-glow);
}

.hero-visual img {
    width: 100%;
    display: block;
}


/* ==========================================================================
   8. CARDS
   ========================================================================== */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
    position: relative;
}

.card:hover {
    border-color: rgba(51, 119, 255, 0.3);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-2px);
}

.card-flat {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.card-flat:hover {
    border-color: var(--border);
    box-shadow: none;
    transform: none;
}

.card-surface {
    background: var(--surface);
}

.card-elevated {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.card-header {
    margin-bottom: 16px;
}

.card-icon {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.card-body {
    color: var(--muted-light);
    line-height: 1.7;
}

.card h3 {
    margin-bottom: 10px;
    line-height: 1.3;
}

.card p {
    font-size: 0.9375rem;
    color: var(--muted-light);
    line-height: 1.7;
}

.card-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}


/* ==========================================================================
   9. GRID LAYOUTS
   ========================================================================== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

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

.grid-sidebar {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
}

.grid-content {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
}

.gap-sm {
    gap: 16px;
}

.gap-lg {
    gap: 32px;
}

.gap-xl {
    gap: 48px;
}


/* ==========================================================================
   10. BADGES
   ========================================================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    white-space: nowrap;
    line-height: 1.5;
}

.badge-blue {
    background: var(--accent-glow);
    color: var(--accent-light);
    border: 1px solid rgba(212, 133, 74, 0.25);
}

.badge-green {
    background: var(--green-glow);
    color: var(--green);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.badge-gold {
    background: var(--gold-glow);
    color: var(--gold);
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.badge-red {
    background: var(--red-glow);
    color: var(--red);
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.badge-violet {
    background: var(--violet-glow);
    color: var(--violet);
    border: 1px solid rgba(139, 92, 246, 0.25);
}

.badge-dark {
    background: var(--surface);
    color: var(--muted-light);
    border: 1px solid var(--border);
}

.badge-accent {
    background: var(--accent-glow);
    color: var(--accent-light);
    border: 1px solid rgba(212, 133, 74, 0.25);
}

.badge-lg {
    padding: 6px 16px;
    font-size: 0.8125rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s infinite;
}


/* ==========================================================================
   11. STATS BAR
   ========================================================================== */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 40px 0;
    flex-wrap: wrap;
}

.stats-bar-surface {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-bar-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.stat-item,
.stats-bar .stat {
    text-align: center;
}

.stat-number,
.stats-bar .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-bright);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.stat-number-accent {
    color: var(--accent-light);
}

.stat-number-gold,
.stat-value-gold {
    color: var(--gold);
}

.stat-label,
.stats-bar .stat-label {
    font-size: 0.875rem;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 500;
}

.stats-bar .stat-sub {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 2px;
}


/* ==========================================================================
   12. FEATURE CARDS
   ========================================================================== */
.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: rgba(51, 119, 255, 0.3);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: var(--accent-glow);
    color: var(--accent-light);
    border: 1px solid rgba(212, 133, 74, 0.2);
}

.feature-icon-gold {
    background: var(--gold-glow);
    color: var(--gold);
    border-color: rgba(245, 158, 11, 0.2);
}

.feature-icon-green {
    background: var(--green-glow);
    color: var(--green);
    border-color: rgba(16, 185, 129, 0.2);
}

.feature-icon-violet {
    background: var(--violet-glow);
    color: var(--violet);
    border-color: rgba(139, 92, 246, 0.2);
}

.feature-icon-red {
    background: var(--red-glow);
    color: var(--red);
    border-color: rgba(239, 68, 68, 0.2);
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--muted-light);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Large feature card (horizontal with image) */
.feature-card-lg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.feature-card-lg.reverse {
    direction: rtl;
}

.feature-card-lg.reverse > * {
    direction: ltr;
}

.feature-visual {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

/* Profile / persona cards */
.profile-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.profile-card:hover {
    border-color: rgba(51, 119, 255, 0.3);
    transform: translateY(-2px);
}

.profile-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}


/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-desc {
    color: var(--muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-bright);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--muted);
    font-size: 0.9375rem;
    padding: 4px 0;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    color: var(--muted);
    font-size: 0.8125rem;
}


/* ==========================================================================
   14. FORMS
   ========================================================================== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.9375rem;
    line-height: 1.5;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--muted);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A7090' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.form-hint {
    font-size: 0.8125rem;
    color: var(--muted);
    margin-top: 4px;
}

.form-error {
    font-size: 0.8125rem;
    color: var(--red);
    margin-top: 4px;
}

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

.form-inline {
    display: flex;
    gap: 12px;
    align-items: center;
}

.form-inline .form-input {
    flex: 1;
}


/* ==========================================================================
   15. COMPARISON TABLE
   ========================================================================== */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.comparison-table thead th {
    background: var(--card);
    padding: 16px 24px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-light);
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table thead th:first-child {
    color: var(--text-bright);
}

.comparison-table thead th.highlight {
    background: linear-gradient(180deg, rgba(212, 133, 74, 0.15), var(--card));
    color: var(--accent-light);
}

.comparison-table tbody td {
    padding: 14px 24px;
    font-size: 0.9375rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody td:first-child {
    font-weight: 500;
    color: var(--text-bright);
}

.comparison-table tbody td.highlight {
    background: rgba(212, 133, 74, 0.05);
}

.comparison-table .check {
    color: var(--green);
    font-size: 1.25rem;
}

.comparison-table .cross {
    color: var(--muted);
    font-size: 1.25rem;
}

/* Grid-based before/after comparison */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.comparison-col {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.comparison-col.before {
    border-color: rgba(239, 68, 68, 0.2);
}

.comparison-col.after {
    border-color: rgba(16, 185, 129, 0.2);
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.05), var(--card));
}

.comparison-col h3 {
    margin-bottom: 16px;
}

.comparison-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-col li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--muted-light);
    line-height: 1.6;
}

.comparison-col li::before {
    flex-shrink: 0;
    margin-top: 2px;
    font-weight: 600;
}

.comparison-col.before li::before {
    content: '\2717';
    color: var(--red);
}

.comparison-col.after li::before {
    content: '\2713';
    color: var(--green);
}

/* Schools-style 3-column comparison */
.schools-comparison {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.schools-comparison > div {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    font-size: 0.9375rem;
}

.schools-comparison > div:nth-child(3n) {
    border-right: none;
}

.schools-comparison > div:nth-last-child(-n+3) {
    border-bottom: none;
}

.schools-comparison .comp-header {
    background: var(--card);
    font-weight: 600;
    color: var(--text-bright);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.schools-comparison .comp-label {
    background: var(--surface);
    font-weight: 500;
    color: var(--muted-light);
}


/* ==========================================================================
   16. FAQ ACCORDION
   ========================================================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: rgba(51, 119, 255, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-bright);
    cursor: pointer;
    text-align: left;
    transition: color var(--transition-fast);
    background: none;
    border: none;
    font-family: inherit;
    line-height: 1.4;
}

.faq-question:hover {
    color: var(--accent-light);
}

.faq-chevron {
    color: var(--muted);
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.2s;
    margin-left: 12px;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow) ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--muted-light);
    line-height: 1.8;
    font-size: 0.9375rem;
}

/* Fallback for JS toggle using display */
.faq-answer-content {
    padding: 0 24px 20px;
    color: var(--muted-light);
    line-height: 1.8;
    font-size: 0.9375rem;
    display: none;
}

.faq-item.open .faq-answer-content {
    display: block;
}


/* ==========================================================================
   17. BLOG CARDS
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: rgba(51, 119, 255, 0.3);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-3px);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.8125rem;
    color: var(--muted);
}

.blog-card-meta .badge {
    font-size: 0.6875rem;
}

.blog-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--text-bright);
    transition: color var(--transition-fast);
}

.blog-card h3 a:hover {
    color: var(--accent-light);
}

.blog-card p {
    color: var(--muted-light);
    font-size: 0.875rem;
    line-height: 1.7;
    flex: 1;
}

.blog-card-footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 0.8125rem;
    color: var(--accent-light);
    font-weight: 500;
}

/* Blog article page */
.blog-article {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.blog-article h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.blog-article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.blog-article-content,
.article-content {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--text);
}

.blog-article-content h2,
.article-content h2 {
    font-size: 1.75rem;
    margin-top: 48px;
    margin-bottom: 16px;
}

.blog-article-content h3,
.article-content h3 {
    font-size: 1.375rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.blog-article-content p,
.article-content p {
    margin-bottom: 1.25rem;
}

.blog-article-content ul,
.blog-article-content ol,
.article-content ul,
.article-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.blog-article-content ul,
.article-content ul {
    list-style: disc;
}

.blog-article-content ol,
.article-content ol {
    list-style: decimal;
}

.blog-article-content li,
.article-content li {
    margin-bottom: 0.5rem;
    color: var(--muted-light);
    line-height: 1.8;
}

.blog-article-content blockquote,
.article-content blockquote {
    border-left: 3px solid var(--accent);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--accent-soft);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text);
}

.blog-article-content code,
.article-content code {
    background: var(--surface);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.875rem;
    color: var(--accent-light);
}

.blog-article-content a,
.article-content a {
    color: var(--accent-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-article-content a:hover,
.article-content a:hover {
    color: var(--accent);
}

.blog-article-content img,
.article-content img {
    border-radius: var(--radius);
    margin: 24px 0;
    border: 1px solid var(--border);
    max-width: 100%;
    width: 100%;
}

.blog-article-content strong,
.article-content strong {
    color: var(--text-bright);
    font-weight: 600;
}

/* Blog pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.blog-pagination a {
    color: var(--muted-light);
    border: 1px solid var(--border);
}

.blog-pagination a:hover {
    border-color: var(--accent);
    color: var(--accent-light);
    background: var(--accent-glow);
}

.blog-pagination .active {
    background: var(--accent);
    color: #fff;
    border: 1px solid var(--accent);
}

/* Blog sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-sidebar-widget {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.blog-sidebar-widget h4 {
    margin-bottom: 16px;
    font-size: 1rem;
}

.blog-related {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-related-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.blog-related-item img {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.blog-related-item h5 {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text);
}

.blog-related-item h5:hover {
    color: var(--accent-light);
}


/* ==========================================================================
   18. PRICING CARDS
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border-color: var(--accent);
    box-shadow: 0 0 40px var(--accent-glow), 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: scale(1.03);
    z-index: 1;
    background: linear-gradient(180deg, var(--accent-soft) 0%, var(--card) 40%);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-badge,
.pricing-label {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 8px;
    margin-top: 8px;
}

.pricing-desc {
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.pricing-price {
    margin-bottom: 24px;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-bright);
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: super;
}

.pricing-period,
.pricing-price-suffix {
    font-size: 0.875rem;
    color: var(--muted);
    font-weight: 400;
}

.pricing-sessions {
    font-size: 0.875rem;
    color: var(--accent-light);
    font-weight: 600;
    margin: 12px 0 28px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-card .pricing-features {
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--muted-light);
    line-height: 1.5;
}

.pricing-feature::before {
    content: '\2713';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing-feature.disabled {
    color: var(--muted);
    opacity: 0.5;
}

.pricing-feature.disabled::before {
    content: '\2717';
    color: var(--muted);
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: var(--green-glow);
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
}

/* Volume note */
.volume-note {
    max-width: 560px;
    margin: 32px auto 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}


/* ==========================================================================
   19. TIMELINE / STEPS
   ========================================================================== */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 48px;
    bottom: 48px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--accent-glow), transparent);
}

.timeline-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    position: relative;
}

.timeline-marker {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--card);
    border: 2px solid var(--accent);
    color: var(--accent-light);
    font-weight: 700;
    font-size: 1rem;
    z-index: 1;
}

.timeline-content h3 {
    font-size: 1.125rem;
    margin-bottom: 6px;
}

.timeline-content p {
    color: var(--muted-light);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Horizontal steps */
.steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 240px;
    position: relative;
}

.step-number,
.step-num {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-glow);
    border: 2px solid var(--accent);
    color: var(--accent-light);
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.step-num-blue {
    background: var(--accent-glow);
    color: var(--accent-light);
    border-color: var(--accent);
}

.step-num-green {
    background: var(--green-glow);
    color: var(--green);
    border-color: var(--green);
}

.step-num-accent {
    background: var(--accent-glow);
    color: var(--accent-light);
    border-color: var(--accent);
}

.step-num-gold {
    background: var(--gold-glow);
    color: var(--gold);
    border-color: var(--gold);
}

.step-connector {
    position: absolute;
    top: 28px;
    left: calc(50% + 28px);
    width: calc(100% - 56px);
    height: 2px;
    background: var(--border);
}

.step-item:last-child .step-connector {
    display: none;
}

.step-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.step-item p {
    color: var(--muted-light);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Step card (boxed variant) */
.step-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    position: relative;
    transition: border-color var(--transition);
}

.step-card:hover {
    border-color: rgba(51, 119, 255, 0.3);
}


/* ==========================================================================
   20. TESTIMONIALS
   ========================================================================== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 3.5rem;
    font-family: Georgia, serif;
    color: rgba(212, 133, 74, 0.1);
    line-height: 1;
    pointer-events: none;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.875rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-quote {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    border: 1px solid rgba(212, 133, 74, 0.2);
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-bright);
}

.testimonial-role {
    font-size: 0.8125rem;
    color: var(--muted);
}


/* ==========================================================================
   21. CTA SECTIONS
   ========================================================================== */
.cta-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--surface) 0%, rgba(212, 133, 74, 0.08) 50%, var(--surface) 100%);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section .section-inner {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    position: relative;
}

.cta-section p {
    color: var(--muted-light);
    font-size: 1.125rem;
    max-width: 560px;
    margin: 0 auto 2rem;
    position: relative;
}

.cta-section .btn-row {
    justify-content: center;
    position: relative;
}

/* Strong CTA with full accent background */
.cta-section-strong {
    background: linear-gradient(135deg, var(--accent) 0%, #C4743A 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section-strong::before {
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.cta-section-strong h2,
.cta-section-strong p {
    color: #fff;
}

.cta-section-strong .btn-primary {
    background: #fff;
    color: var(--accent);
    border-color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cta-section-strong .btn-primary:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    color: var(--accent);
}

.cta-section-strong .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.cta-section-strong .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}


/* ==========================================================================
   22. SCENARIO CARDS
   ========================================================================== */
.scenario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.scenario-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
    cursor: default;
}

.scenario-card:hover {
    border-color: rgba(51, 119, 255, 0.3);
    box-shadow: 0 0 20px var(--accent-glow);
}

.scenario-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.scenario-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.scenario-card p {
    font-size: 0.875rem;
    color: var(--muted-light);
    line-height: 1.6;
}

.scenario-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

/* Filter tags */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    justify-content: center;
}

.filter-tag {
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    border: 1px solid var(--border);
    color: var(--muted-light);
    cursor: pointer;
    transition: all var(--transition-fast);
    background: transparent;
    font-family: inherit;
}

.filter-tag:hover {
    border-color: var(--accent);
    color: var(--accent-light);
}

.filter-tag.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}


/* ==========================================================================
   23. CONTACT PAGE
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    transition: border-color var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(51, 119, 255, 0.3);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--accent-glow);
    color: var(--accent-light);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 0.875rem;
    margin-bottom: 2px;
}

.contact-info-card p {
    color: var(--muted-light);
    font-size: 0.9375rem;
}

.contact-form-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.contact-iframe {
    width: 100%;
    height: 400px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}


/* ==========================================================================
   24. ANIMATIONS
   ========================================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px var(--accent-glow);
    }
    50% {
        box-shadow: 0 0 40px var(--accent-glow), 0 0 60px rgba(212, 133, 74, 0.1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease both;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease both;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease both;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease both;
}

.animate-scale-in {
    animation: scaleIn 0.4s ease both;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-glow {
    animation: glow 3s ease-in-out infinite;
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Staggered delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* Intersection observer reveal class */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================================================
   25. ADMIN PAGES
   ========================================================================== */
.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: calc(100vh - var(--nav-height));
}

.admin-sidebar {
    background: var(--surface);
    border-right: 1px solid var(--border);
    padding: 24px 16px;
}

.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--muted-light);
    transition: all var(--transition-fast);
    margin-bottom: 4px;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: var(--accent-glow);
    color: var(--accent-light);
}

.admin-content {
    padding: 32px;
    max-width: 1000px;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
}

.admin-header h1 {
    font-size: 1.75rem;
}

/* Admin table */
.admin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.admin-table thead th {
    background: var(--card);
    padding: 12px 16px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.admin-table tbody td {
    padding: 12px 16px;
    font-size: 0.9375rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.admin-table tbody tr:hover td {
    background: var(--card);
}

/* Admin login */
.admin-login {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--nav-height));
    padding: 24px;
}

.admin-login-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.admin-login-card h1 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.admin-login-card p {
    color: var(--muted);
    margin-bottom: 32px;
}

.admin-login-card .form-group {
    text-align: left;
}

.admin-login-card .btn {
    width: 100%;
    margin-top: 8px;
}

/* Admin status badges */
.admin-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.admin-status-published {
    background: var(--green-glow);
    color: var(--green);
}

.admin-status-draft {
    background: rgba(90, 112, 144, 0.15);
    color: var(--muted);
}

/* Alerts */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: var(--green-glow);
    color: var(--green);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.alert-error {
    background: var(--red-glow);
    color: var(--red);
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.alert-info {
    background: var(--accent-glow);
    color: var(--accent-light);
    border: 1px solid rgba(212, 133, 74, 0.25);
}

.alert-warning {
    background: var(--gold-glow);
    color: var(--gold);
    border: 1px solid rgba(245, 158, 11, 0.25);
}


/* ==========================================================================
   26. DECORATIVE & VISUAL ELEMENTS
   ========================================================================== */

/* Gradient orbs (background decoration) */
.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.orb-blue {
    background: var(--accent);
    opacity: 0.08;
}

.orb-violet {
    background: var(--violet);
    opacity: 0.06;
}

.orb-gold {
    background: var(--gold);
    opacity: 0.05;
}

/* Icon circle */
.icon-circle {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.icon-circle-blue {
    background: var(--accent-glow);
    color: var(--accent-light);
    border: 1px solid rgba(212, 133, 74, 0.2);
}

.icon-circle-green {
    background: var(--green-glow);
    color: var(--green);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.icon-circle-gold {
    background: var(--gold-glow);
    color: var(--gold);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.icon-circle-violet {
    background: var(--violet-glow);
    color: var(--violet);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

/* Number highlight (big stat) */
.number-highlight {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Checklist */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.6;
}

.checklist-item::before {
    content: '\2713';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Pill nav (tabs) */
.pill-nav {
    display: inline-flex;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 4px;
    gap: 4px;
}

.pill-nav-item {
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-light);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    background: transparent;
    font-family: inherit;
}

.pill-nav-item:hover {
    color: var(--text);
}

.pill-nav-item.active {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 2px 8px rgba(212, 133, 74, 0.3);
}

/* Loading states */
.skeleton {
    background: linear-gradient(90deg, var(--surface) 25%, var(--card) 50%, var(--surface) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

.skeleton-text {
    height: 16px;
    margin-bottom: 8px;
}

.skeleton-title {
    height: 28px;
    width: 70%;
    margin-bottom: 12px;
}

.skeleton-image {
    height: 200px;
    width: 100%;
}

.spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.spinner-sm {
    width: 20px;
    height: 20px;
    border-width: 2px;
}

/* Tooltip */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    padding: 6px 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    z-index: 100;
}

[data-tooltip]:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-8px);
}


/* ==========================================================================
   27. UTILITY CLASSES
   ========================================================================== */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.gap-xs { gap: 4px; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }
.gap-xl { gap: 32px; }
.gap-2xl { gap: 48px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mt-6 { margin-top: 64px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mb-6 { margin-bottom: 64px; }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.w-full { width: 100%; }
.max-w-narrow { max-width: var(--container-narrow); margin-left: auto; margin-right: auto; }
.max-w-container { max-width: var(--container-max); margin-left: auto; margin-right: auto; }

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

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: 9999px; }

.shadow { box-shadow: var(--shadow-md); }
.shadow-glow { box-shadow: var(--shadow-glow); }

.overflow-hidden { overflow: hidden; }
.relative { position: relative; }

.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }


/* ==========================================================================
   28. RESPONSIVE - TABLET (1024px)
   ========================================================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 64px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-sidebar {
        grid-template-columns: 1fr;
    }

    .grid-content {
        grid-template-columns: 1fr;
    }

    .feature-card-lg {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px;
    }

    .feature-card-lg.reverse {
        direction: ltr;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-col:last-child {
        grid-column: 1 / -1;
    }

    .schools-comparison {
        grid-template-columns: 140px 1fr 1fr;
    }

    .admin-layout {
        grid-template-columns: 200px 1fr;
    }
}


/* ==========================================================================
   29. RESPONSIVE - MOBILE (768px)
   ========================================================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 48px;
        --nav-height: 64px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    /* Nav mobile */
    .nav-links {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--bg);
        padding: 16px 20px;
        gap: 0;
        z-index: 999;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    }

    .nav-links.open a {
        display: block;
        padding: 14px 0;
        font-size: 1.125rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open a:last-child {
        border-bottom: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-actions .btn-outline:not(#navLogoutBtn) {
        display: none;
    }

    .nav-actions .btn-primary.btn-sm {
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    /* Hero mobile */
    .hero {
        padding: 64px 0 48px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero .subtitle {
        font-size: 1.0625rem;
    }

    /* Grid collapses */
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    /* Blog grid */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Testimonials */
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    /* Stats bar */
    .stats-bar {
        gap: 24px;
        padding: 32px 0;
    }

    .stat-number,
    .stats-bar .stat-value {
        font-size: 2rem;
    }

    /* Steps */
    .steps-row {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .step-connector {
        display: none;
    }

    .step-item {
        max-width: 100%;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-col:first-child {
        grid-column: 1 / -1;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-iframe {
        height: 500px;
    }

    /* Comparison */
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .schools-comparison {
        grid-template-columns: 1fr;
    }

    .schools-comparison .comp-header:first-child,
    .schools-comparison .comp-label {
        display: none;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Button row */
    .btn-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-row .btn {
        text-align: center;
    }

    /* Admin */
    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 16px;
        display: flex;
        gap: 8px;
        overflow-x: auto;
    }

    .admin-sidebar a {
        white-space: nowrap;
        margin-bottom: 0;
    }

    .admin-content {
        padding: 24px 16px;
    }

    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }

    /* CTA */
    .cta-section h2 {
        font-size: 1.75rem;
    }

    /* Section inner padding */
    .section-inner,
    .section-narrow {
        padding: 0 16px;
    }

    /* Blog article */
    .blog-article {
        padding: 32px 16px 64px;
    }

    .blog-article h1 {
        font-size: 1.75rem;
    }

    .blog-article-content h2,
    .article-content h2 {
        font-size: 1.375rem;
    }

    /* Number highlight */
    .number-highlight {
        font-size: 3rem;
    }

    /* Pill nav scroll on mobile */
    .pill-nav {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Comparison table */
    .comparison-table {
        display: block;
        overflow-x: auto;
    }
}


/* ==========================================================================
   30. RESPONSIVE - SMALL MOBILE (480px)
   ========================================================================== */
@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.875rem;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stats-bar {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .card {
        padding: 24px;
    }

    .feature-card {
        padding: 24px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .admin-login-card {
        padding: 32px 24px;
    }

    .number-highlight {
        font-size: 2.5rem;
    }

    .section-header {
        margin-bottom: 32px;
    }
}


/* ==========================================================================
   31. PRINT STYLES
   ========================================================================== */
@media print {
    body {
        background: #fff;
        color: #000;
    }

    .nav,
    .footer,
    .cta-section,
    .btn,
    .nav-hamburger,
    .nav-mobile-menu {
        display: none !important;
    }

    .section {
        padding: 24px 0;
    }

    .card,
    .feature-card,
    .testimonial-card,
    .blog-card {
        border: 1px solid #ccc;
        box-shadow: none;
        break-inside: avoid;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    h1, h2, h3, h4 {
        color: #000;
    }

    p, li, .subtitle, .muted {
        color: #333;
    }
}


/* ==========================================================================
   ACCUEIL — COMPOSANTS SPÉCIFIQUES
   ========================================================================== */

/* Step subtitle */
.step-subtitle {
    font-size: 0.8125rem;
    color: var(--muted);
    font-weight: 500;
    margin: 4px 0 0;
}

/* Call preview (hero) */
.call-preview {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    max-width: 480px;
    margin: 40px auto 0;
    text-align: left;
}

.call-preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.call-preview-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 16px;
    background: var(--accent-soft);
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
}

.badge-dot-sm {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 1.5s infinite;
}

.call-preview-timer {
    font-size: 12px;
    color: var(--muted);
    margin-left: auto;
    font-variant-numeric: tabular-nums;
}

.call-preview-contact {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-glow);
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
}
.avatar-m { width: 52px; height: 52px; font-size: 16px; }
.avatar-sm { width: 30px; height: 30px; font-size: 11px; }

.call-preview-name {
    font-size: 16px;
    font-weight: 600;
}
.call-preview-role {
    font-size: 12px;
    color: var(--muted);
}

/* Waveform placeholder */
.waveform-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 40px;
}
.waveform-bar {
    width: 3px;
    border-radius: 2px;
    background: var(--accent);
    opacity: 0.5;
    animation: waveform 1.2s ease-in-out infinite;
}
.waveform-bar:nth-child(1) { height: 12px; animation-delay: 0s; }
.waveform-bar:nth-child(2) { height: 24px; animation-delay: 0.1s; }
.waveform-bar:nth-child(3) { height: 18px; animation-delay: 0.2s; }
.waveform-bar:nth-child(4) { height: 30px; animation-delay: 0.3s; }
.waveform-bar:nth-child(5) { height: 20px; animation-delay: 0.4s; }
.waveform-bar:nth-child(6) { height: 26px; animation-delay: 0.5s; }
.waveform-bar:nth-child(7) { height: 14px; animation-delay: 0.6s; }

@keyframes waveform {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

.call-preview-hint {
    margin-top: 20px;
    padding: 12px 16px;
    background: var(--accent-soft);
    border-radius: 10px;
    border: 1px solid rgba(212, 133, 74, 0.12);
}
.call-preview-hint-label {
    font-size: 11px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 4px;
}
.call-preview-hint-text {
    font-size: 13px;
    color: var(--text);
    line-height: 1.5;
    transition: opacity 0.3s ease;
}

/* Hero multilingual badges */
.hero-langs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin: 16px 0 4px; }
.lang-badge { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
              border-radius: 20px; padding: 4px 12px; font-size: 13px; }
.hero-langs-label { text-align: center; font-size: 12px; color: var(--muted); margin-bottom: 24px; }

/* Hero mock animations */
.hero-mock-badge { animation: heroPulse 1.5s ease-in-out infinite; }
@keyframes heroPulse { 0%,100%{opacity:1} 50%{opacity:0.6} }
.hero-mock-avatar { transition: box-shadow 0.3s ease; }
.hero-mock-avatar.speaking { box-shadow: 0 0 0 3px rgba(212,133,74,0.4); }
.hero-waveform-bar { transition: height 0.15s ease; }

/* Multilingual banner (global) */
.multilang-banner {
    text-align: center; padding: 24px 20px;
    background: rgba(139,92,246,0.04); border: 1px solid rgba(139,92,246,0.12);
    border-radius: 14px; margin-bottom: 12px;
}
.multilang-title { font-size: 14px; font-weight: 600; margin-bottom: 10px; display: block; }
.multilang-flags { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 8px; }
.multilang-flags span { font-size: 14px; letter-spacing: 0.5px; }
.multilang-banner p { font-size: 12px; color: var(--muted); margin: 0; }

/* ── Dialogue carousel (accueil) ── */
.dlg-carousel {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--surface);
}
.dlg-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.dlg-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 28px 28px 20px;
}
.dlg-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.dlg-flag { font-size: 1.25rem; }
.dlg-lang-label {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--text);
}
.dlg-context {
    font-size: 0.75rem;
    color: var(--muted);
    margin-left: auto;
}
.dlg-lines { display: flex; flex-direction: column; gap: 12px; }
.dlg-line {
    font-size: 0.8125rem;
    line-height: 1.65;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--text-light, #e2e8f0);
}
.dlg-prospect {
    background: rgba(79, 142, 247, 0.06);
    border-left: 3px solid var(--blue);
}
.dlg-vendeur {
    background: rgba(212, 133, 74, 0.06);
    border-left: 3px solid var(--accent);
}
.dlg-who {
    font-weight: 700;
    margin-right: 4px;
}
.dlg-prospect .dlg-who { color: var(--blue); }
.dlg-vendeur .dlg-who { color: var(--accent); }

/* Dots */
.dlg-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px 0 16px;
    background: var(--surface);
    border-top: 1px solid var(--border);
}
.dlg-dot {
    background: none;
    border: 2px solid transparent;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 8px;
    transition: border-color 0.2s, background 0.2s;
    opacity: 0.5;
}
.dlg-dot:hover { opacity: 0.8; }
.dlg-dot.active {
    opacity: 1;
    border-color: var(--accent);
    background: var(--accent-soft);
}

/* Responsive */
@media (max-width: 640px) {
    .dlg-slide { padding: 20px 16px 14px; }
    .dlg-header { flex-wrap: wrap; gap: 4px; }
    .dlg-context { margin-left: 0; width: 100%; margin-top: 4px; }
    .dlg-line { font-size: 0.75rem; padding: 8px 10px; }
}

/* Language toggle (scenarios page) */
.lang-toggle-container {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    padding: 16px 24px; border-radius: 16px;
    margin: 24px auto 32px auto; max-width: 800px;
}
.lang-btn {
    min-width: 140px; height: 56px; padding: 12px 20px;
    font-size: 15px; font-family: inherit; border-radius: 12px;
    cursor: pointer; border: none;
    background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.7);
    transition: background 0.2s, color 0.2s;
}
.lang-btn:hover { background: rgba(255,255,255,0.10); }
.lang-btn.active { background: #F97316; color: #fff; font-weight: 600; }
[data-theme="light"] .lang-toggle-container {
    background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .lang-btn {
    background: rgba(0,0,0,0.03); color: rgba(0,0,0,0.55);
}
[data-theme="light"] .lang-btn:hover { background: rgba(0,0,0,0.07); }
[data-theme="light"] .lang-btn.active { background: #F97316; color: #fff; }
.sc-lang-badge {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.6875rem; font-weight: 600; padding: 3px 8px;
    border-radius: 4px; background: rgba(139,92,246,0.1); color: #8b5cf6;
    white-space: nowrap;
}

/* Produit page — animated mock elements */
.produit-sim-badge { animation: heroPulse 1.5s ease-in-out infinite; }
.produit-sim-avatar { transition: box-shadow 0.3s ease; }
.produit-sim-avatar.speaking { box-shadow: 0 0 0 3px rgba(212,133,74,0.4); }
.produit-waveform-bar { transition: height 0.15s ease; }
.bar-force { width: 0%; transition: width 0.8s cubic-bezier(0.4,0,0.2,1); }
.glow-in { animation: glowIn 0.5s ease forwards; }
@keyframes glowIn { from{box-shadow:0 0 0 rgba(34,197,94,0);opacity:0.5} to{box-shadow:0 0 20px rgba(34,197,94,0.4);opacity:1} }
.slide-up { animation: slideUp 0.4s ease forwards; }
@keyframes slideUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }

/* Multi-interlocuteurs animation */
.conv-typing { font-size: 12px; color: var(--muted); transition: opacity 0.3s; opacity: 0; min-height: 18px; }
.pop-in { animation: popIn 0.3s ease; }
@keyframes popIn { 0%{transform:scale(0.95);opacity:0.5} 100%{transform:scale(1);opacity:1} }

/* Dashboard preview */
.dashboard-preview {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 24px;
}

/* KPI cards */
.kpi-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 14px;
}
.kpi-icon { font-size: 14px; margin-bottom: 4px; }
.kpi-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}
.kpi-value {
    font-size: 22px;
    font-weight: 200;
    line-height: 1;
}
.kpi-trend { font-size: 10px; font-weight: 600; margin-top: 4px; }
.kpi-trend-up { color: var(--green); }
.kpi-trend-down { color: var(--red); }

/* Team ranking */
.team-ranking {
    background: var(--bg);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.team-ranking-header {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
    font-weight: 600;
}
.team-member {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(26, 42, 69, 0.3);
}
.team-member:last-child { border-bottom: none; }
.team-rank {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    width: 16px;
    text-align: center;
}
.team-rank-1 { color: var(--accent); }
.team-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}
.team-name { font-size: 12px; font-weight: 600; }
.team-role {
    font-size: 9px;
    color: var(--muted);
    background: rgba(90, 112, 144, 0.1);
    padding: 1px 6px;
    border-radius: 4px;
}
.team-streak {
    font-size: 9px;
    color: var(--green);
    background: var(--green-glow);
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 700;
}
.team-score { font-size: 16px; font-weight: 300; min-width: 36px; text-align: right; }
.team-trend { font-size: 10px; font-weight: 600; min-width: 32px; text-align: right; }
.team-trend-up { color: var(--green); }
.team-trend-down { color: var(--red); }

/* Team progress bars */
.team-bar {
    flex: 1; min-width: 60px; height: 6px;
    background: var(--border); border-radius: 3px; overflow: hidden;
}
.team-bar-fill {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 3px;
    transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.team-bar-fill.animated { width: var(--bar-width); }

/* Team row animation */
.team-row {
    opacity: 0; transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.team-row.visible { opacity: 1; transform: none; }

/* LIVE badge */
.badge-live {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
    color: var(--green); margin-left: 10px;
    transition: opacity 0.6s ease;
}
.badge-live-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green);
    animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
    50% { opacity: 0.4; box-shadow: 0 0 0 4px rgba(16,185,129,0); }
}

/* Live bar pulse */
.bar-fill-live.animated {
    animation: barPulse 3s ease-in-out infinite;
}
@keyframes barPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* KPI value flash */
.kpi-value { transition: color 0.6s ease; }

/* Dashboard alerts */
.dashboard-alerts {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.alert-card {
    flex: 1;
    min-width: 200px;
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    line-height: 1.4;
}
.alert-danger {
    background: var(--red-glow);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--text);
}
.alert-danger .alert-icon { color: var(--red); }
.alert-coaching {
    background: var(--accent-soft);
    border: 1px solid rgba(212, 133, 74, 0.2);
    color: var(--text);
}
.alert-coaching .alert-icon { color: var(--accent); }

/* Sectors grid */
.sectors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}
.sector-tag {
    padding: 6px 14px;
    border-radius: 8px;
    background: var(--card);
    border: 1px solid var(--border);
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

/* Responsive for new components */
@media (max-width: 640px) {
    .call-preview { padding: 20px 16px; }
    .dashboard-preview { padding: 16px; }
    .dashboard-preview .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .dashboard-alerts { flex-direction: column; }
}


/* ==========================================================================
   TARIFS — COMPOSANTS SPÉCIFIQUES
   ========================================================================== */

/* Badge dot green */
.badge-dot-green {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    display: inline-block;
}

/* Pricing toggle */
.pricing-toggle {
    display: flex;
    justify-content: center;
    padding: 24px 0 44px;
}
.pricing-toggle-inner {
    display: inline-flex;
    background: var(--card);
    border-radius: 10px;
    padding: 4px;
    border: 1px solid var(--border);
}
.pricing-toggle-btn {
    padding: 8px 20px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
}
.pricing-toggle-btn.active {
    background: var(--bg-elevated);
    color: var(--text);
}
.pricing-toggle-badge {
    background: var(--green-glow);
    color: var(--green);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
}

/* Pricing card accent variant */
.pricing-card-accent {
    max-width: 520px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--accent-soft) 0%, var(--card) 40%);
    border-color: rgba(212, 133, 74, 0.35);
    overflow: visible;
}

/* Tarif 2-column layout */
.tarif-2col {
    display: grid; grid-template-columns: 40% 60%; gap: 32px;
    max-width: 960px; margin: 0 auto; align-items: start;
}
.tarif-left { display: flex; flex-direction: column; gap: 20px; }
.tarif-feature-list { display: flex; flex-direction: column; gap: 8px; }
.tarif-feat {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.8125rem; line-height: 1.5;
}
.tarif-testimonial {
    background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
    padding: 16px 18px;
}
.tarif-rgpd {
    display: flex; align-items: center; gap: 10px;
    background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.12);
    border-radius: 10px; padding: 12px 14px;
}
.tarif-right { position: relative; }
.tarif-bubble {
    background: var(--card); border: 1px solid var(--border); border-radius: 12px;
    padding: 10px 14px; display: inline-flex; flex-direction: column; gap: 2px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15); margin-bottom: 12px;
}
.tarif-bubble-top { }
.tarif-bubble-bottom { margin-top: 12px; margin-bottom: 0; }
.bubble-icon { font-size: 18px; }
.bubble-text { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.bubble-value { font-size: 20px; font-weight: 200; color: var(--accent); }
.floating { animation: tarifFloat 3s ease-in-out infinite; }
.floating-delayed { animation: tarifFloat 3s ease-in-out 1.5s infinite; }
@keyframes tarifFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.tarif-card-main { animation: cardGlow 3s ease-in-out infinite; }
@keyframes cardGlow { 0%,100%{box-shadow:0 0 20px rgba(212,133,74,0.1)} 50%{box-shadow:0 0 40px rgba(212,133,74,0.3)} }
.tarif-live-counter {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 16px; font-size: 13px; color: var(--muted);
}
.tarif-live-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--green);
    animation: livePulseDot 1.2s ease infinite; display: inline-block;
}
@keyframes livePulseDot { 0%,100%{opacity:1} 50%{opacity:0.3} }
@media (max-width: 768px) {
    .tarif-2col { grid-template-columns: 1fr; }
    .tarif-right { order: -1; }
}

/* ROI card */
.roi-card {
    background: linear-gradient(135deg, var(--accent-soft), rgba(212, 133, 74, 0.05));
    border: 1px solid rgba(212, 133, 74, 0.2);
    border-radius: 16px;
    padding: 28px 24px;
}
.roi-result {
    margin-top: 16px;
    padding: 10px 14px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

/* Callout card */
.callout-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

/* Responsive tarifs */
@media (max-width: 640px) {
    .roi-card .grid-2 {
        grid-template-columns: 1fr;
    }
    .callout-card {
        flex-direction: column;
        text-align: center;
    }
}


/* ==========================================================================
   PRODUIT — COMPOSANTS SPÉCIFIQUES
   ========================================================================== */

/* Reduce gap between hero and first step */
.produit-steps-start {
    padding-top: 40px;
}

/* Step detail layout */
.step-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.step-detail-reverse { direction: rtl; }
.step-detail-reverse > * { direction: ltr; }

.step-detail-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.step-detail-num {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
}
.step-detail-num-blue { background: var(--blue-dim); color: var(--blue); }
.step-detail-num-accent { background: var(--accent-soft); color: var(--accent); }
.step-detail-num-green { background: var(--green-glow); color: var(--green); }

/* Step features list */
.step-features { display: flex; flex-direction: column; gap: 10px; }
.step-feature { display: flex; gap: 10px; align-items: flex-start; }
.step-feature-check {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.step-feature-check-blue { background: var(--blue-dim); color: var(--blue); }
.step-feature-check-accent { background: var(--accent-soft); color: var(--accent); }
.step-feature-check-green { background: var(--green-glow); color: var(--green); }
.step-feature-title { font-size: 0.8125rem; font-weight: 600; margin-bottom: 2px; }
.step-feature-desc { font-size: 0.75rem; color: var(--muted); line-height: 1.5; }

/* Brief visual */
.brief-visual {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
}
.brief-objective {
    background: var(--blue-dim);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 14px;
}
.brief-label {
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--muted);
    margin-bottom: 6px;
    text-transform: uppercase;
}
.brief-block {
    background: var(--bg-elevated);
    border-radius: 10px;
    padding: 12px 14px;
}
.brief-bullet {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-bottom: 4px;
    font-size: 0.75rem;
    color: var(--muted);
}
.brief-dot { font-size: 7px; }

/* Sim visual */
.sim-visual {
    background: var(--bg-elevated);
    border: 1px solid var(--border-active);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 0 30px rgba(255,107,53,0.08);
}
.sim-visual-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}
.avatar-lg { width: 72px; height: 72px; font-size: 22px; }
.sim-tip {
    background: var(--surface);
    border-radius: 10px;
    padding: 10px 12px;
    text-align: left;
}
.sim-tip-label { font-size: 0.5625rem; font-weight: 700; margin-bottom: 4px; }
.sim-tip-text { font-size: 0.75rem; line-height: 1.4; }

/* Debrief visual */
.debrief-visual {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
}
.debrief-bars { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.debrief-bar-row { display: flex; align-items: center; gap: 10px; }
.debrief-bar-label { font-size: 0.6875rem; color: var(--muted); width: 110px; text-align: right; flex-shrink: 0; }
.debrief-bar-track { flex: 1; height: 5px; background: var(--bg-elevated); border-radius: 3px; overflow: hidden; }
.debrief-bar-fill { height: 100%; border-radius: 3px; }
.debrief-bar-green { background: var(--green); }
.debrief-bar-amber { background: var(--gold); }
.debrief-bar-red { background: var(--red); }
.debrief-bar-score { font-size: 0.8125rem; font-weight: 700; width: 24px; }
.debrief-advice {
    background: var(--accent-soft);
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(212, 133, 74, 0.2);
}

/* Tags */
.tag-row { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 10px; }
.tag {
    font-size: 0.5625rem;
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(90, 112, 144, 0.08);
    color: var(--muted);
    font-weight: 600;
}

/* Multi-interlocuteurs */
.multi-participant {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 14px;
    background: var(--bg-elevated);
    border-radius: 12px;
    margin-bottom: 10px;
}
.multi-participant-you {
    background: var(--accent-soft);
    border: 1px solid rgba(212, 133, 74, 0.2);
}
.multi-name { font-size: 0.8125rem; font-weight: 600; margin-bottom: 4px; }
.multi-focus { font-size: 0.6875rem; color: var(--muted); margin-bottom: 4px; }
.multi-quote {
    font-size: 0.75rem;
    font-style: italic;
    background: var(--card);
    border-radius: 8px;
    padding: 6px 10px;
    margin-top: 4px;
}
.multi-features { display: flex; flex-direction: column; gap: 10px; }
.multi-feature-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.multi-feature-icon { font-size: 18px; flex-shrink: 0; }
.multi-feature-title { font-size: 0.8125rem; font-weight: 600; margin-bottom: 3px; }
.multi-feature-desc { font-size: 0.75rem; color: var(--muted); line-height: 1.5; }
.multi-callout {
    background: var(--violet-glow);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 14px 16px;
    margin-top: 10px;
}

/* FORCE 3D cards */
.force3d-cards {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.force3d-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 18px;
    width: 170px;
    text-align: center;
}
.force3d-letter {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin: 0 auto 12px;
}
.force3d-name { font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; }
.force3d-desc { font-size: 0.6875rem; color: var(--muted); line-height: 1.5; }

/* Profile highlight badge */
.profile-highlight {
    font-size: 0.6875rem;
    color: var(--accent);
    font-weight: 600;
    padding: 6px 10px;
    background: var(--accent-soft);
    border-radius: 8px;
    display: inline-block;
    margin-top: 12px;
}

/* Spec cards */
.spec-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
}
.spec-icon { font-size: 20px; flex-shrink: 0; }
.spec-header { display: flex; align-items: center; gap: 8px; }
.spec-label { font-size: 0.75rem; color: var(--muted); }
.spec-value { font-size: 0.8125rem; font-weight: 600; }
.spec-detail { font-size: 0.6875rem; color: var(--muted); margin-top: 3px; }

/* Responsive produit */
@media (max-width: 768px) {
    .step-detail {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .step-detail-reverse { direction: ltr; }
    .force3d-cards { gap: 8px; }
    .force3d-card { width: 140px; padding: 16px 12px; }
}
@media (max-width: 640px) {
    .force3d-card { width: 100%; max-width: 280px; }
}

/* ==========================================================================
   ÉCOLES PAGE
   ========================================================================== */

/* Badge violet */
.badge-violet {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: 20px;
    background: var(--violet-glow); color: var(--violet);
    font-size: 0.75rem; font-weight: 600;
    border: 1px solid rgba(139,92,246,0.2);
}
.badge-violet-sm {
    display: inline-flex; padding: 2px 10px; border-radius: 10px;
    font-size: 0.625rem; font-weight: 700; letter-spacing: 0.3px;
    background: var(--violet-glow); color: var(--violet);
}
.badge-muted-sm {
    display: inline-flex; padding: 2px 10px; border-radius: 10px;
    font-size: 0.625rem; font-weight: 700; letter-spacing: 0.3px;
    background: rgba(90,112,144,0.12); color: var(--muted);
}

/* Overline label */
.overline {
    font-size: 0.625rem; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}

/* Pillar cards (solution section) */
.pillar-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 18px;
    padding: 28px; display: grid; grid-template-columns: 1fr 280px;
    gap: 24px; align-items: center; margin-bottom: 20px;
}
.pillar-content { }
.pillar-visual {
    background: var(--surface); border-radius: 14px; padding: 18px; text-align: center;
}
.pillar-features { display: flex; flex-direction: column; gap: 6px; }
.pillar-feature { display: flex; gap: 8px; align-items: center; }
.pillar-feature span { font-size: 0.75rem; color: var(--muted); }
.pillar-check {
    width: 16px; height: 16px; border-radius: 5px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.5rem; font-weight: 700; flex-shrink: 0;
}

/* Score bars (reused in pillar visuals) */
.score-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.score-bar-label { font-size: 0.625rem; color: var(--muted); width: 80px; text-align: right; }
.score-bar-track { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.score-bar-fill { height: 100%; border-radius: 2px; }
.score-bar-value { font-size: 0.6875rem; font-weight: 600; width: 20px; }

/* Numbers card */
.numbers-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 20px;
    padding: 36px 32px;
}

/* Comparison table modern (grid-based) */
.comparison-table-modern {
    background: var(--card); border: 1px solid var(--border); border-radius: 18px;
    overflow: hidden;
}
.compare-header {
    display: grid; grid-template-columns: 200px 1fr 1fr;
    border-bottom: 1px solid var(--border);
}
.compare-row {
    display: grid; grid-template-columns: 200px 1fr 1fr;
    border-bottom: 1px solid rgba(26,42,69,0.4);
}
.compare-row:last-child { border-bottom: none; }
.compare-cell { padding: 10px 18px; font-size: 0.75rem; }
.compare-feature { font-weight: 600; }
.compare-header .compare-old {
    font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.8px;
    text-transform: uppercase; color: var(--red);
}
.compare-header .compare-new {
    font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.8px;
    text-transform: uppercase; color: var(--green);
    background: var(--green-glow);
}
.compare-row .compare-old { color: var(--muted); }
.compare-row .compare-new {
    color: var(--green); font-weight: 500;
    background: rgba(16,185,129,0.03);
}

/* School pricing card */
.school-pricing-card {
    background: var(--card); border: 1px solid rgba(212,133,74,0.2);
    border-radius: 20px; padding: 32px 28px; position: relative; overflow: hidden;
}
.school-pricing-bar {
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}
.school-pricing-feature { display: flex; gap: 8px; align-items: center; }
.school-pricing-feature span { font-size: 0.8125rem; }
.school-pricing-check {
    width: 18px; height: 18px; border-radius: 5px;
    background: var(--green-glow); display: flex; align-items: center;
    justify-content: center; font-size: 0.5625rem; color: var(--green);
    font-weight: 700; flex-shrink: 0;
}

/* Onboarding timeline */
.onboarding-timeline {
    display: flex; gap: 0; justify-content: center; flex-wrap: wrap; align-items: center;
}
.onboarding-step {
    background: var(--card); border: 1px solid var(--border); border-radius: 16px;
    padding: 20px 22px; width: 190px; text-align: center;
}
.onboarding-num {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--accent-glow); display: flex; align-items: center;
    justify-content: center; font-size: 1rem; font-weight: 800;
    color: var(--accent); margin: 0 auto 10px;
}
.onboarding-connector { width: 32px; height: 2px; background: var(--border); flex-shrink: 0; }

/* Responsive écoles */
@media (max-width: 768px) {
    .pillar-card { grid-template-columns: 1fr; gap: 20px; }
    .compare-header, .compare-row { grid-template-columns: 1fr; }
    .compare-header .compare-feature,
    .compare-row .compare-feature { font-weight: 700; background: var(--surface); }
    .compare-header .compare-old, .compare-header .compare-new {
        display: block; padding: 6px 18px;
    }
    .onboarding-timeline { flex-direction: column; align-items: center; }
    .onboarding-connector { width: 2px; height: 20px; }
}

/* ==========================================================================
   ÉCOLES-TARIFS PAGE
   ========================================================================== */

/* Inclus items */
.inclus-items { display: flex; flex-direction: column; gap: 10px; }
.inclus-item { display: flex; gap: 8px; align-items: flex-start; }
.inclus-item span:last-child { font-size: 0.8125rem; color: var(--muted); line-height: 1.5; }
.inclus-check {
    display: inline-flex; align-items: center; justify-content: center;
    width: 18px; height: 18px; border-radius: 5px; flex-shrink: 0;
    background: var(--green-glow); color: var(--green);
    font-size: 0.625rem; font-weight: 700;
}

/* Formules table */
.formules-table {
    width: 100%; border-collapse: separate; border-spacing: 0;
    font-size: 0.8125rem; min-width: 560px;
}
.formules-table thead th {
    text-align: center; padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--muted); font-weight: 700;
    font-size: 0.625rem; letter-spacing: 0.8px; text-transform: uppercase;
}
.formules-table thead th:first-child { text-align: left; }
.formules-table tbody td {
    text-align: center; padding: 10px 16px;
    border-bottom: 1px solid rgba(26,42,69,0.3);
    font-weight: 400;
}
.formules-label { text-align: left !important; font-weight: 500 !important; }
.formules-highlight {
    background: rgba(212,133,74,0.04) !important;
    color: var(--accent);
}
.formules-table thead .formules-highlight { color: var(--accent); }
.formules-dash {
    display: inline-flex; align-items: center; justify-content: center;
    width: 18px; height: 18px; border-radius: 5px;
    background: rgba(92,94,102,0.1); color: var(--muted);
    font-size: 0.75rem; font-weight: 700;
}
.formules-prix-row td { border-bottom: none; }

/* Form label */
.form-label {
    display: block; font-size: 0.75rem; font-weight: 600;
    color: var(--muted); margin-bottom: 6px;
}

/* ==========================================================================
   SCENARIOS PAGE
   ========================================================================== */

.badge-accent-sm {
    display: inline-flex; padding: 3px 10px; border-radius: 16px;
    font-size: 0.625rem; font-weight: 700; letter-spacing: 0.3px;
    background: var(--accent-glow); color: var(--accent); text-transform: uppercase;
}
.scenario-stat-pill {
    background: var(--card); border: 1px solid var(--border); border-radius: 10px;
    padding: 10px 20px; text-align: center;
}

/* --- Scenarios page v2 --- */

.sc-filters {
    background: var(--card); border: 1px solid var(--border); border-radius: 16px;
    padding: 20px; margin-bottom: 24px;
}
.sc-search {
    width: 100%; padding: 11px 16px; background: var(--surface); border: 1px solid var(--border);
    border-radius: 10px; color: var(--text); font-size: 0.875rem; font-family: inherit;
    outline: none; box-sizing: border-box; margin-bottom: 16px; transition: border-color 0.2s;
}
.sc-search:focus { border-color: var(--accent); }
.sc-search::placeholder { color: var(--muted); }

.sc-filter-row { margin-bottom: 12px; }
.sc-filter-row:last-child { margin-bottom: 0; }
.sc-filter-label {
    font-size: 0.625rem; font-weight: 700; letter-spacing: 0.8px;
    text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.sc-filter-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sc-filter-tags-scroll {
    flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px;
    -ms-overflow-style: none; scrollbar-width: none;
}
.sc-filter-tags-scroll::-webkit-scrollbar { display: none; }

.sc-tag {
    padding: 6px 14px; border-radius: 20px; border: 1px solid #2A2F3E;
    background: transparent; color: #6B7280; font-size: 0.75rem; font-weight: 400;
    cursor: pointer; transition: all 0.2s; white-space: nowrap; font-family: inherit;
}
.sc-tag:hover { background: rgba(212,133,74,0.15); }
.sc-tag.active {
    background: #D4854A; border-color: #D4854A; color: #fff; font-weight: 600;
}
.sc-tag.active-green { background: #22C55E; border-color: #22C55E; color: #fff; font-weight: 600; }
.sc-tag.active-orange { background: #D4854A; border-color: #D4854A; color: #fff; font-weight: 600; }
.sc-tag.active-red { background: #EF4444; border-color: #EF4444; color: #fff; font-weight: 600; }

/* Scenario grid */
.sc-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

/* Enhanced scenario card */
.sc-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 16px;
    padding: 20px 18px; display: flex; flex-direction: column; gap: 10px;
    transition: all 0.3s ease; cursor: default;
}
.sc-card:hover {
    border-color: rgba(212,133,74,0.4); transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.sc-card-top { display: flex; justify-content: space-between; align-items: center; }
.sc-card-sector {
    font-size: 0.625rem; padding: 3px 8px; border-radius: 6px;
    background: var(--surface); color: var(--muted); font-weight: 500;
}
.sc-card-title {
    font-size: 0.875rem; font-weight: 600; margin: 0; line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Persona preview inside card */
.sc-persona {
    background: var(--surface); border-radius: 10px; padding: 10px 12px;
}
.sc-persona-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.sc-persona-avatar {
    width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.625rem; font-weight: 700; color: #fff;
}
.sc-persona-avatar.male { background: linear-gradient(135deg,#4A6B8A,#3A5B7A); }
.sc-persona-avatar.female { background: linear-gradient(135deg,#8B5E83,#6B4E73); }
.sc-persona-name { font-size: 0.75rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-persona-role { font-size: 0.625rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-persona-meta { display: flex; align-items: center; gap: 8px; font-size: 0.625rem; color: var(--muted); }
.sc-disc-letter { font-weight: 700; }
.sc-disc-D { color: #EF4444; }
.sc-disc-I { color: #F59E0B; }
.sc-disc-S { color: #22C55E; }
.sc-disc-C { color: #3B82F6; }

/* Card tags row */
.sc-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.sc-card-badge {
    font-size: 0.5625rem; padding: 2px 7px; border-radius: 5px;
    font-weight: 600; text-transform: uppercase;
}
.sc-card-meta-tag {
    font-size: 0.5625rem; padding: 2px 7px; border-radius: 5px;
    background: var(--surface); color: var(--muted);
}
.sc-card-multi { color: #8b5cf6; font-weight: 600; }

/* Card action buttons */
.sc-card-actions { display: flex; gap: 8px; margin-top: auto; }
.sc-btn-launch {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 4px;
    padding: 9px 0; border-radius: 8px; font-size: 0.75rem; font-weight: 600;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff; text-decoration: none; border: none; cursor: pointer; text-align: center;
}
.sc-btn-launch:hover { opacity: 0.9; }
.sc-btn-preview {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 4px;
    padding: 9px 0; border-radius: 8px; font-size: 0.75rem; font-weight: 500;
    background: var(--surface); color: var(--text); border: 1px solid var(--border);
    cursor: pointer; font-family: inherit;
}
.sc-btn-preview:hover { border-color: var(--accent); color: var(--accent-light); }

/* Difficulty badge */
.sc-diff { font-size: 0.6875rem; font-weight: 600; display: inline-flex; align-items: center; gap: 3px; }
.sc-diff-1 { color: #22C55E; }
.sc-diff-2 { color: #D4854A; }
.sc-diff-3 { color: #EF4444; }

/* Results bar */
.sc-results-bar {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px; flex-wrap: wrap; gap: 8px;
}
.sc-results-count { font-size: 0.8125rem; color: var(--muted); }
.sc-results-count strong { color: var(--accent); font-weight: 700; }
.sc-reset-btn {
    padding: 6px 14px; border-radius: 8px; border: 1px solid var(--border);
    background: transparent; color: var(--muted); font-size: 0.6875rem;
    cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.sc-reset-btn:hover { border-color: var(--accent); color: var(--accent-light); }

/* Pagination */
.sc-pagination {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    margin-top: 32px; flex-wrap: wrap;
}
.sc-page-btn {
    padding: 8px 12px; border-radius: 8px; border: 1px solid var(--border);
    background: transparent; color: var(--muted); font-size: 0.75rem;
    cursor: pointer; min-width: 36px; text-align: center; font-family: inherit;
    transition: all 0.2s;
}
.sc-page-btn:hover:not(:disabled):not(.active) { border-color: var(--accent); color: var(--accent-light); }
.sc-page-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; font-weight: 700; }
.sc-page-btn:disabled { opacity: 0.3; cursor: default; }
.sc-page-nav {
    padding: 8px 14px; border-radius: 8px; border: 1px solid var(--border);
    background: var(--surface); color: var(--text); font-size: 0.75rem; font-weight: 500;
    cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.sc-page-nav:hover:not(:disabled) { border-color: var(--accent); }
.sc-page-nav:disabled { opacity: 0.3; cursor: default; background: transparent; }
.sc-page-ellipsis { color: var(--muted); font-size: 0.75rem; padding: 0 4px; }

/* ===== PREVIEW PANEL (slide from right) ===== */
.sc-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0); z-index: 200;
    display: none; justify-content: flex-end;
    transition: background 0.3s ease;
}
.sc-overlay.open { display: flex; background: rgba(0,0,0,0.6); }

.sc-panel {
    width: 100%; max-width: 460px; height: 100%;
    background: var(--card); border-left: 1px solid var(--border);
    overflow-y: auto; padding: 28px 24px;
    transform: translateX(100%); transition: transform 0.3s ease;
}
.sc-overlay.open .sc-panel { transform: translateX(0); }

.sc-panel-header {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px;
}
.sc-panel-title {
    font-size: 0.6875rem; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: var(--muted);
}
.sc-panel-close {
    width: 32px; height: 32px; border-radius: 8px; background: var(--surface);
    border: 1px solid var(--border); display: flex; align-items: center;
    justify-content: center; font-size: 1.125rem; color: var(--muted);
    cursor: pointer; transition: all 0.2s;
}
.sc-panel-close:hover { border-color: var(--accent); color: var(--accent-light); }

.sc-panel-persona {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.sc-panel-avatar {
    width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 700; color: #fff;
}
.sc-panel-name { font-size: 1.0625rem; font-weight: 600; }
.sc-panel-role { font-size: 0.8125rem; color: var(--muted); }
.sc-panel-taille { font-size: 0.6875rem; color: var(--muted-light); }

.sc-panel-section {
    margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.sc-panel-section:last-of-type { border-bottom: none; }
.sc-panel-section-title {
    font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.8px;
    text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}

/* DISC bars */
.sc-disc-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.sc-disc-label { font-size: 0.75rem; font-weight: 700; width: 14px; text-align: center; }
.sc-disc-bar { flex: 1; height: 8px; background: var(--surface); border-radius: 4px; overflow: hidden; }
.sc-disc-fill { height: 100%; border-radius: 4px; transition: width 0.5s ease; }
.sc-disc-fill-D { background: #EF4444; }
.sc-disc-fill-I { background: #F59E0B; }
.sc-disc-fill-S { background: #22C55E; }
.sc-disc-fill-C { background: #3B82F6; }
.sc-disc-name { font-size: 0.625rem; color: var(--muted); width: 80px; }

/* Objections in panel */
.sc-objection {
    font-size: 0.8125rem; color: var(--muted-light); line-height: 1.6;
    margin-bottom: 4px; padding-left: 12px; border-left: 2px solid var(--border);
}

/* Panel meta grid */
.sc-panel-meta {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px;
}
.sc-panel-meta-box {
    background: var(--surface); border-radius: 10px; padding: 10px 12px;
}
.sc-panel-meta-box.full { grid-column: 1 / -1; }
.sc-panel-meta-label { font-size: 0.625rem; color: var(--muted); margin-bottom: 2px; }
.sc-panel-meta-value { font-size: 0.8125rem; font-weight: 600; }

/* Panel CTA */
.sc-panel-cta {
    display: block; width: 100%; padding: 14px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border: none; border-radius: 12px; color: #fff; font-size: 0.9375rem;
    font-weight: 600; cursor: pointer; text-align: center; text-decoration: none;
    box-shadow: 0 4px 16px rgba(212,133,74,0.25); box-sizing: border-box;
}
.sc-panel-cta:hover { opacity: 0.92; }

/* Stats pills for difficulty */
.sc-stat-color { font-weight: 700; margin-left: 4px; }

/* Mobile responsive */
@media (max-width: 768px) {
    .sc-grid { grid-template-columns: 1fr; }
    .sc-panel { max-width: 100%; }
    .sc-card-actions { flex-direction: column; }
    .sc-pagination { gap: 4px; }
    .sc-page-btn { min-width: 32px; padding: 6px 8px; }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-tabs {
    display: inline-flex; background: var(--card); border-radius: 10px;
    padding: 4px; border: 1px solid var(--border);
}
.contact-tab {
    padding: 10px 24px; border-radius: 8px; border: none;
    background: transparent; color: var(--muted); font-size: 0.8125rem;
    font-weight: 400; cursor: pointer; display: flex; align-items: center; gap: 6px;
    font-family: inherit;
}
.contact-tab.active {
    background: var(--surface); color: var(--text); font-weight: 600;
}
.contact-grid {
    display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: flex-start;
}
.contact-sidebar { display: flex; flex-direction: column; gap: 14px; }
.contact-link {
    display: flex; align-items: center; gap: 10px; padding: 10px 12px;
    background: var(--surface); border-radius: 10px; text-decoration: none;
    margin-bottom: 8px; border: 1px solid transparent; transition: border-color 0.2s;
    color: var(--text);
}
.contact-link:hover { border-color: rgba(212,132,74,0.25); }
.subject-chip {
    padding: 8px 16px; border-radius: 8px; border: 1px solid var(--border);
    background: transparent; color: var(--muted); font-size: 0.75rem;
    font-weight: 400; cursor: pointer; transition: all 0.2s;
}
.subject-chip.active {
    border-color: rgba(212,132,74,0.4); background: var(--accent-glow);
    color: var(--accent); font-weight: 600;
}

/* Responsive contact */
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   MENTIONS LÉGALES / CONFIDENTIALITÉ
   ========================================================================== */
.legal-h2 {
    font-size: 1.25rem; font-weight: 600; margin: 36px 0 14px; color: var(--accent);
}
.legal-h3 {
    font-size: 1rem; font-weight: 600; margin: 24px 0 10px;
}
.legal-p {
    font-size: 0.875rem; color: var(--muted); line-height: 1.7; margin: 0 0 12px;
}
.legal-p a { color: var(--accent); }

/* Demo brief */
.brief-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 14px 0; border-bottom: 1px solid var(--border);
}
.brief-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.brief-value { font-size: 0.8125rem; color: var(--fg); line-height: 1.5; }

/* ==========================================================================
   BRIEF IMMERSIVE (produit.php — Step 01)
   ========================================================================== */
.brief-immersive {
    display: grid; grid-template-columns: 160px 1fr; gap: 20px; align-items: start;
}
.brief-profile {
    text-align: center; padding: 16px 8px;
    background: var(--surface); border-radius: 12px; border: 1px solid var(--border);
}
.brief-avatar-wrap { position: relative; display: inline-block; }
.brief-avatar-pulse {
    animation: briefPulse 2s ease-in-out infinite;
}
@keyframes briefPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,133,74,0.4); }
    50% { box-shadow: 0 0 0 10px rgba(212,133,74,0); }
}
.brief-online-badge {
    display: inline-flex; align-items: center; gap: 4px;
    background: rgba(16,185,129,0.12); color: var(--green); font-size: 0.5625rem;
    font-weight: 700; padding: 2px 8px; border-radius: 10px; margin-top: 6px;
    animation: badgeBlink 2s ease-in-out infinite;
}
.brief-online-badge::before {
    content: ''; width: 5px; height: 5px; border-radius: 50%;
    background: var(--green); display: inline-block;
}
@keyframes badgeBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.brief-intel {
    padding: 14px 16px; background: var(--card); border-radius: 12px;
    border: 1px solid var(--border);
}
.brief-bullet-anim {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.8125rem; line-height: 1.6; padding: 3px 0;
    opacity: 0; transform: translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.brief-bullet-anim.visible {
    opacity: 1; transform: translateX(0);
}
@media (max-width: 640px) {
    .brief-immersive { grid-template-columns: 1fr; }
    .brief-profile { display: flex; align-items: center; gap: 12px; text-align: left; padding: 12px 16px; }
}

/* ==========================================================================
   iMESSAGE CHAT (produit.php — Multi-interlocuteurs)
   ========================================================================== */
.imessage-card { padding: 14px 16px !important; }
.imessage-thread {
    max-height: 280px; overflow-y: auto; display: flex; flex-direction: column;
    gap: 8px; padding: 4px 0; scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}
.imsg-bubble {
    display: flex; gap: 8px; max-width: 88%; opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.imsg-left { align-self: flex-start; transform: translateX(-20px); }
.imsg-right { align-self: flex-end; flex-direction: row-reverse; transform: translateX(20px); }
.imsg-bubble.visible { opacity: 1; transform: translateX(0); }
.imsg-avatar {
    width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.5625rem; font-weight: 700;
}
.imsg-content {
    background: var(--surface); border-radius: 14px 14px 14px 4px;
    padding: 8px 12px; border: 1px solid var(--border);
}
.imsg-right .imsg-content,
.imsg-you-content {
    background: rgba(212,133,74,0.08); border-color: rgba(212,133,74,0.2);
    border-radius: 14px 14px 4px 14px;
}
.imsg-name { font-size: 0.625rem; font-weight: 700; margin-bottom: 2px; }
.imsg-text { font-size: 0.8125rem; line-height: 1.5; }
.imessage-typing {
    display: flex; align-items: center; gap: 4px; padding: 6px 0;
}
.typing-indicator {
    display: flex; gap: 3px; align-items: center;
    background: var(--surface); border-radius: 12px; padding: 6px 10px;
    border: 1px solid var(--border);
}
.typing-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--muted); animation: typingBounce 1.2s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.15s; }
.typing-dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-4px); opacity: 1; }
}

/* ==========================================================================
   DEBRIEF — Dark mode contrast improvements
   ========================================================================== */

/* Score bar tracks */
.debrief-bar-track {
    background: var(--bg-elevated);
    border-radius: 4px;
    height: 6px;
}

/* Quote blocks — success */
.debrief-quote-success {
    background: var(--success-bg);
    border-left: 3px solid var(--green);
    border-radius: 0 8px 8px 0;
    padding: 8px 10px;
    margin-bottom: 6px;
}
.debrief-quote-success .dq-verbatim {
    color: #86EFAC;
    font-style: italic;
    font-size: 12px;
}
.debrief-quote-success .dq-explain {
    color: var(--text-secondary);
    font-size: 11px;
    margin-top: 3px;
}

/* Quote blocks — error */
.debrief-quote-error {
    background: var(--error-bg);
    border-left: 3px solid var(--red);
    border-radius: 0 8px 8px 0;
    padding: 8px 10px;
    margin-bottom: 6px;
}
.debrief-quote-error .dq-verbatim {
    color: #FCA5A5;
    font-style: italic;
    font-size: 12px;
}
.debrief-quote-error .dq-explain {
    color: var(--text-secondary);
    font-size: 11px;
    margin-top: 3px;
}

/* Quote blocks — improved version */
.debrief-quote-improved {
    background: var(--blue-dim);
    border-left: 3px solid var(--blue);
    border-radius: 0 6px 6px 0;
    padding: 6px 10px;
    margin-top: 4px;
    color: var(--blue-light);
    font-style: italic;
    font-size: 11px;
}

/* Section labels */
.debrief-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.debrief-label-success { color: var(--green); }
.debrief-label-error { color: var(--red); }
.debrief-label-muted { color: var(--muted); }

/* DISC badges */
.disc-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-secondary);
}
.disc-badge-D { background: rgba(239,68,68,0.15); color: #FCA5A5; border: 1px solid rgba(239,68,68,0.3); }
.disc-badge-I { background: rgba(245,158,11,0.15); color: #FCD34D; border: 1px solid rgba(245,158,11,0.3); }
.disc-badge-S { background: rgba(34,197,94,0.15); color: #86EFAC; border: 1px solid rgba(34,197,94,0.3); }
.disc-badge-C { background: rgba(79,142,247,0.15); color: #7AABFF; border: 1px solid rgba(79,142,247,0.3); }

/* ==========================================================================
   CORRECTIF GLOBAL LISIBILITÉ DARK MODE
   ========================================================================== */

/* Tout texte paragraphe */
p {
    color: var(--text-secondary);
}

/* Descriptions, sous-titres, légendes */
.subtitle, .description, .caption,
.card-text, .card-body p,
.feature-text, .section-desc,
.hero-subtitle, .page-subtitle,
.step-desc, .stat-desc, .stat-sub,
.testimonial-text, .pricing-desc,
.faq-answer, .blog-excerpt {
    color: var(--text-secondary) !important;
}

/* Labels secondaires */
.label, .meta, .tag-label,
.stat-label, .counter-label,
.badge-text, .pill-text {
    color: var(--text-muted) !important;
}

/* Listes */
ul li, ol li {
    color: var(--text-secondary);
}

/* Inputs placeholder */
::placeholder {
    color: var(--text-muted) !important;
    opacity: 1;
}

/* ==========================================================================
   ANALYSIS MODAL — Debrief dramatic reveal
   ========================================================================== */
.analysis-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.analysis-card {
    max-width: 500px;
    width: 92%;
    background: var(--card);
    border: 1px solid rgba(255,107,53,0.2);
    border-radius: 20px;
    padding: 36px 32px 28px;
    box-shadow: 0 0 60px rgba(255,107,53,0.08), 0 24px 64px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}
.analysis-glow-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transition: background 0.5s;
}
.analysis-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: analysisLogoFloat 2.5s ease-in-out infinite;
}
.analysis-logo-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 13px;
    color: #fff;
}
.analysis-step {
    text-align: center;
    padding: 4px 0 16px;
    animation: analysisFadeIn 0.35s ease;
}
.analysis-step-icon {
    font-size: 38px;
    margin-bottom: 8px;
    animation: analysisIconIn 0.4s ease;
}
.analysis-step-label {
    font-size: 14px;
    font-weight: 600;
}
.analysis-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}
.analysis-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.analysis-bar-label {
    font-size: 11px;
    font-weight: 600;
    min-width: 72px;
    text-align: right;
    transition: color 0.3s;
    color: var(--text-muted);
}
.analysis-bar-label.active {
    color: var(--accent);
}
.analysis-bar-track {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: var(--bg-elevated);
    overflow: hidden;
}
.analysis-bar-fill {
    height: 100%;
    border-radius: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transition: width 0.8s ease, background 0.3s;
}
.analysis-bar-fill.done {
    background: var(--green);
}
.analysis-bar-check {
    font-size: 11px;
    color: var(--green);
    animation: analysisFadeIn 0.3s ease;
    min-width: 14px;
    text-align: center;
}
.analysis-progress-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.analysis-progress-track {
    flex: 1;
    height: 8px;
    border-radius: 4px;
    background: var(--bg-elevated);
    overflow: hidden;
    position: relative;
}
.analysis-progress-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent), var(--green));
    transition: width 0.6s ease;
    animation: analysisGlow 1.5s ease-in-out infinite;
}
.analysis-progress-pct {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    min-width: 38px;
    text-align: right;
    font-family: 'JetBrains Mono', monospace;
}
.analysis-footer {
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}
.analysis-reveal {
    text-align: center;
    animation: analysisRevealIn 0.5s ease;
}
.analysis-reveal-emoji {
    font-size: 56px;
    margin-bottom: 8px;
    animation: analysisScorePop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.analysis-reveal-label {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}
.analysis-score-counter {
    font-size: 56px;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    line-height: 1;
    letter-spacing: -2px;
}
.analysis-score-max {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-muted);
}
.analysis-reveal-minibars {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 24px;
}
.analysis-reveal-minibar {
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background: var(--green);
}
.analysis-reveal-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    border: none;
    font-family: inherit;
    box-shadow: 0 4px 20px rgba(255,107,53,0.3);
    transition: transform 0.15s, box-shadow 0.15s;
}
.analysis-reveal-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(255,107,53,0.4);
}

@keyframes analysisLogoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}
@keyframes analysisFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes analysisIconIn {
    from { opacity: 0; transform: translateY(10px) scale(0.85); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes analysisGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(255,107,53,0.25); }
    50% { box-shadow: 0 0 18px rgba(255,107,53,0.45); }
}
@keyframes analysisRevealIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes analysisScorePop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

/* ==========================================================================
   DEMO PAGE — Language & Difficulty selectors
   ========================================================================== */
.demo-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 28px auto 8px;
    max-width: 480px;
}
.demo-option-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.demo-option-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}
.demo-lang-selector,
.demo-diff-selector {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}
.demo-lang-btn,
.demo-diff-btn {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    white-space: nowrap;
    font-family: inherit;
}
.demo-lang-btn:hover,
.demo-diff-btn:hover {
    border-color: var(--border-active);
    background: var(--card);
}
.demo-lang-btn.active {
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--accent-light);
    box-shadow: 0 0 12px var(--accent-glow);
}
.demo-diff-btn.active {
    border-color: var(--gold);
    background: rgba(245,158,11,0.1);
    color: var(--gold);
    box-shadow: 0 0 12px var(--gold-glow);
}
@media (max-width: 480px) {
    .demo-lang-btn,
    .demo-diff-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   EXPIRY BANNER
   ========================================================================== */
.expiry-banner {
    width: 100%;
    padding: 10px 0;
    font-size: 0.875rem;
    z-index: 50;
}
.expiry-banner-warning {
    background: linear-gradient(90deg, rgba(245,158,11,0.15), rgba(255,107,53,0.15));
    border-bottom: 1px solid rgba(245,158,11,0.3);
    color: var(--gold);
}
.expiry-banner-expired {
    background: linear-gradient(90deg, rgba(239,68,68,0.15), rgba(239,68,68,0.08));
    border-bottom: 1px solid rgba(239,68,68,0.3);
    color: var(--red);
}
.expiry-banner-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    text-align: center;
}
.expiry-banner-cta {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s;
}
.expiry-banner-warning .expiry-banner-cta {
    background: var(--gold);
    color: #000;
}
.expiry-banner-warning .expiry-banner-cta:hover {
    background: #d4880a;
}
.expiry-banner-expired .expiry-banner-cta {
    background: var(--accent);
    color: #fff;
}
.expiry-banner-expired .expiry-banner-cta:hover {
    background: var(--accent-light);
}

/* ==========================================================================
   CONVERSION MODAL
   ========================================================================== */
.conversion-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(4px);
}
.conversion-modal {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    max-width: 420px;
    width: 100%;
    position: relative;
    animation: convSlideUp 0.3s ease;
}
@keyframes convSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.conversion-close {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}
.conversion-close:hover { color: #fff; }
.conversion-plan {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
}
.conversion-plan-highlight {
    border-color: var(--accent);
    box-shadow: 0 0 16px var(--accent-glow);
}
.conversion-plan-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 4px;
    background: var(--accent-glow);
    color: var(--accent);
    margin-bottom: 8px;
}
.conversion-plan-price {
    font-size: 1.75rem;
    font-weight: 200;
    color: #fff;
}
@media (max-width: 480px) {
    .conversion-modal { padding: 24px 20px; }
    .expiry-banner-inner { font-size: 0.8125rem; gap: 10px; }
}
