@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================================
   Performance by Design - Biological Performance Coaching
   ============================================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Typography colors */
    --color-h1: #0F1C2D;
    --color-h2: #0F1C2D;
    --color-h3: #1F2A38;
    --color-h4: #3A3F45;
    --color-body-light: #5F6368;
    --color-body-dark: #FFFFFF;
    --color-cta: #0F1C2D;
    --color-cta-hover: #1C2A40;
    --color-navy-light: #E2E8F0;
    
    /* Brand Colors (legacy) */
    --brand-orange: #B8613C;
    --brand-orange-light: #c97a5a;
    --brand-orange-dark: #9a5233;
    
    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-500: #64748B;
    --gray-700: #334155;
    --gray-800: #1F2937;
    --gray-900: #0F172A;
    --black: #000000;
    
    /* Functional */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;
    
    /* Semantic */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    
    --text-primary: #0F1C2D;
    --text-secondary: #5F6368;
    --text-tertiary: #5F6368;
    
    --border-subtle: #E2E8F0;
    --border-medium: #CBD5E1;
    --border-strong: #94A3B8;
    
    /* Typography */
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-black: 900;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-8: 3rem;
    --space-10: 4rem;
    --space-12: 6rem;
    --space-16: 8rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-orange: 0 4px 20px rgba(255, 107, 53, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-body-light);
    background: var(--bg-primary);
}

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

a {
    color: var(--color-h1);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--color-h3);
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

section {
    padding: var(--space-12) 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-bold);
    line-height: 1.2;
    margin-bottom: var(--space-4);
}

h1 {
    font-size: clamp(2.5rem, 6vw, var(--text-6xl));
    font-weight: var(--font-black);
    color: var(--color-h1);
}

h2 {
    font-size: clamp(2rem, 5vw, var(--text-5xl));
    color: var(--color-h2);
}

h3 {
    font-size: clamp(1.5rem, 4vw, var(--text-3xl));
    color: var(--color-h3);
}

h4 {
    color: var(--color-h4);
}

p {
    color: var(--color-body-light);
    margin-bottom: var(--space-4);
}

/* ===== TOP BAR (above navbar) ===== */
.top-bar {
    background: #f1f5f9;
    padding: 0.6rem var(--space-4);
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    letter-spacing: 0.02em;
    border-bottom: 1px solid var(--border-subtle);
}

.top-bar .container {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
}

.nav-logo {
    justify-self: start;
}

.nav-menu {
    justify-self: center;
}

.nav-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.nav-cta {
    padding: 0.6rem 1rem !important;
    font-size: var(--text-sm) !important;
}

.nav-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-2);
    text-decoration: none;
    color: inherit;
}

a.nav-logo:hover {
    color: inherit;
}

a.nav-logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-image {
    height: 85px;
    width: auto;
    max-width: 220px;
    transition: transform var(--transition-base);
    object-fit: contain;
    flex-shrink: 0;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-tagline {
    font-size: 0.7rem;
    font-weight: var(--font-semibold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-primary);
}

@media (max-width: 640px) {
    .nav-tagline {
        display: none;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-6);
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    font-weight: var(--font-semibold);
    font-size: var(--text-sm);
    position: relative;
    padding: var(--space-2) 0;
    transition: color var(--transition-base);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-h1);
}

.nav-menu .btn-primary,
.nav-menu a.btn-primary,
.nav-cta {
    color: white !important;
}

.nav-menu .btn-primary:hover,
.nav-menu a.btn-primary:hover,
.nav-cta:hover {
    color: white !important;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-h1);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu .btn-primary::after {
    display: none;
}

.nav-menu .btn-workout-tool {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--color-cta);
    color: var(--color-body-dark);
    border-radius: var(--radius-lg);
    font-weight: var(--font-bold);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-base);
    border: 2px solid var(--color-cta);
    box-shadow: var(--shadow-sm);
}

.nav-menu .btn-workout-tool:hover {
    background: var(--color-cta-hover);
    border-color: var(--color-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 42, 64, 0.25);
    color: var(--color-body-dark);
}

.nav-menu .btn-workout-tool::after {
    display: none;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.625rem;
    margin-left: var(--space-1);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    padding: var(--space-3) 0;
    border-radius: var(--radius-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-subtle);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: var(--space-2) var(--space-4);
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--bg-secondary);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 4px 0;
    transition: var(--transition-base);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 1px solid transparent;
    text-decoration: none;
    font-size: var(--text-base);
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--color-cta);
    color: var(--color-body-dark);
    box-shadow: 0 6px 16px rgba(15, 28, 45, 0.2);
}

.btn-primary:hover {
    background: var(--color-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(28, 42, 64, 0.3);
}

/* Badge variants */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}
.badge-navy {
    background: var(--color-navy-light);
    color: var(--color-h1);
}
.badge-orange {
    background: var(--color-navy-light);
    color: var(--color-h1);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--color-h3);
    color: var(--color-h3);
}

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

.btn-block {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

.hero-layout {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    text-align: center;
}

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


.flow-strip {
    background: var(--color-navy-light);
    border-bottom: 2px solid var(--border-medium);
    padding: 2.5rem 0;
}

.flow-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.flow-card {
    padding: 2rem;
    border: 2px solid var(--border-medium);
    border-radius: 0.75rem;
    background: white;
    text-align: center;
}

.flow-card strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: clamp(1.25rem, 2.5vw, var(--text-2xl));
    font-weight: var(--font-bold);
    color: var(--color-h2);
}

.flow-card > span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.flow-card-icon {
    width: 60px;
    height: 60px;
    background: var(--color-navy-light);
    color: var(--color-h1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 1.5rem;
    font-weight: bold;
}

.flow-card-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%);
}

.flow-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Probleem-block lists: cross bullets (negatieve signalen) */
.probleem-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.probleem-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.35rem;
}

.probleem-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F1C2D' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 960px) {
    .journey-grid,
    .hero-close-cards,
    .probleem-block,
    .coaching-grid {
        grid-template-columns: 1fr !important;
    }
    
    .probleem-block-reverse .probleem-icon-wrap,
    .probleem-block-reverse .methode-image {
        order: 1;
    }
    
    .probleem-block-reverse > div:first-child {
        order: 2;
    }
    
    .traject-grid {
        grid-template-columns: 1fr !important;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-buttons {
        justify-content: center;
    }
    
    .methode-block {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    
    .methode-block .methode-content {
        order: 2;
    }
    
    .methode-block .methode-image {
        order: 1;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 520px;
        padding: 2.5rem 0;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-card {
        padding: 1.25rem;
        margin-top: 1rem;
    }

    .trust-row {
        grid-template-columns: 1fr;
    }

    .flow-strip {
        padding: 2rem 0;
    }

    .flow-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .two-col {
        display: flex !important;
        flex-direction: column;
        gap: 2rem !important;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

/* Hero background image removed per design */

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: var(--font-black);
    margin-bottom: var(--space-4);
    line-height: 1.1;
    text-shadow: none;
    color: var(--color-h1);
}

.hero-title .highlight {
    color: var(--color-h1);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    margin-bottom: var(--space-8);
    font-weight: var(--font-medium);
    color: #5F6368;
}

.hero-content p {
    color: #5F6368;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background: var(--color-cta);
    color: var(--color-body-dark);
    border: 2px solid var(--color-cta);
}

.hero .btn-primary:hover {
    background: var(--color-cta-hover);
    color: var(--color-body-dark);
    transform: translateY(-2px);
}

.hero .btn-secondary {
    background: white;
    color: var(--color-h1);
    border: 2px solid #e5e7eb;
}

.hero .btn-secondary:hover {
    border-color: var(--color-h3);
    color: var(--color-h3);
}


/* ===== USP SECTION ===== */
.usp-section {
    background: var(--bg-secondary);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, var(--text-5xl));
    font-weight: var(--font-black);
    margin-bottom: var(--space-8);
    color: var(--color-h2);
}

.section-title .highlight {
    color: var(--color-h2);
}

/* Problem section - intro list with checkmarks */
.problem-intro-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}
.problem-intro-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}
.problem-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-navy-light);
    border-radius: 50%;
    color: var(--color-h1);
}
.problem-check svg {
    width: 14px;
    height: 14px;
}

/* Problem cards with icons */
.problem-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.problem-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f9fafb;
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--color-h2);
}
.problem-card-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-h2);
}
.problem-card-icon svg {
    width: 24px;
    height: 24px;
}
.problem-card-label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.usp-card {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.usp-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-h2);
}

.usp-icon {
    font-size: 2rem;
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 2px solid var(--color-h2);
    border-radius: var(--radius-lg);
    color: var(--color-h2);
    font-weight: var(--font-bold);
}

.usp-card h3 {
    color: var(--color-h2);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-3);
}

.usp-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
    margin-bottom: var(--space-10);
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse > * {
    direction: ltr;
}

.about-image img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-content h2 {
    font-size: var(--text-4xl);
    font-weight: var(--font-black);
    margin-bottom: var(--space-2);
    color: var(--text-primary);
}

.subtitle {
    color: var(--color-h2);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-4);
}

.social-links {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-5);
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-h2);
    transition: all var(--transition-base);
    font-weight: var(--font-semibold);
    color: var(--color-h2);
}

.social-link:hover {
    background: var(--color-h2);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
}

.social-link .icon {
    font-size: 1.25rem;
}

/* ===== BLOG PREVIEW SECTION ===== */
.blog-preview-section {
    padding: var(--space-16) 0;
    background: var(--bg-secondary);
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.blog-preview-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.blog-preview-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-preview-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background: var(--gray-200);
}

.blog-preview-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-preview-card:hover .blog-preview-image img {
    transform: scale(1.05);
}

.blog-preview-category {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    background: var(--color-h2);
    color: var(--white);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-preview-content {
    padding: var(--space-5);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-preview-title {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-3);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-preview-card:hover .blog-preview-title {
    color: var(--color-h2);
}

.blog-preview-excerpt {
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: 1.6;
    margin-bottom: var(--space-4);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-preview-meta {
    display: flex;
    gap: var(--space-4);
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    padding-top: var(--space-3);
    border-top: 1px solid var(--border-subtle);
}

.blog-preview-meta span {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--color-navy-light);
    text-align: center;
    color: var(--color-body-dark);
    padding: var(--space-12) 0;
}

.cta-section h2 {
    color: var(--color-h1);
    font-size: clamp(2rem, 5vw, var(--text-5xl));
    font-weight: var(--font-black);
    margin-bottom: var(--space-4);
}

.cta-section p {
    color: var(--color-body-light);
    font-size: var(--text-xl);
    margin-bottom: var(--space-6);
}

.cta-section .btn-primary {
    background: var(--color-cta);
    color: var(--color-body-dark);
}

.cta-section .btn-primary:hover {
    background: var(--color-cta-hover);
    color: var(--color-body-dark);
}

/* ===== INFO/TIPS SECTIONS ===== */
.info-section {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    border: 2px solid var(--color-h2);
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--color-h2);
}

.info-section-title {
    color: var(--text-primary);
    font-size: var(--text-3xl);
    font-weight: var(--font-black);
    margin-bottom: var(--space-6);
    padding-left: var(--space-4);
}

.info-section-subtitle {
    color: var(--text-secondary);
    font-size: var(--text-lg);
    margin-bottom: var(--space-6);
    padding-left: var(--space-4);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-5);
}

.tips-grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) {
    .tips-grid-2x2 {
        grid-template-columns: 1fr;
    }
}

.tip-card {
    background: var(--bg-secondary);
    padding: var(--space-5);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--color-h2);
    transition: all var(--transition-base);
}

.tip-card:hover {
    background: var(--white);
    border-left-width: 6px;
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
}

.tip-card h4 {
    color: var(--color-h2);
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-2);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.tip-card p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: 0;
}

.tip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border: 2px solid var(--color-h2);
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--color-h2);
    font-weight: var(--font-bold);
    font-size: 1.25rem;
}

/* ===== CONTACT / ANALYSE FORM ===== */
.contact-form-section {
    background: var(--bg-secondary);
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 2px solid #fff7ed;
}

.contact-form h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.analyse-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.analyse-benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.analyse-benefits-list .benefit-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff7ed;
    color: var(--color-h2);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.75rem;
}

.contact-info {
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 1rem;
    border-left: 4px solid var(--color-h2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-info h3 {
    color: var(--color-h2);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-subtle);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-cta);
    box-shadow: 0 0 0 3px rgba(15, 28, 45, 0.12);
}

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

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

.form-submit {
    background: var(--color-cta);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
    width: 100%;
    margin-top: 0.5rem;
}

.form-submit:hover {
    background: var(--color-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 42, 64, 0.3);
}

@media (max-width: 960px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-10) 0 var(--space-6);
    border-top: 3px solid var(--color-h2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.footer-column h3,
.footer-column h4 {
    color: var(--color-body-dark);
    margin-bottom: var(--space-4);
}

.footer-heading {
    font-size: var(--text-2xl);
    font-weight: var(--font-black);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: var(--space-2);
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-base);
}

.footer-column a:hover {
    color: var(--color-body-dark);
}

.footer-social-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-weight: var(--font-semibold);
    transition: all var(--transition-base);
    text-decoration: none;
}

.social-button:hover {
    background: var(--color-h2);
    border-color: var(--color-h2);
    transform: translateX(4px);
    color: var(--white);
}

.social-button .social-icon {
    font-size: 1.5rem;
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.social-button .social-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.social-button:hover .social-icon {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===== WHATSAPP CTA ===== */
.whatsapp-cta-section {
    background: var(--color-navy-light);
    border-top: 2px solid var(--border-medium);
    border-bottom: 2px solid var(--border-medium);
    padding: 4rem var(--space-4);
    margin: 0;
}

.whatsapp-cta-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.whatsapp-cta-title {
    color: var(--color-h2);
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
}

.whatsapp-cta-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2rem;
}

.race-calendar-box {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
}

.race-calendar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.race-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.race-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 0.75rem;
    border: 1px solid var(--border-medium);
    transition: all 0.2s;
    text-align: left;
}

.race-card:hover {
    border-color: var(--color-h2);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.race-flag {
    font-size: 2rem;
    margin-right: 1rem;
}

.race-info {
    flex: 1;
}

.race-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.race-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.race-location {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.race-countdown {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-h2);
    white-space: nowrap;
}

.btn-whatsapp-cta {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: var(--color-h2);
    color: white !important;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    border-radius: 0.75rem;
    font-size: 1.15rem;
    transition: all 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    min-width: 350px;
}

.btn-whatsapp-cta:hover {
    background: #E65A28;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.social-buttons-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-social-orange {
    background: var(--color-h2);
    color: white;
}

.btn-social-orange:hover {
    background: #E65A28;
    transform: translateY(-2px);
}

.whatsapp-cta-tagline {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    text-align: center;
    font-style: italic;
    margin-top: 2rem;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2942;
    color: white;
    padding: 2rem 1.5rem;
    z-index: 10000;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.cookie-text h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.cookie-text p {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-links {
    margin-top: 0.5rem;
}

.cookie-links a {
    color: var(--color-h2);
    text-decoration: underline;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

.cookie-links a:hover {
    opacity: 0.8;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons button {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.btn-accept {
    background: var(--color-cta);
    color: white;
    box-shadow: 0 4px 12px rgba(15, 28, 45, 0.3);
}

.btn-accept:hover {
    background: var(--color-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 28, 45, 0.4);
}

.btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-container {
        grid-template-columns: 1fr auto;
    }
    
    .nav-menu {
        justify-self: auto;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
    }
    
    .feature-checkmark {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-primary);
        flex-direction: column;
        padding: var(--space-6) 0;
        transition: left 0.3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    .nav-menu > li {
        padding: var(--space-3) var(--space-6);
        border-bottom: 1px solid var(--border-subtle);
    }
    
    .nav-menu > li:last-child {
        border-bottom: none;
        margin-bottom: var(--space-10);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: var(--space-4);
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .about-grid.reverse {
        direction: ltr;
    }
    
    .usp-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-preview-title {
        font-size: var(--text-lg);
    }
    
    section {
        padding: var(--space-8) 0;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }
    
    .cookie-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.95rem;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
        padding: 1rem;
    }
    
    .whatsapp-cta-section {
        padding: 2rem 1rem;
    }
    
    .methode-block {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .methode-block .methode-content {
        order: 2;
    }
    
    .methode-block .methode-image {
        order: 1;
    }
    
    .methode-block .section-title {
        text-align: center !important;
    }
    
    .methode-block .methode-content {
        text-align: center;
    }
    
    .methode-block .methode-content ul {
        display: inline-block;
        text-align: left;
    }
    
    .whatsapp-cta-title {
        font-size: 1.5rem;
    }
    
    .race-grid {
        grid-template-columns: 1fr;
    }
    
    .social-buttons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-3);
    }
    
    .top-bar {
        padding: 0.5rem var(--space-3);
        font-size: 0.7rem;
    }
    
    .btn {
        width: 100%;
        padding: var(--space-3) var(--space-4);
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .nav-tagline {
        font-size: 0.625rem;
    }
}

/* ===== FEATURE CHECKMARKS ===== */
.feature-checkmark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    border: 2px solid var(--color-h1);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    color: var(--color-h1);
    flex-shrink: 0;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: var(--space-4);
}

.mt-8 {
    margin-top: var(--space-8);
}

.mb-4 {
    margin-bottom: var(--space-4);
}

.mb-8 {
    margin-bottom: var(--space-8);
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* ===== NEUROTYPE SPECIFICS ===== */
:root {
    --neuro-nitro: #fd6a35;
    --neuro-precision: #00b4d8;
    --neuro-diesel: #010b35;
    --neuro-eco: #2a9d8f;
}

/* Theme Classes */
.theme-nitro { --theme-color: var(--neuro-nitro); }
.theme-precision { --theme-color: var(--neuro-precision); }
.theme-diesel { --theme-color: var(--neuro-diesel); }
.theme-eco { --theme-color: var(--neuro-eco); }

.neuro-hero {
    background-color: var(--theme-color);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.neuro-hero h1 { color: white; margin-bottom: 0.5rem; }
.neuro-hero .motto { font-size: 1.5rem; font-weight: 300; opacity: 0.9; font-style: italic; letter-spacing: 1px; color: white;}

.neuro-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.4);
}

/* Data Tables */
.neuro-table-container {
    overflow-x: auto;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
    border: 1px solid var(--border-subtle);
}

.neuro-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px; /* Force scroll on mobile */
}

.neuro-table th, .neuro-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
}

.neuro-table th {
    background: var(--bg-secondary);
    color: var(--theme-color);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.neuro-table tr:last-child td { border-bottom: none; }
.neuro-table tr:hover { background: var(--bg-secondary); }

/* KPI Cards */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    margin-bottom: 4rem;
}

.kpi-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 5px solid var(--theme-color);
}

.kpi-value { font-size: 1.25rem; font-weight: 800; color: var(--text-primary); display: block; margin-bottom: 0.5rem; }
.kpi-label { font-size: 0.85rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; }

/* Content Blocks */
.strategy-block {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    border-left: 5px solid var(--theme-color);
}

.strategy-title { color: var(--theme-color); font-weight: 800; margin-bottom: 1rem; font-size: 1.25rem; }

.exercise-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.exercise-category h4 { color: var(--theme-color); border-bottom: 2px solid var(--border-subtle); padding-bottom: 0.5rem; }
.exercise-category ul { list-style: none; padding: 0; }
.exercise-category li { padding: 0.5rem 0; border-bottom: 1px solid var(--border-subtle); font-size: 0.95rem; display: flex; align-items: center; gap: 0.5rem; }
.exercise-category li::before { content: '•'; color: var(--theme-color); font-weight: bold; }

.wod-box {
    background: #1f2937;
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 2rem;
}
.wod-header { color: var(--theme-color); font-weight: bold; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.wod-section { margin-bottom: 1.5rem; }
.wod-section strong { color: var(--gray-300); display: block; margin-bottom: 0.25rem; }

/* ===== LEGAL PAGES (Terms, Privacy, Disclaimer) ===== */
.legal-section {
    background: var(--bg-secondary);
    padding: 5rem 0;
}
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}
.legal-content h2 {
    color: var(--color-h2);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}
.legal-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.legal-content ul {
    color: var(--text-secondary);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}
.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}
.legal-content a {
    color: var(--color-h2);
    text-decoration: underline;
}
.legal-content a:hover {
    color: var(--brand-orange-dark);
}

/* ===== CASE CARDS (expandable) ===== */
.case-card {
    max-width: 720px;
    margin: 0 auto 1.5rem auto;
    background: var(--bg-primary);
    border-radius: 1rem;
    padding: 2rem 2.5rem;
    border-left: 4px solid var(--color-h2);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: box-shadow var(--transition-base);
}
.case-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.case-card-alt {
    background: var(--bg-tertiary);
}
.case-card h3 {
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}
.case-card .case-subtitle {
    font-size: 0.9rem;
    color: var(--color-h2);
    font-weight: 600;
    margin-bottom: 1rem;
}
.case-short {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.case-short p:last-child {
    margin-bottom: 0;
}
.case-expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--color-h2);
    color: var(--color-h2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}
.case-expand-btn:hover {
    background: var(--color-h2);
    color: white;
}
.case-expand-btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}
.case-card.expanded .case-expand-btn svg {
    transform: rotate(180deg);
}
.case-full {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.case-card.expanded .case-full {
    max-height: 2000px;
}
.case-full-inner {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}
.case-full h4 {
    color: var(--color-h2);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 1.25rem 0 0.5rem 0;
}
.case-full h4:first-child {
    margin-top: 0;
}
.case-full p, .case-full ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0 0 0.75rem 0;
}
.case-full ul {
    list-style: none;
    padding: 0;
}
.case-full li {
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.case-full .case-quote {
    color: var(--text-primary);
    font-weight: 600;
    font-style: italic;
    margin: 1rem 0 0 0;
}

/* Case cards mobile */
@media (max-width: 640px) {
    .case-card {
        padding: 1.5rem 1.25rem;
        margin-bottom: 1.25rem;
    }
    .case-card h3 {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    .case-card .case-subtitle {
        display: block;
        font-size: 0.85rem;
        margin-top: 0.25rem;
    }
    .case-short {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    .case-expand-btn {
        font-size: 0.85rem;
        padding: 0.5rem 0.875rem;
        width: 100%;
        justify-content: center;
    }
    .case-full-inner {
        padding-top: 1.25rem;
        margin-top: 1.25rem;
    }
}

@media (max-width: 480px) {
    .case-card {
        padding: 1.25rem 1rem;
    }
}

/* Flow steps (Zo werkt het) mobile */
@media (max-width: 640px) {
    .flow-steps > div {
        gap: 1.25rem !important;
        margin-bottom: 1.5rem !important;
    }
}

/* Result cards grid - prevent overflow on very narrow screens */
@media (max-width: 380px) {
    .result-cards-grid {
        grid-template-columns: 1fr !important;
    }
}
