/* ==========================================================================
   Main Stylesheet — Jantine van den Bosch
   Mobile-first responsive design
   ========================================================================== */

/* ---------- Font Faces ---------- */
@font-face {
    font-family: 'DM Serif Display';
    src: url('../fonts/DMSerifDisplay-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ---------- Utility ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

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

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

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

.section-dark {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header--light {
    color: var(--color-white);
}

.section-header__title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: inherit;
}

.section-header__subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header--light .section-header__subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--text-sm);
    letter-spacing: 0.01em;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

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

.btn--primary:hover {
    background-color: var(--color-accent-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn--small {
    padding: 0.625rem 1.25rem;
    font-size: var(--text-xs);
}

.btn--full {
    width: 100%;
}

/* ---------- Scroll Progress ---------- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--progress-height);
    z-index: var(--z-toast);
    background: transparent;
    pointer-events: none;
}

.scroll-progress__bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-amber));
    transition: width 50ms linear;
}

/* ---------- Navigation ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-sticky);
    transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
    background-color: rgba(253, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

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

.nav__logo {
    text-decoration: none;
    color: var(--color-text);
    z-index: var(--z-sticky);
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: var(--text-xl);
}

.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: var(--z-sticky);
}

.nav__toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav__menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background-color: var(--color-bg);
    padding: 100px var(--container-padding) var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-slow);
}

.nav__menu.open {
    opacity: 1;
    pointer-events: auto;
}

.nav__link {
    display: block;
    padding: 0.75rem 0;
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.nav__link:hover,
.nav__link.active {
    color: var(--color-accent);
}

.nav__link--cta {
    display: inline-block;
    margin-top: var(--space-sm);
    padding: 0.75rem 1.5rem;
    background-color: var(--color-accent);
    color: var(--color-white) !important;
    border-radius: var(--radius-full);
    text-align: center;
    font-size: var(--text-base);
}

.nav__link--cta:hover {
    background-color: var(--color-accent-hover);
    color: var(--color-white);
}

/* Nav overlay (hidden — fullscreen menu replaces it) */
.nav-overlay {
    display: none;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.hero__blob--1 {
    width: 500px;
    height: 500px;
    background: var(--color-accent);
    top: -10%;
    right: -10%;
}

.hero__blob--2 {
    width: 400px;
    height: 400px;
    background: var(--color-sage);
    bottom: -5%;
    left: -5%;
}

.hero__blob--3 {
    width: 300px;
    height: 300px;
    background: var(--color-amber);
    top: 40%;
    left: 30%;
}

.hero__container {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.hero__content {
    text-align: center;
}

.hero__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.hero__subtitle {
    font-size: var(--text-base);
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

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

.hero__image {
    display: flex;
    justify-content: center;
}

.hero__image-frame {
    position: relative;
    width: min(380px, 75vw);
    border-radius: 40% 60% 55% 45% / 55% 45% 60% 40%;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

/* ---------- Demo Tabs ---------- */
.demo-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.demo-tab {
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
    cursor: pointer;
}

.demo-tab:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.12);
}

.demo-tab.active {
    color: var(--color-white);
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.demo-tab.active[data-color="amber"] {
    background: var(--color-amber);
    border-color: var(--color-amber);
}

.demo-tab.active[data-color="sage"] {
    background: var(--color-sage);
    border-color: var(--color-sage);
}

.demo-tab.active[data-color="purple"] {
    background: var(--color-purple);
    border-color: var(--color-purple);
}

.demo-panel {
    display: none;
}

.demo-panel.active {
    display: block;
}

.audio-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ---------- Video Grid ---------- */
.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.video-embed__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.video-embed__play img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-embed__btn {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-fast), background var(--transition-fast);
}

.video-embed__btn svg {
    margin-left: 3px;
}

.video-embed:hover .video-embed__btn {
    transform: scale(1.1);
    background: var(--color-accent-dark, #a84530);
}

.video-embed__thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-embed--local {
    padding-bottom: 56.25%;
}

.video-embed--local video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-item__title {
    text-align: center;
    margin-top: var(--space-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.showreel-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.video-embed--large {
    border-radius: var(--radius-xl);
}

/* ---------- Over Jantine ---------- */
.over__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: start;
    margin-bottom: var(--space-xl);
}

.over__image-frame {
    border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 450px;
    margin: 0 auto;
}

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

.over__lead {
    font-size: var(--text-lg);
    color: var(--color-text) !important;
    font-weight: 500;
    line-height: 1.6;
}

.over__quote {
    border-left: 3px solid var(--color-accent);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    background: var(--color-accent-10);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.over__quote p {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-text) !important;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    text-align: center;
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--color-border);
}

.stat__number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    color: var(--color-accent);
    line-height: 1;
}

.stat__plus {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--color-accent);
}

.stat__label {
    display: block;
    margin-top: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--color-text-light);
    font-weight: 500;
}

/* ---------- Bekend Van / Marquee ---------- */
.marquee {
    overflow: hidden;
    padding: var(--space-lg) 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

.marquee__content {
    display: flex;
    gap: var(--space-lg);
    padding-right: var(--space-lg);
}

.marquee__item {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-text-muted);
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.marquee__item:hover {
    color: var(--color-accent);
}

@keyframes marquee-scroll {
    to {
        transform: translateX(-50%);
    }
}

/* ---------- Diensten ---------- */
.diensten__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.dienst-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--card-color, var(--color-accent));
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.dienst-card__icon {
    width: 48px;
    height: 48px;
    color: var(--card-color, var(--color-accent));
    margin-bottom: var(--space-md);
}

.dienst-card__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 400;
    margin-bottom: var(--space-sm);
}

.dienst-card__desc {
    color: var(--color-text-light);
    font-size: var(--text-sm);
    margin-bottom: var(--space-md);
}

.dienst-card__link {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--card-color, var(--color-accent));
}

/* ---------- Tarieven ---------- */
.tarieven__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.tarief-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.tarief-card__header {
    background: var(--card-accent, var(--color-accent));
    color: var(--color-white);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-sm);
}

.tarief-card__header h3 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 400;
}

.tarief-card__badge {
    font-size: var(--text-xs);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.tarief-card__body {
    padding: var(--space-md) var(--space-lg);
}

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

.tarief-table {
    width: 100%;
    border-collapse: collapse;
}

.tarief-table th {
    text-align: left;
    font-weight: 600;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.tarief-table td {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border-light);
    font-size: var(--text-sm);
}

.tarief-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--color-text);
}

.tarief-table tr:last-child td {
    border-bottom: none;
}

.tarieven__cta {
    text-align: center;
    margin-top: var(--space-xl);
}

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

/* ---------- Werkwijze ---------- */
.werkwijze__steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto;
}

.werkwijze__step {
    text-align: center;
    padding: var(--space-lg);
}

.werkwijze__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
}

.werkwijze__step-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 400;
    margin-bottom: var(--space-sm);
}

.werkwijze__step-desc {
    color: var(--color-text-light);
    font-size: var(--text-sm);
    max-width: 300px;
    margin: 0 auto;
}

.werkwijze__connector {
    display: none;
}

/* ---------- Contact ---------- */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

/* Form fields */
.form-field {
    margin-bottom: var(--space-md);
}

.form-field--hp {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: var(--text-sm);
    margin-bottom: 0.375rem;
    color: var(--color-text);
}

.form-label span {
    color: var(--color-accent);
}

.form-input,
.form-select,
.form-textarea {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-white);
    color: var(--color-text);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-10);
}

.form-input.error,
.form-textarea.error {
    border-color: #e53e3e;
}

.form-error {
    display: block;
    font-size: var(--text-xs);
    color: #e53e3e;
    margin-top: 0.25rem;
    min-height: 1.2em;
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%235A5662' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='2,4 6,8 10,4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Success state */
.contact-form__success {
    text-align: center;
    padding: var(--space-xl);
}

.contact-form__success h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    margin: var(--space-md) 0 var(--space-sm);
}

.contact-form__success p {
    color: var(--color-text-light);
}

/* Contact info */
.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact__info-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact__info-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 400;
    margin-bottom: var(--space-md);
}

.contact__email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    word-break: break-all;
}

.contact__response-time {
    margin-top: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

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

.contact__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-border-light);
    color: var(--color-text-light);
    transition: all var(--transition-base);
}

.contact__social:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.contact__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ---------- Footer ---------- */
.footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer__grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-white);
}

.footer__tagline {
    margin-top: 0.25rem;
    font-size: var(--text-sm);
}

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

.footer__nav a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.footer__nav a:hover {
    color: var(--color-white);
}

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

.footer__socials a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

.footer__socials a:hover {
    color: var(--color-white);
}

.footer__bottom {
    padding-top: var(--space-lg);
    font-size: var(--text-xs);
    text-align: center;
}

/* ---------- Floating CTA ---------- */
.floating-cta {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    padding: 0.875rem 1.75rem;
    background: var(--color-accent);
    color: var(--color-white);
    font-weight: 700;
    font-size: var(--text-sm);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    z-index: var(--z-overlay);
    transition: all var(--transition-base);
    text-decoration: none;
}

.floating-cta:hover {
    background: var(--color-accent-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.floating-cta[hidden] {
    display: none;
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: var(--space-lg);
    left: var(--space-lg);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-text);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-overlay);
    transition: all var(--transition-base);
    opacity: 0;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top[hidden] {
    display: none;
}

.back-to-top:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ==========================================================================
   Responsive — Tablet (640px+)
   ========================================================================== */
@media (min-width: 640px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .werkwijze__steps {
        flex-direction: row;
        align-items: flex-start;
    }

    .werkwijze__connector {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        width: 60px;
        color: var(--color-border);
        padding-top: 28px;
    }

    .werkwijze__connector svg {
        width: 100%;
        height: 4px;
    }

    .werkwijze__step {
        flex: 1;
        padding: var(--space-md);
    }
}

/* ==========================================================================
   Responsive — Desktop (960px+)
   ========================================================================== */
@media (min-width: 960px) {
    .nav__toggle {
        display: none;
    }

    .nav__menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        padding: 0;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
    }

    .nav__link {
        padding: 0.5rem 1rem;
        font-size: var(--text-sm);
    }

    .nav__link--cta {
        margin-top: 0;
        padding: 0.5rem 1.25rem;
        font-size: var(--text-sm);
    }

    .hero__container {
        flex-direction: row;
        align-items: center;
        gap: var(--space-2xl);
        min-height: calc(100dvh - 72px);
    }

    .hero__content {
        text-align: left;
        flex: 1;
    }

    .hero__title {
        font-size: var(--text-5xl);
    }

    .hero__ctas {
        justify-content: flex-start;
    }

    .hero__image {
        flex: 0 0 auto;
    }

    .hero__image-frame {
        width: 420px;
    }

    .over__grid {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-2xl);
    }

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

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

    .contact__grid {
        grid-template-columns: 1.2fr 1fr;
    }

    .footer__grid {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .marquee__track {
        animation: none;
    }
}
