/* QTABLE - Reserveringen Landing Page */

:root {
    /* Logo kleuren - QTABLE */
    --teal-dark: #1C4B4C;
    --teal-darker: #163a3b;
    --turquoise: #2FDED3;
    --turquoise-light: #4ae8df;
    --white: #ffffff;
    --off-white: #f8f9fa;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--white);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    /* Volledig dekkend: geen rgba-transparantie en geen backdrop-filter — anders schijnt
       content (o.a. “MEEST POPULAIR”, andere koppen) door de taalknoppen heen. */
    background: linear-gradient(180deg, #2c5a5b 0%, var(--teal-dark) 100%);
    border-radius: 12px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    isolation: isolate;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background: rgba(47, 222, 211, 0.2);
    border-color: var(--turquoise);
}

.nav-demo {
    background: var(--turquoise) !important;
    color: var(--teal-dark) !important;
    border-color: var(--turquoise) !important;
    font-weight: 600;
}

.nav-demo:hover {
    background: var(--turquoise-light) !important;
    border-color: var(--turquoise-light) !important;
    color: var(--teal-dark) !important;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.lang-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    padding: 6px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.12);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.lang-link:hover {
    color: var(--turquoise);
    border-color: rgba(47, 222, 211, 0.55);
    background: rgba(47, 222, 211, 0.1);
}

.lang-link.is-active {
    color: var(--teal-dark);
    background: var(--turquoise);
    border-color: var(--turquoise);
}

.lang-link.is-active:hover {
    color: var(--teal-dark);
    background: var(--turquoise-light);
    border-color: var(--turquoise-light);
}

.nav-links .download-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Hamburger menu */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

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

.nav-burger.active span:nth-child(2) {
    opacity: 0;
}

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

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Section */
.section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--teal-dark);
}

.section-subtitle {
    text-align: center;
    color: #5a6c6d;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.bg-light {
    background: var(--off-white);
}

.bg-teal {
    background: var(--teal-dark);
    color: var(--white);
}

.bg-teal .section-title,
.bg-teal .section-subtitle {
    color: var(--white);
}

.bg-teal .section-subtitle {
    opacity: 0.9;
}

/* Benefits — kaarten gelijk uitgelijnd; “zwevend” door schaduw + lichte lift */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px 32px;
    margin-top: 48px;
    align-items: stretch;
}

.benefit-card {
    background: var(--white);
    padding: 28px 32px 32px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.65);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 0;
    /* Licht boven de achtergrond: zachte lift + gelaagde schaduw (diepte i.p.v. verspringing) */
    transform: translateY(-6px);
    box-shadow:
        0 1px 1px rgba(28, 75, 76, 0.04),
        0 4px 12px rgba(28, 75, 76, 0.06),
        0 14px 36px rgba(28, 75, 76, 0.1),
        0 28px 56px rgba(20, 50, 52, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.95) inset;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(47, 222, 211, 0.25);
    box-shadow:
        0 2px 4px rgba(28, 75, 76, 0.05),
        0 8px 20px rgba(28, 75, 76, 0.08),
        0 20px 48px rgba(28, 75, 76, 0.14),
        0 36px 72px rgba(20, 50, 52, 0.1),
        0 1px 0 rgba(255, 255, 255, 1) inset;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    color: var(--teal-dark);
    background: linear-gradient(155deg, rgba(47, 222, 211, 0.18) 0%, rgba(255, 255, 255, 0.95) 55%, rgba(248, 250, 250, 1) 100%);
    border: 1px solid rgba(28, 75, 76, 0.1);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow:
        0 1px 2px rgba(28, 75, 76, 0.06),
        0 4px 10px rgba(28, 75, 76, 0.05);
}

.benefit-icon svg {
    display: block;
    flex-shrink: 0;
}

.benefit-card h3 {
    color: var(--teal-dark);
    font-size: 1.22rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #5a6c6d;
    line-height: 1.62;
    font-size: 0.98rem;
    flex-grow: 1;
}

@media (prefers-reduced-motion: reduce) {
    .benefit-card,
    .benefit-card:hover {
        transition: none;
    }
    .benefit-card:hover {
        transform: translateY(-6px);
    }
}

/* Section met video achtergrond */
.section-plannen,
.section-contact,
.section-verhaal {
    position: relative;
    overflow: hidden;
    max-width: none;
}

.plannen-video,
.contact-video,
.verhaal-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.plannen-overlay,
.contact-overlay,
.verhaal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28, 75, 76, 0.85) 0%, rgba(28, 75, 76, 0.92) 100%);
    z-index: 1;
}

.plannen-content,
.contact-content,
.verhaal-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.section-plannen .section-title,
.section-plannen .section-subtitle,
.section-contact .section-title,
.section-contact .section-subtitle,
.section-verhaal .section-title,
.section-verhaal .section-subtitle {
    color: var(--white);
}

.section-plannen .section-subtitle,
.section-contact .section-subtitle,
.section-verhaal .section-subtitle {
    opacity: 0.95;
}

/* Hero — basis (mobiel overschrijft hoogte/fit; desktop zie @media min-width 769px) */
.hero {
    position: relative;
    overflow: hidden;
    background-color: var(--teal-dark);
}

.hero-image {
    z-index: 0;
}

@media (min-width: 769px) {

    /* Geen groene band boven/bij de navbar: neutrale hero-achtergrond, foto tot bovenkant, navbar zonder teal-vlak */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #0a0a0a;
    }

    .hero-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transform: none;
    }

    .navbar {
        top: 0;
        background: rgba(10, 10, 10, 0.45);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    }
}

/* Pricing */
.pricing-billing-wrap {
    display: flex;
    justify-content: center;
    margin-top: 8px;
    margin-bottom: 8px;
}

.pricing-billing-toggle {
    display: inline-flex;
    padding: 4px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    border: 1px solid #e0e8e8;
    gap: 4px;
}

.billing-btn {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    color: #5a6c6d;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.billing-btn:hover {
    color: var(--teal-dark);
    background: rgba(28, 75, 76, 0.06);
}

.billing-btn.is-active {
    background: var(--teal-dark);
    color: var(--white);
}

.billing-btn.is-active:hover {
    background: var(--teal-darker);
    color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.plan-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    position: relative;
    border: 2px solid #e8ecec;
    transition: all 0.2s;
}

.plan-card.featured {
    border-color: var(--turquoise);
    box-shadow: 0 8px 40px rgba(47, 222, 211, 0.25);
    transform: scale(1.02);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--turquoise);
    color: var(--teal-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
    max-width: calc(100% - 16px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 8px;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 4px;
}

.plan-price-main {
    line-height: 1.2;
}

.plan-price-asterisk {
    font-size: 0.45em;
    font-weight: 700;
    vertical-align: super;
    margin-left: 0.1em;
    color: #5a6c6d;
}

.plan-price-period {
    font-size: 1rem;
    font-weight: 400;
    color: #5a6c6d;
}

.plan-price-yearly-line {
    font-size: 0.85rem;
    font-weight: 500;
    color: #5a6c6d;
    line-height: 1.35;
    margin-top: 6px;
    max-width: 100%;
}

.plan-discount-ticket {
    display: none;
    margin: 12px 0 10px;
    padding: 12px 14px;
    border: 2px dashed var(--turquoise);
    border-radius: 10px;
    background: rgba(47, 222, 211, 0.12);
    text-align: center;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    max-width: 100%;
}

.plan-discount-ticket.is-visible {
    display: flex;
}

.plan-discount-title {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal-dark);
}

.plan-discount-pct {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--teal-dark);
}

.plan-discount-save {
    font-size: 0.88rem;
    font-weight: 600;
    color: #3d4f50;
    line-height: 1.35;
}

.plan-desc {
    color: #5a6c6d;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
    padding: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3d4f50;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.plan-features .check {
    color: var(--turquoise);
    font-size: 1rem;
}

.plan-features .plan-feature-extra {
    color: #5f6d6e;
    font-size: 0.85rem;
    padding-left: 28px;
    line-height: 1.4;
}

.plan-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
    border: 2px solid var(--teal-dark);
}

.plan-btn.outline {
    background: transparent;
    color: var(--teal-dark);
}

.plan-btn.outline:hover {
    background: var(--teal-dark);
    color: var(--white);
}

.plan-btn.primary {
    background: var(--turquoise);
    color: var(--teal-dark);
    border-color: var(--turquoise);
}

.plan-btn.primary:hover {
    background: var(--turquoise-light);
    border-color: var(--turquoise-light);
}

.plan-btn.ultimate {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    color: #fff;
    border-color: transparent;
}

.plan-btn.ultimate:hover {
    background: linear-gradient(135deg, #6d28d9, #4c1d95);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

/* Ultimate plan card */
.plan-card--ultimate {
    background: #ffffff;
    border: 2px solid #7c3aed;
    box-shadow: 0 6px 28px rgba(124, 58, 237, 0.18);
}

.plan-card--ultimate:hover {
    border-color: #5b21b6;
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.28);
    transform: translateY(-3px);
}

.plan-card--ultimate .plan-name {
    color: #5b21b6;
}

.plan-card--ultimate .plan-price {
    color: #3b0764;
}

.plan-badge--ultimate {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    color: #fff;
}

.plan-vat-note {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6a7a7b;
    margin: 14px 0 0;
    text-align: center;
    line-height: 1.35;
}

.plan-vat-asterisk {
    font-weight: 700;
    margin-right: 0.2em;
    color: #5a6c6d;
}

/* Comparison trigger */
.comparison-trigger-wrap {
    text-align: center;
    margin-top: 32px;
}

.comparison-trigger-btn {
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.comparison-trigger-btn:hover {
    background: var(--turquoise);
    border-color: var(--turquoise);
    color: var(--teal-dark);
}

.comparison-wrap.comparison-hidden {
    display: none;
}

.comparison-wrap.comparison-visible {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Comparison table */
.comparison-wrap {
    overflow-x: auto;
    margin-top: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.comparison-footnote {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--teal-dark);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(47, 222, 211, 0.4);
    border-radius: 6px;
    margin: 12px auto 0;
    padding: 6px 14px;
    text-align: center;
    width: 100%;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e8ecec;
}

.comparison-table th {
    background: var(--teal-dark);
    color: var(--white);
    font-weight: 600;
}

.comparison-table th:first-child {
    min-width: 220px;
}

.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3),
.comparison-table th:nth-child(4),
.comparison-table th:nth-child(5) {
    text-align: center;
    min-width: 100px;
}

.comparison-table th:nth-child(3) {
    background: rgba(47, 222, 211, 0.3);
    color: var(--teal-dark);
}

/* Ultimate column header */
.comparison-table th.th-ultimate,
.comparison-table th:nth-child(5) {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.7), rgba(91, 33, 182, 0.8));
    color: #fff;
}

.comparison-table td {
    color: #3d4f50;
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3),
.comparison-table td:nth-child(4),
.comparison-table td:nth-child(5) {
    text-align: center;
}

.comparison-table td:nth-child(3) {
    background: rgba(47, 222, 211, 0.08);
    font-weight: 500;
}

/* Ultimate column cells */
.comparison-table td.td-ultimate,
.comparison-table td:nth-child(5) {
    background: rgba(124, 58, 237, 0.06);
    font-weight: 500;
}

.comparison-table tbody tr:not(.category-row):hover td {
    background: rgba(47, 222, 211, 0.05);
}

.comparison-table tbody tr:not(.category-row):hover td:nth-child(3) {
    background: rgba(47, 222, 211, 0.12);
}

.comparison-table .check {
    color: #7c3aed;
}

.comparison-table td:nth-child(3) .check {
    color: var(--turquoise);
}

/* Ultimate-exclusive rows */
.tr-ultimate-exclusive td:not(.td-ultimate) .check {
    opacity: 0.5;
}

.comparison-table .category-row th {
    background: #2c5a5b;
    font-size: 0.9rem;
}

.check {
    color: var(--turquoise);
    font-size: 1.2rem;
}

.dash {
    color: #b0b8b9;
}

/* Contact form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.contact-info p {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.contact-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    opacity: 0.95;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: inherit;
    font-size: 16px;
}

.form-group input {
    min-height: 44px;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-btn {
    width: 100%;
    padding: 16px;
    background: var(--turquoise);
    color: var(--teal-dark);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.form-btn:hover {
    background: var(--turquoise-light);
}

.form-message {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.form-message.success {
    background: rgba(47, 222, 211, 0.3);
}

.form-message.error {
    background: rgba(220, 53, 69, 0.3);
}

/* Footer */
footer {
    background: var(--teal-darker);
    color: var(--white);
    padding: 48px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo img,
.footer-video {
    height: 108px;
    width: auto;
}

.footer-video {
    display: block;
    object-fit: contain;
}

.footer-address {
    text-align: right;
    opacity: 0.9;
}

.footer-address p {
    margin: 4px 0;
}

/* Responsive */
@media (max-width: 768px) {

    html,
    body {
        min-height: 100vh !important;
        min-height: 100dvh !important;
    }

    /* Hero op mobiel: zie @media-blokken onderaan (vierkant portret vs liggend) */

    .nav-overlay.visible {
        display: block;
        opacity: 1;
    }

    .navbar {
        width: calc(100% - 24px);
        top: 12px;
        padding: 12px 16px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .nav-burger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        background: var(--teal-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        padding: 80px 24px 24px;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .nav-demo {
        margin-top: 8px;
        margin-bottom: 0;
    }

    .nav-cta-mobile {
        margin-top: 16px;
        padding: 14px 24px !important;
        background: var(--turquoise) !important;
        color: var(--teal-dark) !important;
        border-radius: 10px;
        font-weight: 600;
        border: none !important;
    }

    .nav-right {
        display: none;
    }

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

    .section {
        padding: 48px 16px !important;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
        padding: 0 8px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
    }

    .benefit-card {
        padding: 24px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 32px;
    }

    .plan-card--ultimate {
        grid-column: span 2;
    }

    .plan-card {
        padding: 24px;
    }

    .plan-card.featured {
        transform: none;
    }

    .plan-name {
        font-size: 1.35rem;
    }

    .plan-price {
        font-size: 1.75rem;
    }

    .comparison-wrap {
        margin-top: 32px;
        margin-left: -16px;
        margin-right: -16px;
        border-radius: 0;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .comparison-table th:first-child {
        min-width: 180px;
    }

    .comparison-table th:nth-child(2),
    .comparison-table th:nth-child(3),
    .comparison-table th:nth-child(4) {
        min-width: 90px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form {
        padding: 24px;
    }

    .form-btn {
        min-height: 48px;
        padding: 14px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

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

    .footer-video {
        height: 72px;
    }
}

/*
 * Mobiel: images/hero_mobiel_qtable.png (picture ≤768px) volledig zichtbaar — geen desktop cover.
 * Portret: vierkante sectie via padding-bottom (werkt overal); liggend: volle viewport-hoogte.
 * max-aspect-ratio betrouwbaarder dan orientation op sommige browsers.
 */
@media (max-width: 768px) and (max-aspect-ratio: 1/1) {
    .hero {
        display: block !important;
        visibility: visible !important;
        position: relative !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 0 100% 0 !important;
        height: 0 !important;
        min-height: 0 !important;
        background-color: #0d0d0d !important;
    }

    .hero picture {
        position: absolute !important;
        inset: 0 !important;
        z-index: 0 !important;
    }

    .hero-image {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: contain !important;
        object-position: center center !important;
        transform: translateY(50px) !important;
        z-index: 0 !important;
    }
}

@media (max-width: 768px) and (min-aspect-ratio: 1001/1000) {
    .hero {
        display: block !important;
        visibility: visible !important;
        position: relative !important;
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
        height: auto !important;
        min-height: 100svh !important;
        min-height: 100dvh !important;
        min-height: -webkit-fill-available !important;
        background-color: #0d0d0d !important;
    }

    .hero picture {
        position: absolute !important;
        inset: 0 !important;
        z-index: 0 !important;
    }

    .hero-image {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: contain !important;
        object-position: center center !important;
        transform: translateY(50px) !important;
        z-index: 0 !important;
    }
}

body.nav-open {
    overflow: hidden;
}

@media (min-width: 769px) {
    .nav-burger {
        display: none !important;
    }

    .nav-links .nav-cta-mobile {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .navbar {
        width: calc(100% - 16px);
        top: 8px;
        padding: 10px 12px;
    }

    .section {
        padding: 40px 12px !important;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .plan-card--ultimate {
        grid-column: 1;
    }

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

    .section-subtitle {
        font-size: 0.95rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }

    .comparison-table th:first-child {
        min-width: 140px;
    }

    .comparison-table th:nth-child(2),
    .comparison-table th:nth-child(3),
    .comparison-table th:nth-child(4) {
        min-width: 70px;
    }

    .footer-video {
        height: 56px;
    }
}

/* ─── Rekentool (ROI) ─── */
.section-roi-outer {
    padding: 0;
    max-width: none;
    width: 100%;
}

.section-roi-outer [hidden] {
    display: none !important;
}

.roi-intro-banner {
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    background: linear-gradient(165deg,
            #234f50 0%,
            var(--teal-dark) 45%,
            var(--teal-darker) 100%);
}

/* Twee kolommen in een begrensde container; tekst en foto gecentreerd per kolom */
.roi-intro-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(16px, 3vw, 40px);
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: min(42vh, 380px);
    padding: 0 clamp(20px, 4vw, 56px);
    box-sizing: border-box;
}

.roi-intro-copy {
    background: transparent;
    padding: 44px clamp(16px, 3vw, 28px) 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    box-sizing: border-box;
}

.roi-intro-copy-inner {
    width: 100%;
    max-width: 42ch;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    text-align: center;
}

.roi-banner-heading {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
}

.roi-banner-lead {
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.94);
    margin: 0;
    max-width: 42ch;
}

.roi-banner-cta {
    align-self: center;
    margin-top: 8px;
    padding: 14px 32px;
    border: 2px solid var(--white);
    border-radius: 8px;
    background: transparent;
    color: var(--white);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.roi-banner-cta:hover {
    background: rgba(47, 222, 211, 0.18);
    border-color: rgba(255, 255, 255, 0.95);
}

.roi-banner-cta:focus-visible {
    outline: 2px solid var(--turquoise);
    outline-offset: 3px;
}

.roi-intro-media {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 3vw, 40px) clamp(16px, 3vw, 28px) clamp(28px, 4vw, 64px);
    background: transparent;
    box-sizing: border-box;
}

.roi-intro-media-img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

@media (max-width: 768px) {
    .roi-intro-banner-inner {
        grid-template-columns: 1fr;
        column-gap: 0;
        min-height: 0;
    }

    .roi-intro-media {
        order: -1;
        justify-content: center;
        padding: 16px 16px clamp(24px, 6vw, 48px);
    }

    .roi-intro-copy {
        align-items: center;
        padding: 32px 24px 36px;
    }

    .roi-intro-copy-inner {
        max-width: none;
    }
}

.roi-calculator-panel.section {
    margin-top: 0;
}

/* ROI-rekentool in modal (wegklikken op achtergrond of sluitknop) */
.roi-modal[hidden] {
    display: none !important;
}

.roi-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 4vw, 32px);
    box-sizing: border-box;
}

.roi-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 46, 47, 0.55);
    cursor: pointer;
}

.roi-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    max-height: min(92vh, 1000px);
    overflow-y: auto;
    margin: 0;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
    -webkit-overflow-scrolling: touch;
}

.roi-modal-dialog .roi-calculator-panel.section {
    margin: 0;
    max-width: none;
    padding: 48px clamp(20px, 4vw, 40px) 40px;
    border-radius: 16px;
}

.roi-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 10px;
    background: rgba(28, 75, 76, 0.1);
    color: var(--teal-dark);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.roi-modal-close:hover {
    background: rgba(28, 75, 76, 0.2);
}

.roi-modal-close:focus-visible {
    outline: 2px solid var(--turquoise);
    outline-offset: 2px;
}

body.roi-modal-open {
    overflow: hidden;
}

.section-roi {
    color: #1a2e2f;
}

.section-roi .section-title,
.section-roi .section-subtitle {
    color: var(--teal-dark);
}

.section-roi .section-subtitle {
    opacity: 1;
}

.roi-week-hint {
    text-align: center;
    font-size: 0.9rem;
    color: #5a6c6d;
    margin: -32px auto 28px;
    max-width: 520px;
}

.roi-form {
    max-width: 900px;
    margin: 0 auto;
}

.roi-grid {
    display: grid;
    /* minmax(0,1fr) + min-width:0 op children voorkomt dat fieldsets elkaar overlappen in de modal */
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 20px;
    align-items: start;
}

@media (max-width: 700px) {
    .roi-grid {
        grid-template-columns: 1fr;
    }
}

.roi-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px 22px;
    box-shadow: 0 4px 24px rgba(28, 75, 76, 0.08);
    margin-bottom: 20px;
}

.roi-label {
    display: block;
    font-weight: 600;
    color: var(--teal-dark);
    margin-bottom: 12px;
    font-size: 1rem;
}

.roi-radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.roi-radio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    color: #3d5152;
}

.roi-radio input {
    accent-color: var(--teal-dark);
    width: 18px;
    height: 18px;
}

.roi-fieldset {
    border: 1px solid rgba(28, 75, 76, 0.15);
    border-radius: 12px;
    padding: 18px 20px 20px;
    margin: 0;
    min-width: 0;
    background: var(--white);
    box-shadow: 0 8px 28px rgba(28, 75, 76, 0.06);
}

.roi-fieldset legend {
    font-weight: 700;
    color: var(--teal-dark);
    padding: 0 8px;
    font-size: 1.05rem;
}

.roi-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
}

@media (max-width: 520px) {
    .roi-fields {
        grid-template-columns: 1fr;
    }
}

.roi-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.roi-field span {
    font-size: 0.82rem;
    color: #5a6c6d;
    font-weight: 500;
}

.roi-field input {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(28, 75, 76, 0.2);
    font-family: inherit;
    font-size: 1rem;
    color: #1a2e2f;
}

.roi-field input:focus {
    outline: none;
    border-color: var(--turquoise);
    box-shadow: 0 0 0 3px rgba(47, 222, 211, 0.25);
}

.roi-days {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed rgba(28, 75, 76, 0.12);
}

.roi-days-label {
    width: 100%;
    font-size: 0.82rem;
    color: #5a6c6d;
    font-weight: 500;
}

.roi-day {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: #3d5152;
    cursor: pointer;
    user-select: none;
}

.roi-day input {
    accent-color: var(--teal-dark);
}

.roi-google-wrap {
    margin-bottom: 8px;
}

.roi-google {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.roi-google span {
    flex: 1 1 240px;
}

.roi-google input {
    max-width: 120px;
}

.roi-actions {
    text-align: center;
    margin: 28px 0 8px;
}

.roi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(180deg, var(--turquoise) 0%, #2bc4bc 100%);
    color: var(--teal-dark);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 6px 20px rgba(47, 222, 211, 0.35);
    transition: transform 0.15s, box-shadow 0.15s;
}

.roi-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(47, 222, 211, 0.45);
}

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

.roi-results {
    max-width: 720px;
    margin: 40px auto 0;
    padding: 28px 24px;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid rgba(28, 75, 76, 0.12);
    box-shadow: 0 12px 40px rgba(28, 75, 76, 0.1);
}

.roi-results-title {
    font-size: 1.15rem;
    color: var(--teal-dark);
    margin-bottom: 18px;
    text-align: center;
}

.roi-result-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.roi-result-card {
    padding: 18px 16px;
    border-radius: 10px;
    background: var(--off-white);
    border: 1px solid rgba(28, 75, 76, 0.1);
}

.roi-result-highlight {
    background: rgba(47, 222, 211, 0.2);
    border-color: rgba(47, 222, 211, 0.45);
}

.roi-result-label {
    display: block;
    font-size: 0.82rem;
    color: #5a6c6d;
    margin-bottom: 8px;
    line-height: 1.35;
}

.roi-result-value {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--teal-dark);
}

.roi-rating-tip {
    font-size: 0.9rem;
    color: #5a6c6d;
    margin: 12px 0 0;
    padding: 12px 14px;
    background: rgba(255, 193, 7, 0.12);
    border-radius: 8px;
    border-left: 3px solid #c9a227;
}

.roi-disclaimer {
    font-size: 0.78rem;
    color: #7a8a8b;
    line-height: 1.5;
    margin-top: 16px;
    margin-bottom: 0;
}