/*
Theme Name: Studius
Theme URI: https://studius.nl
Author: Benjamin Peters (Baptiq)
Description: Concept website — licht thema, Studius huisstijl, multi-page
Version: 2.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: studius
*/

/* ============================================
   CSS Custom Properties
   Overschreven door site-config.php via inline style
   ============================================ */

:root {
    --primary: #fd8549;
    --primary-dark: #e06b2e;
    --secondary: #8ae0e5;
    --text: #2f3c4c;
    --text-light: #566476;
    --bg: #ffffff;
    --bg-light: #f6fdfe;
    --border: #e9eaec;
    --hero-bg: #2f3c4c;
    --hero-text: #ffffff;
    --font: 'Nunito Sans', sans-serif;
    --font-heading: 'Be Vietnam Pro', sans-serif;
    --max-width: 1140px;
    --radius: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ============================================
   Reset & Base
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--text); line-height: 1.25; }
::selection { background: rgba(253, 133, 73, 0.2); color: var(--text); }

/* ============================================
   Layout
   ============================================ */

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

.container--narrow { max-width: 800px; }

.section {
    padding: 80px 0;
    position: relative;
}

.section--alt { background: var(--bg-light); }

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(253, 133, 73, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 133, 73, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
    color: #fff;
    transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: #25d366;
    color: #fff;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    transition: all var(--transition);
}

.btn-whatsapp:hover {
    background: #1fba59;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

/* ============================================
   Scroll Reveal Animaties
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    will-change: opacity, transform;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-left.active,
.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-pop {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    will-change: opacity, transform;
}

.reveal-pop.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

/* ============================================
   Header / Navigatie
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

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

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo:hover { opacity: 0.9; }

.logo-img {
    height: 42px;
    width: auto;
}

.site-nav {
    display: flex;
    align-items: center;
}

.site-nav ul {
    display: flex;
    gap: 8px;
    list-style: none;
    align-items: center;
}

.site-nav a {
    display: block;
    padding: 8px 14px;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 8px;
    transition: all var(--transition);
    position: relative;
}

.site-header.scrolled .site-nav a {
    color: var(--text-light);
}

.site-nav a:hover,
.site-nav a.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.site-header.scrolled .site-nav a:hover,
.site-header.scrolled .site-nav a.active {
    color: var(--primary);
    background: rgba(253, 133, 73, 0.08);
}

.nav-cta {
    background: var(--primary) !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: all 0.3s var(--ease);
    border-radius: 1px;
}

.site-header.scrolled .menu-toggle span { background: var(--text); }

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.menu-toggle.active span { background: var(--text) !important; }

/* ============================================
   Hero (Homepage)
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-blobs {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    max-width: 600px;
    z-index: 1;
    opacity: 0.5;
    animation: blobFloat 20s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, 15px) rotate(5deg); }
    66% { transform: translate(10px, -10px) rotate(-3deg); }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(47,60,76,0.92) 0%, rgba(47,60,76,0.85) 50%, rgba(47,60,76,0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
    line-height: 1.15;
}

.hero-text {
    font-size: 1.05rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.6;
    color: #fff;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* ============================================
   Page Header (subpagina's)
   ============================================ */

.page-header {
    background: var(--bg-light);
    padding: 140px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-blobs {
    position: absolute;
    top: -20%;
    right: -5%;
    width: 50%;
    max-width: 500px;
    opacity: 0.4;
    z-index: 0;
    animation: blobFloat 25s ease-in-out infinite;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.page-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ============================================
   Stats Bar
   ============================================ */

.stats-bar {
    background: linear-gradient(135deg, var(--primary) 0%, #f97316 100%);
    color: #fff;
    padding: 48px 24px;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
}

.stat-label {
    display: block;
    margin-top: 6px;
    font-size: 0.88rem;
    opacity: 0.9;
    font-weight: 600;
}

/* ============================================
   Service Cards (homepage diensten overzicht)
   ============================================ */

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

.service-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    text-decoration: none;
    color: var(--text);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(253, 133, 73, 0.2);
    color: var(--text);
}

.service-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform var(--transition);
}

.service-card:hover .service-link { transform: translateX(4px); }

/* Service page icon (groot op dienstpagina's) */
.service-page-icon {
    max-width: 200px;
    margin: 0 auto;
    opacity: 0.8;
}

/* ============================================
   Pricing Cards
   ============================================ */

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

.pricing-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease);
    position: relative;
}

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

.pricing-card--popular {
    border-color: var(--primary);
    box-shadow: 0 4px 24px rgba(253, 133, 73, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.price-from {
    font-size: 0.82rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-features svg { flex-shrink: 0; }

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

/* ============================================
   Google Reviews
   ============================================ */

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.google-stars {
    display: flex;
    gap: 2px;
    color: #fbbc04;
    font-size: 1.4rem;
}

.google-score {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
}

.google-count {
    color: var(--text-light);
    font-size: 0.92rem;
}

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

.review-card {
    background: #fff;
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

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

.review-stars {
    color: #fbbc04;
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.review-author {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text);
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

/* ============================================
   Steps / Hoe het werkt
   ============================================ */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 18%;
    right: 18%;
    height: 2px;
    background: linear-gradient(to right, var(--border), var(--primary), var(--border));
    opacity: 0.3;
}

.step-card {
    text-align: center;
    padding: 24px 16px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 16px rgba(253, 133, 73, 0.3);
    transition: all var(--transition);
}

.step-card:hover .step-number {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(253, 133, 73, 0.4);
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    background: var(--hero-bg);
    padding: 80px 24px;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
}

.cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Content Split (twee kolommen)
   ============================================ */

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-split--reverse {
    direction: rtl;
}

.content-split--reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.content-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.98rem;
}

.content-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.image-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.image-grid-2 img {
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ============================================
   Benefits Grid
   ============================================ */

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

.benefit-card {
    background: #fff;
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.benefit-icon { flex-shrink: 0; }

.benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   Price Highlight (inline prijs op dienstpagina)
   ============================================ */

.price-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: #fff;
    padding: 32px 40px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 24px rgba(253, 133, 73, 0.1);
}

.price-highlight-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.price-highlight-content p {
    color: var(--text-light);
    font-size: 0.92rem;
}

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

.price-highlight-price .price-from {
    display: block;
    font-size: 0.78rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-highlight-price .price-amount {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.price-highlight-price .price-period {
    display: block;
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ============================================
   Testimonial Featured (groot, met foto)
   ============================================ */

.testimonial-featured {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-photo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 4px 20px rgba(253, 133, 73, 0.15);
}

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

.testimonial-content blockquote p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-content cite {
    font-style: normal;
}

.testimonial-content cite strong {
    display: block;
    font-size: 1rem;
    color: var(--text);
}

.testimonial-content cite span {
    font-size: 0.88rem;
    color: var(--text-light);
}

/* ============================================
   Training Cards (examentraining pagina)
   ============================================ */

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

.training-card {
    background: #fff;
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s var(--ease);
}

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

.training-type {
    display: inline-block;
    background: rgba(253, 133, 73, 0.1);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.training-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.training-datum {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 16px;
}

/* ============================================
   Team Grid
   ============================================ */

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

.team-card {
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

.team-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
}

.team-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-role {
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-desc {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ============================================
   USP Grid
   ============================================ */

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

.usp-card {
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

.usp-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.usp-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 16px;
}

.usp-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.usp-card p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ============================================
   FAQ Accordion
   ============================================ */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-item.faq-open {
    border-color: rgba(253, 133, 73, 0.3);
    box-shadow: 0 2px 12px rgba(253, 133, 73, 0.08);
}

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

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

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
    color: var(--text-light);
}

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

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

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

/* ============================================
   Contact Page
   ============================================ */

.contact-page-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrapper h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-note {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.contact-form--light {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

.form-group small {
    font-size: 0.8rem;
    color: var(--text-light);
}

.contact-form--light input,
.contact-form--light textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text);
    background: #fff;
    transition: all var(--transition);
    width: 100%;
}

.contact-form--light input:focus,
.contact-form--light textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(253, 133, 73, 0.1);
}

.contact-form--light textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    cursor: pointer;
    color: var(--text);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

/* Contact Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 24px; }

.contact-info-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.contact-detail {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.contact-detail svg { flex-shrink: 0; margin-top: 2px; }

.contact-detail strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.contact-detail p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.contact-detail a { color: var(--primary); }
.contact-detail a:hover { color: var(--primary-dark); }

.opening-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.opening-row:last-child { border-bottom: none; }
.opening-day { font-weight: 600; color: var(--text); }
.opening-time { color: var(--text-light); }

/* Maps section */
.maps-section { line-height: 0; }
.maps-section iframe { display: block; }

/* ============================================
   Footer (multi-kolom)
   ============================================ */

.site-footer {
    background: #1e2a38;
    color: rgba(255,255,255,0.6);
    padding: 60px 24px 24px;
    font-size: 0.88rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-nav {
    list-style: none;
}

.footer-nav li { margin-bottom: 8px; }

.footer-nav a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer-nav a:hover { color: var(--primary); }

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(255,255,255,0.4);
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-contact a:hover { color: var(--primary); }

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.footer-lvsi {
    margin-top: 20px;
}

.lvsi-badge {
    display: inline-block;
    opacity: 0.5;
    transition: opacity var(--transition);
}

.lvsi-badge:hover {
    opacity: 0.85;
}

.lvsi-logo {
    height: 48px;
    width: auto;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }

    .hero { padding: 140px 20px 80px; min-height: 100svh; }
    .hero h1 { font-size: 1.9rem; letter-spacing: -0.5px; }
    .hero-text { font-size: 0.95rem; }

    .page-header { padding: 120px 20px 48px; }
    .page-header h1 { font-size: 1.8rem; }

    .section-header h2 { font-size: 1.7rem; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-value { font-size: 2.2rem; }

    .services-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .reviews-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .steps-grid::before { display: none; }
    .training-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .usp-grid { grid-template-columns: 1fr; }

    .content-split { grid-template-columns: 1fr; gap: 32px; }
    .content-split--reverse { direction: ltr; }

    .testimonial-featured { flex-direction: column; text-align: center; gap: 24px; }

    .price-highlight {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 28px 24px;
    }

    .contact-page-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .checkbox-group { grid-template-columns: 1fr; }

    .site-footer { padding: 32px 16px 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px 16px; text-align: center; }
    .footer-about { grid-column: 1 / -1; }
    .footer-about p { font-size: 0.82rem; margin-top: 6px; }
    .footer-logo { margin-bottom: 8px; }
    .footer-col h4 { font-size: 0.9rem; margin-bottom: 8px; }
    .footer-nav li { margin-bottom: 2px; }
    .footer-nav a { font-size: 0.84rem; }
    .footer-contact { display: flex; flex-direction: column; align-items: center; }
    .footer-contact li { font-size: 0.84rem; gap: 6px; margin-bottom: 6px; justify-content: center; }
    .footer-contact a { font-size: 0.84rem; }
    /* Social kolom: volle breedte onderaan */
    .footer-col:last-child { grid-column: 1 / -1; }
    .footer-social { justify-content: center; gap: 8px; margin-bottom: 12px; }
    .footer-social a { width: 34px; height: 34px; }
    .footer-lvsi { margin-top: 6px; }
    .footer-lvsi p { font-size: 0.8rem; margin-bottom: 0; }
    .footer-lvsi small { font-size: 0.72rem; }
    .footer-grid { margin-bottom: 16px; }
    .footer-bottom { margin-top: 0; padding: 14px 0; }
    .footer-bottom p { font-size: 0.75rem; }

    .hero-ctas { flex-direction: column; align-items: center; }
    .cta-buttons { flex-direction: column; align-items: center; }

    /* Mobiel menu */
    .menu-toggle { display: block; }

    /* Header altijd wit wanneer menu open is */
    .site-header:has(.site-nav.active) {
        background: #fff;
        box-shadow: 0 1px 12px rgba(0,0,0,0.06);
    }

    .site-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        display: block !important;
        background: #fff;
        text-align: center !important;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s var(--ease);
        box-shadow: 0 8px 32px rgba(0,0,0,0.08);
        border-bottom: 1px solid var(--border);
        padding: 16px 24px;
    }

    .site-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .site-nav li {
        text-align: center !important;
    }

    .site-nav a {
        color: var(--text) !important;
        display: block !important;
        text-align: center !important;
        padding: 12px 16px !important;
        border-radius: 8px;
        background: none !important;
    }

    .site-nav a:hover,
    .site-nav a.active {
        background: rgba(253, 133, 73, 0.08) !important;
        color: var(--primary) !important;
    }

    .nav-cta {
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .hero { padding: 120px 16px 60px; }
    .hero h1 { font-size: 1.6rem; }

    .page-header { padding: 110px 16px 40px; }
    .page-header h1 { font-size: 1.5rem; }

    .section { padding: 48px 0; }
    .section-header h2 { font-size: 1.5rem; }

    .stats-bar { padding: 36px 16px; }
    .stat-value { font-size: 1.8rem; }
    .stat-suffix { font-size: 1.2rem; }

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

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }

    .faq-question { padding: 16px 18px; font-size: 0.92rem; }
    .faq-answer p { padding: 0 18px 16px; font-size: 0.9rem; }
}
