/* Color Variables - Refined palette */
:root {
    --mustard-yellow: #E8C56D;
    --mustard-yellow-light: #F5E4B8;
    --mustard-yellow-dark: #D9B255;
    --ocean-blue: #7AAFC4;
    --ocean-blue-light: #B5D4E0;
    --ocean-blue-dark: #5A8FA4;
    --taupe: #A89F91;
    --taupe-light: #C4BBB0;
    --taupe-dark: #5C564E;
    --cream: #FAF8F5;
    --white: #FFFFFF;
    --text-dark: #3D3A36;
    --text-medium: #5C564E;
    --text-light: #7A7268;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.3;
    color: var(--taupe-dark);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    color: var(--ocean-blue-dark);
    text-decoration: none;
    transition: color 0.35s ease;
}

a:hover {
    color: var(--mustard-yellow);
}

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

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

/* Background Image with Constant Blur */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(5px);
    transform: scale(1.03);
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.55);
}

/* Header & Navigation */
.header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    transition: opacity 0.35s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.35s ease;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--taupe-dark);
    transition: all 0.35s ease;
}

/* Hero Section */
.hero {
    background: transparent;
    padding: 6rem 2rem 8rem;
    text-align: center;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .container {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem 4rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero .container:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    margin-bottom: 1rem;
    color: var(--taupe-dark);
}

.hero h1 span {
    color: var(--mustard-yellow);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 550px;
    margin: 0 auto 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.35s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--mustard-yellow);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(201, 185, 122, 0.35);
}

.btn-primary:hover {
    background-color: var(--mustard-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 185, 122, 0.45);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--ocean-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(122, 175, 196, 0.3);
}

.btn-secondary:hover {
    background-color: var(--ocean-blue-dark);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--ocean-blue);
    color: var(--ocean-blue-dark);
}

.btn-outline:hover {
    background-color: var(--ocean-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--taupe-dark);
    transform: translateY(-2px);
}

/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* Sections */
.section {
    padding: 5rem 2rem;
    position: relative;
    margin: 1rem 0;
}

.section:first-of-type {
    margin-top: 0;
}

.section-light {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.section-blue {
    background-color: var(--ocean-blue-light);
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title h2 {
    margin-bottom: 0.75rem;
}

.section-title p {
    max-width: 550px;
    margin: 0 auto;
    color: var(--text-medium);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cards */
.card {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.card:last-child {
    margin-bottom: 0;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 55px;
    height: 55px;
    background-color: var(--ocean-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
    transition: transform 0.35s ease;
}

.card:hover .card-icon {
    transform: scale(1.08);
}

.card h3 {
    margin-bottom: 0.75rem;
    color: var(--taupe-dark);
}

.card p {
    margin-bottom: 1.25rem;
}

/* Service Cards */
.service-card {
    text-align: center;
    padding: 2.5rem 2rem;
}

.service-card .card-icon {
    margin: 0 auto 1.25rem;
}

/* Pricing Cards */
.pricing-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid var(--mustard-yellow);
}

.pricing-card.featured::before {
    content: 'Populair';
    position: absolute;
    top: 18px;
    right: -32px;
    background-color: var(--mustard-yellow);
    color: var(--white);
    padding: 4px 35px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-card h3 {
    margin-bottom: 0.75rem;
}

.pricing-amount {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--taupe-dark);
    margin-bottom: 0.5rem;
}

.pricing-amount span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(181, 212, 224, 0.4);
    color: var(--text-medium);
}

.pricing-features li::before {
    content: '✓';
    color: var(--ocean-blue);
    font-weight: bold;
    margin-right: 0.6rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--ocean-blue-dark) 100%);
    padding: 3.5rem 2rem;
    text-align: center;
    color: var(--white);
    margin-bottom: 2rem;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.content-section h2 {
    margin-bottom: 1.25rem;
}

.content-section ul {
    margin: 1.25rem 0;
    padding-left: 1.25rem;
}

.content-section li {
    margin-bottom: 0.6rem;
    color: var(--text-medium);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--ocean-blue-dark) 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: var(--white);
    margin-top: 1rem;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.75rem;
}

.cta-section .btn-primary {
    background-color: var(--mustard-yellow);
    color: var(--white);
}

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

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.about-image {
    background: linear-gradient(135deg, var(--ocean-blue-light) 0%, var(--mustard-yellow-light) 100%);
    border-radius: 12px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.about-image:hover {
    transform: scale(1.01);
}

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

/* Features List */
.features-list {
    list-style: none;
    margin: 1.5rem 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    transition: transform 0.35s ease;
}

.features-list li:hover {
    transform: translateX(3px);
}

.features-list .icon {
    width: 36px;
    height: 36px;
    background-color: var(--ocean-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    color: var(--ocean-blue-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.features-list strong {
    color: var(--taupe-dark);
}

.features-list p {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--taupe-dark);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer h4 {
    color: var(--mustard-yellow);
    margin-bottom: 1rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.footer p, .footer a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer a:hover {
    color: var(--mustard-yellow);
}

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

.footer-nav li {
    margin-bottom: 0.4rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.35s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--taupe-dark);
    transition: color 0.35s ease;
}

.faq-question:hover {
    color: var(--ocean-blue-dark);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--ocean-blue);
    flex-shrink: 0;
    transition: transform 0.35s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    margin: 0;
    color: var(--text-medium);
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 0;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.7rem 0;
        border-bottom: 1px solid rgba(181, 212, 224, 0.3);
    }

    .nav-toggle {
        display: flex;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        height: 240px;
    }

    .hero {
        padding: 4rem 1.5rem;
        min-height: auto;
    }

    .hero .container {
        padding: 2rem 1.5rem;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .nav-logo img {
        height: 42px;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.25rem;
    }
}

/* =====================================================
   PRIJZEN PAGINA STYLING
   ===================================================== */

/* Intro Box */
.intro-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 900px;
    margin: 0 auto;
}

.intro-box > p {
    text-align: center;
    font-size: 1.1rem;
}

/* Abonnement Voordelen */
.abonnement-voordelen {
    background: var(--mustard-yellow-light);
    border-radius: 10px;
    padding: 1.5rem 2rem;
    margin-top: 1.5rem;
}

.abonnement-voordelen h3 {
    color: var(--taupe-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.abonnement-voordelen ul {
    list-style: none;
    padding-left: 0;
}

.abonnement-voordelen li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(217, 178, 85, 0.3);
}

.abonnement-voordelen li:last-child {
    border-bottom: none;
}

.abonnement-voordelen li::before {
    content: '•';
    color: var(--ocean-blue);
    font-weight: bold;
    font-size: 1.4rem;
    position: absolute;
    left: 0;
    top: 0.4rem;
}

.abonnement-voordelen em {
    font-size: 0.85rem;
    color: var(--text-medium);
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Pricing Subtitle */
.pricing-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* Per Les Price */
.per-les {
    color: var(--ocean-blue-dark);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* Pricing Note */
.pricing-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(181, 212, 224, 0.3);
}

/* Small Note */
.small-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Two Column Grid */
.content-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .content-grid.two-col {
        grid-template-columns: 1fr;
    }
}

/* No Signup Fee */
.no-signup-fee {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: var(--mustard-yellow-light);
    border-radius: 8px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.no-signup-fee p {
    color: var(--taupe-dark);
    font-weight: 600;
    margin: 0;
}

/* Upgrade Section */
.upgrade-section {
    background: linear-gradient(135deg, var(--ocean-blue-light) 0%, var(--mustard-yellow-light) 100%);
}

.upgrade-note {
    color: var(--ocean-blue-dark);
    font-weight: 500;
}

.upgrade-card-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.upgrade-card {
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.upgrade-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.upgrade-card h3 {
    color: var(--taupe-dark);
}

.upgrade-card .btn {
    margin-top: 1.5rem;
}

/* Abonnement Prijs (korting voor abonnementhouders) */
.abonnement-prijs {
    color: var(--mustard-yellow-dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Therapeutisch Card */
.therapeutisch-card-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

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

.therapeutisch-card p {
    margin-bottom: 0.75rem;
}

.therapeutisch-card .btn {
    margin-top: 1rem;
}

/* Proefles Card */
.proefles-card-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

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

.proefles-card .btn {
    margin-top: 1rem;
}

/* Cancellation Section */
.cancellation-section {
    background: transparent;
    padding: 2rem;
}

.cancellation-notice {
    background: rgba(232, 197, 109, 0.2);
    border: 2px solid var(--mustard-yellow);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cancellation-notice p {
    margin: 0;
    color: var(--taupe-dark);
    font-size: 0.95rem;
}

.cancellation-notice strong {
    color: var(--mustard-yellow-dark);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* =====================================================
   MOBIELE OPTIMALISATIES
   ===================================================== */

/* Tablet (768px en kleiner) */
@media (max-width: 768px) {
    /* Container padding verkleinen */
    .container {
        padding: 0 1.25rem;
    }

    /* Page Header mobiel */
    .page-header {
        padding: 2.5rem 1.25rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    /* Sections mobiel */
    .section {
        padding: 2.5rem 1rem;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    /* Cards mobiel */
    .card {
        padding: 1.75rem 1.25rem;
    }

    /* Pricing cards mobiel */
    .pricing-amount {
        font-size: 2.2rem;
    }

    .pricing-amount span {
        font-size: 0.85rem;
        display: block;
        margin-top: 0.25rem;
    }

    /* Content grid mobiel - 1 kolom */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* Intro box mobiel */
    .intro-box {
        padding: 1.5rem 1.25rem;
    }

    .intro-box > p {
        font-size: 1rem;
    }

    /* Abonnement voordelen mobiel */
    .abonnement-voordelen {
        padding: 1.25rem 1rem;
    }

    .abonnement-voordelen h3 {
        font-size: 1.1rem;
    }

    .abonnement-voordelen li {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }

    /* Buttons mobiel - full width */
    .pricing-card .btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
    }

    .section-cta .btn {
        width: 100%;
        max-width: 100%;
        font-size: 0.85rem;
        padding: 0.9rem 1.25rem;
        white-space: normal;
        line-height: 1.4;
    }

    /* Upgrade card mobiel */
    .upgrade-card {
        padding: 1.5rem 1.25rem;
    }

    .upgrade-card .pricing-note {
        font-size: 0.8rem;
    }

    /* Cancellation notice mobiel */
    .cancellation-notice {
        padding: 1.25rem 1rem;
    }

    .cancellation-notice p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* No signup fee mobiel */
    .no-signup-fee {
        max-width: 100%;
        margin-top: 1.5rem;
    }
}

/* Kleine telefoons (480px en kleiner) */
@media (max-width: 480px) {
    /* Nog kleinere fonts */
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.2rem; }

    .page-header {
        padding: 2rem 1rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    /* Sections nog compacter */
    .section {
        padding: 2rem 0.75rem;
    }

    /* Cards nog compacter */
    .card {
        padding: 1.5rem 1rem;
        border-radius: 10px;
    }

    /* Pricing */
    .pricing-amount {
        font-size: 1.9rem;
    }

    .pricing-subtitle {
        font-size: 0.85rem;
    }

    .per-les {
        font-size: 0.85rem;
    }

    .pricing-note {
        font-size: 0.8rem;
        padding-top: 0.75rem;
        margin-top: 0.75rem;
    }

    /* Intro box compact */
    .intro-box {
        padding: 1.25rem 1rem;
        border-radius: 10px;
    }

    .intro-box > p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    /* Abonnement voordelen compact */
    .abonnement-voordelen {
        padding: 1rem 0.75rem;
        border-radius: 8px;
    }

    .abonnement-voordelen h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .abonnement-voordelen li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        padding-left: 1.25rem;
    }

    .abonnement-voordelen li::before {
        font-size: 1.2rem;
        top: 0.35rem;
    }

    .abonnement-voordelen em {
        font-size: 0.75rem;
    }

    /* Section title compact */
    .section-title {
        margin-bottom: 1.5rem;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    .small-note {
        font-size: 0.8rem;
    }

    /* Buttons compact */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    /* Cancellation compact */
    .cancellation-section {
        padding: 1.5rem 0.75rem;
    }

    .cancellation-notice {
        padding: 1rem 0.75rem;
        border-radius: 10px;
    }

    .cancellation-notice p {
        font-size: 0.8rem;
    }

    .cancellation-notice strong {
        font-size: 1rem;
        display: block;
        margin-bottom: 0.5rem;
    }

    /* Upgrade section compact */
    .upgrade-card-wrapper,
    .therapeutisch-card-wrapper,
    .proefles-card-wrapper {
        max-width: 100%;
    }

    /* Two column grid - always 1 col on small screens */
    .content-grid.two-col {
        grid-template-columns: 1fr;
    }
}

/* Extra: touch-friendly tap targets */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu a {
        padding: 0.75rem 0;
    }

    .pricing-card .btn {
        min-height: 48px;
    }
}

/* =====================================================
   HOMEPAGE - HERO IMAGE ONLY
   ===================================================== */

.hero.hero-image-only {
    padding: 0;
    min-height: auto;
    background: transparent;
}

.hero-studio-image {
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-studio-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 70vh;
}

/* =====================================================
   HOMEPAGE - WELCOME / ABOUT SECTION
   ===================================================== */

.about-content-full {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem 4rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.about-content-full .section-cta {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--ocean-blue-light);
}

.welcome-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--taupe-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.studio-quote {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    font-style: italic;
    color: var(--taupe-dark);
    margin: 0 auto 0.75rem;
    padding: 0 1rem;
    border: none;
    max-width: 700px;
    line-height: 1.5;
}

.quote-signature {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

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

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.85;
    color: var(--text-medium);
}

.about-text .welcome-closing {
    font-weight: 600;
    color: var(--taupe-dark);
    margin-top: 2rem;
    font-size: 1.05rem;
}

/* =====================================================
   HOMEPAGE - SERVICES GRID (4 COLUMNS)
   ===================================================== */

.services-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.services-grid-four .service-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    min-height: 100%;
}

.services-grid-four .service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-intro {
    font-weight: 600;
    color: var(--ocean-blue-dark);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--ocean-blue-light);
}

.services-grid-four .service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    flex-grow: 0;
}

.service-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0.75rem;
    text-align: center;
}

.service-list li {
    padding: 0.3rem 0;
    color: var(--text-medium);
    font-size: 0.88rem;
}

.service-instructor {
    font-weight: 600;
    color: var(--taupe-dark);
    margin-top: auto;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    padding-top: 0.75rem;
}

.service-note {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.services-grid-four .btn {
    margin-top: auto;
    font-size: 0.8rem;
    padding: 0.7rem 0.9rem;
    white-space: nowrap;
}

/* Responsive: 4 columns to 2 columns on tablet */
@media (max-width: 1100px) {
    .services-grid-four {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .services-grid-four .service-card h3 {
        font-size: 1.2rem;
        min-height: auto;
    }

    .services-grid-four .service-card {
        padding: 1.75rem 1.5rem;
    }
}

/* Responsive: 2 columns to 1 column on mobile */
@media (max-width: 600px) {
    .services-grid-four {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-grid-four .service-card {
        padding: 1.5rem 1.25rem;
    }

    .services-grid-four .service-card h3 {
        font-size: 1.15rem;
    }

    .about-content-full {
        padding: 1.75rem 1.25rem;
    }

    .welcome-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .studio-quote {
        font-size: 1.05rem;
        padding: 0 0.5rem;
    }

    .quote-signature {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.7;
    }

    .about-text .welcome-closing {
        font-size: 0.95rem;
    }

    .about-content-full .section-cta {
        margin-top: 2rem;
        padding-top: 1.25rem;
    }

    .hero-studio-image {
        max-height: 50vh;
    }

    .hero-studio-image img {
        max-height: 50vh;
    }

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