/* ==========================================
   CSS Variables
   ========================================== */
:root {
    --color-primary: #1e2332;
    --color-secondary: #FFDC00;
    --color-secondary-hover: #e6c600;
    --color-dark: #000000;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg-light: #f5f5f5;
    --color-white: #ffffff;
    --color-border: #E5E7EB;
    --color-input-border: #D1D5DB;
    --color-success: #10B981;
    --color-error: #EF4444;

    --font-heading: 'Poppins', 'Inter', sans-serif;
    --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --container-max: 1280px;
    --header-height: 80px;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

ul, ol {
    list-style: none;
}

/* ==========================================
   Typography
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}

h1 { font-size: 2.25rem; margin-bottom: var(--space-lg); }
h2 { font-size: 1.875rem; margin-bottom: var(--space-lg); }
h3 { font-size: 1.5rem; margin-bottom: var(--space-md); }
h4 { font-size: 1.25rem; margin-bottom: var(--space-sm); }

p { margin-bottom: var(--space-md); }

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 640px;
    margin: 0 auto var(--space-2xl);
}

/* ==========================================
   Layout
   ========================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-3xl) 0;
}

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

.section--dark {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--color-white);
}

.grid {
    display: grid;
    gap: var(--space-lg);
}

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

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

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1.4;
}

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

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

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

.btn--outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

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

.btn--white:hover {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn--footer {
    background-color: var(--color-primary);
    color: var(--color-white);
}

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

.btn--sm { padding: 8px 20px; font-size: 0.875rem; }
.btn--lg { padding: 16px 48px; font-size: 1.125rem; }

/* ==========================================
   Cards
   ========================================== */
.card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: var(--shadow-sm);
}

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

.card__image-wrapper {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.card:hover .card__image {
    transform: scale(1.05);
}

.card__content {
    padding: var(--space-lg);
}

.card__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.card__text {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

/* Card icon variant */
.card--icon {
    text-align: center;
    border: none;
    background: #FFFDF0;
    box-shadow: none;
    padding: var(--space-xl) var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card--icon:hover {
    background: #FFFDF0;
    box-shadow: var(--shadow-lg);
}

.card--icon:hover .card__icon {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    transform: scale(1.1);
}

.card--icon .card__content {
    padding: var(--space-md) 0 0;
}

.card--icon .card__text {
    margin-bottom: 0;
}

.card__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 6px;
    font-size: 1.75rem;
    color: var(--color-primary);
    background-color: var(--color-secondary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Feature card variant */
.feature-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

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

.feature-card i {
    display: block;
    margin-bottom: var(--space-md);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--color-dark);
}

.feature-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   Forms & Alerts
   ========================================== */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--color-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    border: 1px solid var(--color-input-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background-color: var(--color-white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 1px var(--color-secondary);
}

.form-row {
    display: grid;
    gap: var(--space-lg);
}

.alert {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    font-weight: 500;
}

.alert--error {
    background-color: #FEF2F2;
    color: var(--color-error);
    border: 1px solid #FECACA;
}

.alert--success {
    background-color: #F0FDF4;
    color: var(--color-success);
    border: 1px solid #BBF7D0;
}

.alert ul {
    list-style: disc;
    padding-left: var(--space-lg);
}

/* ==========================================
   Header & Navigation
   ========================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    height: var(--header-height);
    transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-md);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo img {
    height: 48px;
    width: auto;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    transition: transform 0.3s ease;
}

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

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

.main-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--color-white);
    z-index: 999;
    transition: right 0.3s ease;
    padding: var(--space-4xl) var(--space-lg) var(--space-lg);
    overflow-y: auto;
}

.main-nav.is-open {
    right: 0;
}

.nav-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-primary);
    padding: var(--space-sm);
    line-height: 1;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.nav-link {
    display: block;
    padding: var(--space-md);
    font-weight: 500;
    color: var(--color-primary);
    border-radius: var(--radius-md);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--color-bg-light);
    color: var(--color-primary);
}

.nav-link.active {
    font-weight: 700;
    border-left: 3px solid var(--color-secondary);
}

.nav-cta {
    margin-top: var(--space-md);
}

.nav-cta .btn {
    width: 100%;
    text-align: center;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown__menu {
    display: none;
    padding-left: var(--space-lg);
}

.nav-dropdown__menu li a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
    color: var(--color-text-light);
    border-radius: var(--radius-sm);
    transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-dropdown__menu li a:hover {
    color: var(--color-primary);
    background-color: var(--color-bg-light);
}

/* Mobile: show submenu always under parent */
.nav-dropdown .nav-dropdown__menu {
    display: block;
}

/* ==========================================
   Hero
   ========================================== */
.hero {
    position: relative;
    height: 55vh;
    min-height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero__slide.active {
    opacity: 1;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 35, 50, 0.85) 0%, rgba(30, 35, 50, 0.6) 100%);
    z-index: 1;
}

.hero > .container {
    width: 100%;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: var(--color-white);
    text-align: left;
}

.hero__title {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero__subtitle {
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
}

.hero__buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Page hero (smaller, for inner pages) */
.page-hero {
    position: relative;
    padding: 80px 0 128px;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: left;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(30,35,50,0.85));
    z-index: 1;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.page-hero p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0;
}

/* ==========================================
   USP Grid
   ========================================== */
.usp {
    text-align: center;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: box-shadow 0.3s ease;
}

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

.usp__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4px;
    font-size: 1.5rem;
    color: var(--color-primary);
    background-color: var(--color-secondary);
    border-radius: 50%;
}

.usp__title {
    color: var(--color-primary);
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.usp__text {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ==========================================
   Timeline (Hoe Het Werkt)
   ========================================== */
.timeline {
    counter-reset: timeline-step;
    position: relative;
}

.timeline__item {
    text-align: center;
    padding: var(--space-xl);
    position: relative;
}

.timeline__item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: calc(var(--space-xl) + 32px);
    left: calc(50% + 32px);
    width: calc(100% - 64px + var(--space-lg));
    height: 3px;
    background-color: var(--color-secondary);
    transform: translateY(-50%);
    display: none;
}

.timeline__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    background-color: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.timeline__badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: var(--space-md);
}

.timeline__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.timeline__text {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ==========================================
   Features / Icon Boxes
   ========================================== */
.feature {
    text-align: center;
    padding: var(--space-xl);
}

.feature__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature__title {
    margin-bottom: var(--space-sm);
}

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

/* ==========================================
   About / Split Section
   ========================================== */
.split {
    display: grid;
    gap: var(--space-2xl);
    align-items: center;
}

.split__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.split__content h2 {
    margin-bottom: var(--space-md);
}

.split__content p:last-of-type {
    margin-bottom: var(--space-lg);
}

/* ==========================================
   CTA Banner
   ========================================== */
.cta-banner {
    background-color: var(--color-secondary);
    padding: var(--space-3xl) 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.cta-banner p {
    color: var(--color-primary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

/* ==========================================
   Contact Info
   ========================================== */
.contact-grid {
    display: grid;
    gap: var(--space-2xl);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
}

.contact-item__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-item__content h3 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.contact-item__content p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.contact-item__content a {
    color: var(--color-text-light);
}

.contact-item__content a:hover {
    color: var(--color-secondary);
}

/* Opening hours table */
.hours-table {
    width: 100%;
}

.hours-table tr {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
}

.hours-table td:last-child {
    font-weight: 600;
}

/* ==========================================
   Product / Service Info
   ========================================== */
.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.info-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

/* Video wrapper (responsive 16:9) */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Pricing cards */
.pricing-card {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.pricing-card:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.pricing-card__duration {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
}

.pricing-card__price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.pricing-card__bonus {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-secondary);
    background-color: rgba(255, 220, 0, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: var(--space-sm);
}

/* Info list on dark backgrounds */
.info-list--light li {
    color: rgba(255, 255, 255, 0.85);
}

.info-list--light li::before {
    color: var(--color-secondary);
}

/* Promo badge */
.promo-badge {
    display: inline-block;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: var(--space-md);
}

/* Steps */
.steps {
    counter-reset: step;
}

.step {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.step__number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step__content h3 {
    margin-bottom: var(--space-xs);
}

.step__content p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* ==========================================
   Footer
   ========================================== */
.site-footer {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-3xl) 0 0;
}

.footer__grid {
    display: grid;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
}

.footer__brand img {
    height: 48px;
    margin-bottom: var(--space-md);
}

.footer__brand p {
    color: rgba(255, 255, 255, 0.7);
}

.site-footer h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-xs) 0;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: var(--color-secondary);
}

.footer__contact p,
.footer__contact a {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-sm);
}

.footer__contact a:hover {
    color: var(--color-secondary);
}

.footer__social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    transition: background-color 0.3s ease;
}

.footer__social a:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

.footer__other {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-lg) 0;
    text-align: center;
}

.footer__other a {
    color: inherit;
    text-decoration: none;
}

.footer__other h4 {
    font-size: 0.75rem;
    margin-bottom: var(--space-sm);
}

.footer__other-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm) var(--space-lg);
}

.footer__other-list a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}

.footer__other-list a:hover {
    color: var(--color-secondary);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-lg) 0;
    text-align: center;
    font-size: 0.875rem;
}

.footer__legal {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-sm);
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.2s ease;
}

.footer__legal a:hover {
    color: var(--color-secondary);
}

/* ==========================================
   Skip to Content
   ========================================== */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: var(--space-md);
    color: var(--color-white);
}

/* ==========================================
   WhatsApp FAB
   ========================================== */
.whatsapp-fab {
    position: fixed;
    bottom: var(--space-md);
    right: var(--space-md);
    width: 48px;
    height: 48px;
    background-color: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 900;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-fab svg {
    width: 24px;
    height: 24px;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    color: var(--color-white);
}

/* ==========================================
   Cookie Banner
   ========================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: none;
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.9);
    padding: var(--space-lg) var(--space-md);
    border-radius: 0;
    z-index: 950;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.cookie-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner.is-hiding {
    opacity: 0;
    transform: translateY(100%);
}

.cookie-banner p {
    margin: 0 0 var(--space-md);
    font-size: 0.8125rem;
    line-height: 1.5;
}

.cookie-banner a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.cookie-banner a:hover {
    color: var(--color-secondary-hover);
}

.cookie-banner__buttons {
    display: flex;
    gap: var(--space-md);
}

.cookie-banner__buttons .btn {
    flex: 1;
}

.cookie-banner__decline {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner__decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

/* ==========================================
   Responsive - Tablet (640px+)
   ========================================== */
@media (min-width: 640px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.25rem; }

    .container { padding: 0 var(--space-lg); }

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

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

    .hero__title { font-size: 3rem; }

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

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

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

    .whatsapp-fab {
        bottom: var(--space-lg);
        right: var(--space-lg);
        width: 56px;
        height: 56px;
    }

    .whatsapp-fab svg {
        width: 28px;
        height: 28px;
    }

    .cookie-banner {
        bottom: calc(var(--space-lg) + 56px + var(--space-md));
        left: auto;
        right: var(--space-lg);
        max-width: 340px;
        padding: var(--space-xl);
        border-radius: var(--radius-lg);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        transform: translateY(20px) scale(0.95);
    }

    .cookie-banner.is-visible {
        transform: translateY(0) scale(1);
    }

    .cookie-banner.is-hiding {
        transform: translateY(10px) scale(0.95);
    }

    .cookie-banner p {
        margin: 0 0 var(--space-lg);
        font-size: 0.875rem;
        line-height: 1.6;
    }
}

/* ==========================================
   Responsive - Desktop (1024px+)
   ========================================== */
@media (min-width: 1024px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }

    .container { padding: 0 var(--space-xl); }

    .section { padding: var(--space-4xl) 0; }

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

    .timeline__item:not(:last-child)::after {
        display: block;
    }

    /* Desktop navigation */
    .nav-toggle,
    .nav-close,
    .nav-overlay { display: none !important; }

    .main-nav {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        overflow: visible;
    }

    .nav-list {
        flex-direction: row;
        align-items: center;
        gap: var(--space-xs);
    }

    .nav-link {
        padding: var(--space-sm) var(--space-md);
    }

    .nav-link.active {
        border-left: none;
        border-bottom: 3px solid var(--color-secondary);
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }

    .nav-cta {
        margin-top: 0;
        margin-left: var(--space-sm);
    }

    .nav-cta .btn {
        width: auto;
    }

    /* Desktop dropdown */
    .nav-dropdown .nav-dropdown__menu {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 200px;
        padding: var(--space-sm) 0;
        background-color: var(--color-white);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .nav-dropdown__menu li a {
        padding: var(--space-sm) var(--space-lg);
        white-space: nowrap;
    }

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

    .hero {
        height: 65vh;
        min-height: 400px;
    }

    .hero__title { font-size: 3.5rem; }

    .page-hero { padding: var(--space-4xl) 0; }

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

/* ==========================================
   Legal Content (Privacy / Cookie)
   ========================================== */
.legal-content h2 {
    font-size: 1.375rem;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.legal-content h3 {
    font-size: 1.125rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
    color: var(--color-text);
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.legal-content .info-list {
    margin-bottom: var(--space-md);
}

/* ==========================================
   Responsive - Wide (1280px+)
   ========================================== */
@media (min-width: 1280px) {
    .hero__title { font-size: 4rem; }
}

@media (max-width: 639px) {
    .hero__buttons {
        flex-wrap: nowrap;
    }

    .hero__buttons .btn,
    .cta-banner .btn,
    .split__content .btn {
        padding: 12px 20px;
        font-size: 0.875rem;
    }

    .split__content .btn + .btn {
        margin-left: var(--space-sm) !important;
    }

    .split__content {
        order: -1;
    }

    .split__image {
        max-width: 280px;
        margin: 0 auto;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .form-row {
        gap: 0px;
    }
}
