/* ============================================================
   AI1OP1 — main stylesheet
   Donker, oranje accent, geinspireerd op Xpovio.
   ============================================================ */

/* ---------- Tokens (Frame.io-inspired: paars-cyan op deep dark) ---------- */
:root {
    --bg: #07061a;             /* zeer donker, met paarse hint */
    --bg-2: #0e0c2a;           /* lichter paars-blauw voor cards */
    --bg-glow: #1b1648;        /* gradient-tussenkleur */
    --fg: #ffffff;
    --fg-dim: #a3a0c2;         /* zachter grijs-paars voor body */
    --fg-grid: rgba(255, 255, 255, 0.04);
    --accent: #7B7FF9;         /* violet — primaire actie */
    --accent-2: #9b9eff;       /* lichter violet — hover */
    --accent-cyan: #00D9C0;    /* cyaan — glows en highlights */
    --accent-cyan-soft: rgba(0, 217, 192, 0.4);
    --accent-purple-soft: rgba(123, 127, 249, 0.35);
    --red: #ef4444;            /* AI-meerwaardetest blok */
    --red-2: #b91c1c;
    --border: rgba(255, 255, 255, 0.07);
    --radius: 999px;
    --radius-card: 24px;
    --maxw: 1280px;
    --pad-x: clamp(20px, 4vw, 64px);
    --section-y: clamp(80px, 10vw, 160px);
    --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--fg);
    background: var(--bg);
    background-image:
        radial-gradient(ellipse at 20% 10%, rgba(123, 127, 249, 0.14), transparent 55%),
        radial-gradient(ellipse at 80% 60%, rgba(0, 217, 192, 0.10), transparent 55%),
        radial-gradient(ellipse at 50% 110%, rgba(123, 127, 249, 0.18), transparent 60%);
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.05; font-weight: 700; letter-spacing: -0.02em; font-family: var(--font-display); }

/* ---------- Background grid (uitgeschakeld in Frame.io-redesign — gradients doen het werk) ---------- */
.grid-bg { display: none; }

/* ---------- Custom cursor (desktop only) ---------- */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.18s var(--ease), opacity 0.2s, background 0.2s;
    z-index: 9999;
    mix-blend-mode: difference;
}
.custom-cursor.is-hover { transform: translate(-50%, -50%) scale(1.6); background: var(--accent); }
@media (hover: none), (pointer: coarse) { .custom-cursor { display: none; } }

/* ---------- Side info (left rail) ---------- */
.side-info {
    position: fixed;
    left: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    display: flex;
    gap: 32px;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--fg-dim);
    z-index: 5;
    white-space: nowrap;
}
.side-info__item:hover { color: var(--accent); }
@media (max-width: 900px) { .side-info { display: none; } }

/* ---------- Site header ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px var(--pad-x);
    z-index: 50;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent);
    backdrop-filter: blur(6px);
}
.site-header__logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--fg);
    color: var(--bg);
    font-weight: 800;
    font-size: 18px;
    text-transform: lowercase;
}
.logo-text { font-weight: 800; letter-spacing: 0.04em; }

.site-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    transition: background .25s var(--ease), color .25s;
}
.site-header__cta:hover { background: var(--accent); color: var(--bg); }
@media (max-width: 600px) { .site-header__cta { display: none; } }

/* ---------- Sections ---------- */
.section {
    position: relative;
    padding: var(--section-y) var(--pad-x);
    max-width: var(--maxw);
    margin: 0 auto;
    z-index: 1;
}
.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-head h2 {
    font-size: clamp(36px, 5.5vw, 72px);
    text-transform: uppercase;
    margin-top: 12px;
}
.section-lead { color: var(--fg-dim); margin-top: 16px; font-size: 18px; }

.eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--radius);
    color: var(--accent-2);
    background: rgba(123, 127, 249, 0.10);
    border: 1px solid rgba(123, 127, 249, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    font-weight: 600;
}
.eyebrow--white { border-color: rgba(255,255,255,0.6); color: #fff; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
    border: 1px solid transparent;
    cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
    background: #fff;
    color: var(--bg);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 10px 30px rgba(123,127,249,0.25);
}
.btn--primary:hover {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 0 1px var(--accent-2), 0 14px 40px rgba(123,127,249,0.5);
}
.btn--ghost { border-color: rgba(255,255,255,0.2); color: var(--fg); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-2); background: rgba(123,127,249,0.06); }
.btn--white { background: #fff; color: var(--red); }
.btn--white:hover { background: rgba(255,255,255,0.9); }
.btn .arrow { font-size: 18px; }

/* ============================================================
   HERO — Frame.io-style: groot statement + glow-cirkels
   ============================================================ */
.section-hero {
    padding-top: clamp(120px, 14vw, 180px);
    padding-bottom: clamp(60px, 8vw, 100px);
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}
.hero-title {
    font-size: clamp(36px, 5vw, 76px);
    line-height: 1.0;
    letter-spacing: -0.03em;
    text-transform: none;
    margin: 20px 0 24px;
    text-wrap: balance;
    font-weight: 600;
    max-width: 14ch;
}
.hero-title .accent { color: var(--accent-cyan); }
.title-anim .char.accent.is-revealed { color: var(--accent-cyan); }
.hero-sub { color: var(--fg-dim); font-size: 19px; max-width: 520px; line-height: 1.55; }
.hero-bullets { margin: 28px 0; display: grid; gap: 12px; max-width: 480px; }
.hero-bullets li { padding-left: 28px; position: relative; color: var(--fg-dim); }
.hero-bullets li::before {
    content: ''; position: absolute; left: 0; top: 8px;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 14px var(--accent-cyan-soft);
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 36px 0 20px; }
.hero-proof { color: var(--fg-dim); font-size: 13px; opacity: 0.7; }

/* ---------- Glow-cirkels rechts ---------- */
.hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 620px;
    margin-left: auto;
}
.hero-glow {
    width: 100%;
    height: 100%;
    overflow: visible;
    filter: drop-shadow(0 0 60px rgba(0, 217, 192, 0.25)) drop-shadow(0 0 120px rgba(123, 127, 249, 0.2));
}
.hero-glow__core {
    transform-origin: 300px 300px;
    animation: breathe 8s ease-in-out infinite;
}
.hero-glow__ring {
    transform-origin: 300px 300px;
    animation: orbit 18s linear infinite;
}
.hero-glow__ring--2 { animation-duration: 22s; animation-direction: reverse; }
.hero-glow__ring--3 { animation-duration: 14s; }
.hero-glow__ring--4 { animation-duration: 26s; animation-direction: reverse; }

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.08); opacity: 0.85; }
}
@keyframes orbit {
    to { transform: rotate(360deg); }
}

/* ---------- Stats — Frame.io clean stripe ---------- */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    border-top: 1px solid var(--border);
    margin-top: clamp(64px, 8vw, 100px);
    padding-top: 40px;
}
.hero-stats div { display: flex; flex-direction: column; gap: 6px; }
.hero-stats strong {
    color: var(--fg);
    font-size: clamp(32px, 4.2vw, 56px);
    font-weight: 600;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    line-height: 1;
}
.hero-stats div:nth-child(2) strong { color: var(--accent-cyan); }
.hero-stats span { color: var(--fg-dim); font-size: 14px; letter-spacing: 0.02em; }

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 56px; }
    .hero-visual { max-width: 420px; margin: 0 auto; }
    .hero-stats { grid-template-columns: 1fr; gap: 24px; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-glow__core, .hero-glow__ring { animation: none; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
    margin: 40px 0;
}
.marquee__track {
    display: flex;
    align-items: center;
    gap: 48px;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
    width: max-content;
}
.marquee__item {
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--fg);
}
.marquee__item.is-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--fg);
}
.marquee__arrow {
    color: var(--accent);
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
}
.marquee__arrow svg { width: clamp(40px, 6vw, 72px); height: clamp(40px, 6vw, 72px); }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   HOE HET WERKT
   ============================================================ */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.step {
    padding: 36px 32px 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
    backdrop-filter: blur(10px);
    position: relative;
    transition: border-color .3s, transform .3s var(--ease);
}
.step:hover {
    border-color: rgba(123, 127, 249, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(123, 127, 249, 0.15);
}
.step__num {
    display: inline-block;
    color: var(--accent-cyan);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.18em;
    padding: 4px 10px;
    border: 1px solid rgba(0, 217, 192, 0.3);
    border-radius: var(--radius);
    background: rgba(0, 217, 192, 0.08);
}
.step h3 { font-size: 22px; margin: 18px 0 12px; }
.step p { color: var(--fg-dim); line-height: 1.6; }
.howto-note { text-align: center; color: var(--fg-dim); margin-top: 40px; font-size: 14px; opacity: 0.7; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* Section-head links uitlijnen ipv center */
.section-head--start { text-align: left; max-width: 760px; margin-left: 0; margin-right: auto; }
.section-head--start h2 { margin-top: 16px; }

/* "Dim" deel van een titel — Frame.io effect */
.title-anim .dim, .hero-title .dim { color: var(--fg-dim); }

/* ============================================================
   RESULTATEN — 4-koloms feature grid (Frame.io)
   ============================================================ */
.section-results .section-head--start h2 {
    font-size: clamp(32px, 4vw, 56px);
    max-width: 22ch;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 40px;
    margin-top: 48px;
}
.feature {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.feature__icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    border-radius: 8px;
}
.feature__icon svg { width: 24px; height: 24px; }
.feature__title {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.45;
    color: var(--fg);
    font-family: var(--font);
    letter-spacing: -0.01em;
}
@media (max-width: 1000px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .features-grid { grid-template-columns: 1fr; } }

/* ============================================================
   STAT GLOW SECTIE (Frame.io "delivers 2.9x faster" stijl)
   ============================================================ */
.section-stat-glow {
    overflow: hidden;
    position: relative;
}
.stat-glow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    min-height: 420px;
}
.stat-glow-text h2 {
    font-size: clamp(36px, 5vw, 72px);
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    max-width: 14ch;
}
.stat-glow-text h2 .accent {
    color: var(--accent-cyan);
}
.stat-glow-text p {
    color: var(--fg-dim);
    font-size: 18px;
    max-width: 480px;
    margin-bottom: 28px;
}
.stat-glow-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 540px;
    margin-left: auto;
}
.stat-glow-visual svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 80px rgba(0, 217, 192, 0.25));
    animation: breathe 10s ease-in-out infinite;
}
@media (max-width: 900px) {
    .stat-glow-grid { grid-template-columns: 1fr; gap: 40px; }
    .stat-glow-visual { max-width: 360px; margin: 0 auto; }
}

/* ============================================================
   CASES — grid met video/glow placeholders (Frame.io showcase stijl)
   ============================================================ */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
    margin-top: 48px;
}
.case {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: var(--radius-card);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.025), transparent);
    border: 1px solid var(--border);
    transition: border-color .3s, transform .3s var(--ease);
}
.case:hover {
    border-color: rgba(123, 127, 249, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(123, 127, 249, 0.15);
}
.case__media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, rgba(123,127,249,0.08), rgba(0,217,192,0.05));
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.case__media video,
.case__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.case__media-placeholder {
    width: 100%; height: 100%;
    display: grid;
    place-items: center;
    position: relative;
}
.case__media-placeholder svg {
    width: 70%;
    max-width: 220px;
    filter: drop-shadow(0 0 30px rgba(0, 217, 192, 0.3));
    animation: breathe 6s ease-in-out infinite;
}
.case__media-label {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--fg-dim);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: rgba(0,0,0,0.5);
    padding: 6px 12px;
    border-radius: var(--radius);
    backdrop-filter: blur(6px);
}
.case__body-wrap { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 10px; }
.case__role { color: var(--accent-cyan); text-transform: uppercase; font-size: 11px; letter-spacing: 0.18em; font-weight: 600; }
.case__title { font-size: 21px; font-weight: 600; letter-spacing: -0.01em; }
.case__body { color: var(--fg-dim); font-size: 15px; line-height: 1.55; }
.case__result {
    margin-top: 8px; padding-top: 14px; font-size: 13px;
    border-top: 1px solid var(--border); color: var(--fg);
}
.case__result-label {
    display: inline-block; color: var(--accent-cyan);
    text-transform: uppercase; letter-spacing: 0.15em; font-size: 10px; font-weight: 600;
    margin-right: 8px;
}
@media (max-width: 1000px) { .cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .cases-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TOEPASSINGEN — 60+ AI-use cases grid
   ============================================================ */
.section-toepassingen .section-head--start h2 .accent {
    color: var(--accent-cyan);
    font-family: var(--font-display);
}
.toepassingen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.toepassing {
    padding: 28px 24px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
    transition: border-color .3s, transform .3s var(--ease), background .3s;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.toepassing:hover {
    border-color: rgba(0, 217, 192, 0.4);
    transform: translateY(-4px);
    background: linear-gradient(180deg, rgba(0, 217, 192, 0.04), transparent);
}
.toepassing__icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(0, 217, 192, 0.08);
    border: 1px solid rgba(0, 217, 192, 0.2);
    color: var(--accent-cyan);
}
.toepassing__icon svg { width: 20px; height: 20px; }
.toepassing__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    font-family: var(--font);
    color: var(--fg);
}
.toepassing__desc {
    font-size: 14px;
    color: var(--fg-dim);
    line-height: 1.55;
    margin: 0;
}
.toepassingen-cta {
    text-align: center;
    margin-top: 56px;
    color: var(--fg-dim);
    font-size: 16px;
}
.toepassingen-cta a {
    color: var(--accent-cyan);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.toepassingen-cta a:hover { color: var(--accent-2); }
@media (max-width: 1100px) { .toepassingen-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .toepassingen-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .toepassingen-grid { grid-template-columns: 1fr; } }

/* ============================================================
   AI-MEERWAARDETEST — asymmetrisch rood blok (Frame.io showcase stijl)
   ============================================================ */
.section-ai-test { padding-left: 0; padding-right: 0; }
.ai-test-card {
    background: linear-gradient(135deg, var(--red) 0%, #d63333 100%);
    color: #fff;
    padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
    border-radius: 32px;
    max-width: 1280px;
    margin: 0 var(--pad-x);
    box-shadow: 0 40px 120px rgba(239, 68, 68, 0.25);
    position: relative;
    overflow: hidden;
}
.ai-test-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
    pointer-events: none;
}
.ai-test-card .eyebrow {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}
.ai-test-card h2 {
    font-size: clamp(32px, 4.5vw, 56px);
    text-transform: none;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 16px 0 20px;
    max-width: 16ch;
}
.ai-test-card > p {
    max-width: 560px;
    margin: 0 0 32px;
    opacity: 0.92;
    font-size: 17px;
}
.ai-test-form {
    display: grid;
    gap: 18px;
    max-width: 640px;
    margin: 32px 0 0;
    text-align: left;
    position: relative;
    z-index: 1;
}
.ai-test-form label { display: grid; gap: 6px; font-size: 14px; font-weight: 600; }
.ai-test-form input,
.ai-test-form textarea {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    transition: border-color .2s, background .2s;
}
.ai-test-form input:focus,
.ai-test-form textarea:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255,255,255,0.2);
}
.ai-test-form input::placeholder, .ai-test-form textarea::placeholder { color: rgba(255,255,255,0.6); }
.form-hint { font-size: 12px; opacity: 0.8; margin-top: 8px; }
.ai-test-result {
    margin-top: 40px;
    background: rgba(0,0,0,0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: left;
}
.ai-test-result h3 { font-size: 22px; margin-bottom: 16px; }
.ai-test-result__body { white-space: pre-wrap; line-height: 1.7; margin-bottom: 24px; }

/* ============================================================
   FAQ — minimal Frame.io stijl
   ============================================================ */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
    border-top: 1px solid var(--border);
    padding: 28px 0;
    transition: padding 0.3s var(--ease);
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-size: 19px;
    font-weight: 500;
    font-family: var(--font-display);
    letter-spacing: -0.01em;
    user-select: none;
    color: var(--fg);
    transition: color 0.2s;
}
.faq-item summary:hover { color: var(--accent-2); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    color: var(--accent-cyan);
    font-size: 24px;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 16px 0 0; color: var(--fg-dim); font-size: 16px; line-height: 1.7; max-width: 720px; }

/* ============================================================
   PRIJS — Frame.io clean kaartjes
   ============================================================ */
.pricing-card { text-align: center; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 48px auto;
    max-width: 920px;
    text-align: left;
}
.pricing-tier {
    border: 1px solid rgba(123, 127, 249, 0.4);
    border-radius: var(--radius-card);
    padding: 36px 32px;
    background: linear-gradient(180deg, rgba(123, 127, 249, 0.08), rgba(0, 217, 192, 0.03));
    position: relative;
    overflow: hidden;
}
.pricing-tier::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(0, 217, 192, 0.12), transparent 60%);
    pointer-events: none;
}
.pricing-tier--alt {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.025);
}
.pricing-tier--alt::before { display: none; }
.pricing-tier__label {
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 11px;
    font-weight: 600;
    position: relative; z-index: 1;
}
.pricing-tier--alt .pricing-tier__label { color: var(--fg-dim); }
.pricing-tier__price {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 600;
    letter-spacing: -0.03em;
    margin: 16px 0 28px;
    position: relative; z-index: 1;
}
.pricing-tier__price em { font-size: 15px; font-style: normal; color: var(--fg-dim); font-weight: 400; margin-left: 8px; }
.pricing-tier ul { display: grid; gap: 12px; color: var(--fg-dim); position: relative; z-index: 1; }
.pricing-tier li { padding-left: 26px; position: relative; }
.pricing-tier li::before {
    content: ''; position: absolute; left: 0; top: 9px;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan-soft);
}
.pricing-meta { color: var(--fg-dim); font-size: 14px; opacity: 0.7; }
@media (max-width: 800px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BOEK NU (formulier)
   ============================================================ */
.book-form {
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}
.book-form .btn {
    justify-self: start;
}
.book-form .btn--primary {
    padding: 14px 32px;
    font-size: 14px;
}
.book-form label { display: grid; gap: 6px; font-size: 14px; font-weight: 500; color: var(--fg-dim); }
.book-form input, .book-form textarea {
    background: var(--bg-2);
    border: 1px solid var(--border);
    color: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    transition: border-color .2s;
}
.book-form input:focus, .book-form textarea:focus { outline: none; border-color: var(--accent); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .grid-2 { grid-template-columns: 1fr; } }
.radio-group { border: none; padding: 0; display: flex; gap: 24px; flex-wrap: wrap; }
.radio-group legend { color: var(--fg-dim); font-size: 14px; margin-bottom: 8px; }
.radio { display: inline-flex; align-items: center; gap: 8px; color: var(--fg); }
.radio input { accent-color: var(--accent); }
.checkbox { display: flex; gap: 12px; align-items: flex-start; color: var(--fg-dim); }
.checkbox input { accent-color: var(--accent); margin-top: 4px; }
.form-success, .form-error {
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 500;
}
.form-success { background: rgba(0, 200, 100, 0.1); color: #44dd77; border: 1px solid rgba(68, 221, 119, 0.3); }
.form-error { background: rgba(225, 8, 8, 0.1); color: #ff7777; border: 1px solid rgba(225, 8, 8, 0.3); }

/* ============================================================
   FOOTER — 5-kolom Frame.io stijl
   ============================================================ */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 80px var(--pad-x) 32px;
    background: linear-gradient(to bottom, transparent, rgba(123, 127, 249, 0.04));
    position: relative;
    z-index: 1;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    max-width: var(--maxw);
    margin: 0 auto 64px;
}
.footer-col--brand .logo-text { font-size: 16px; }
.footer-tagline {
    color: var(--fg-dim);
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.55;
    max-width: 280px;
}
.footer-col h4 {
    color: var(--fg);
    margin-bottom: 16px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    font-family: var(--font);
}
.footer-col ul { display: grid; gap: 10px; color: var(--fg-dim); font-size: 14px; }
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-2); }
.btn--small { padding: 10px 18px; font-size: 13px; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    color: var(--fg-dim);
    font-size: 12px;
    max-width: var(--maxw);
    margin: 0 auto;
    flex-wrap: wrap;
}
.footer-legal { font-size: 12px; opacity: 0.75; }
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } .footer-col--brand { grid-column: 1 / -1; } }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   PAGE / SINGLE — Blog posts en losse pagina's
   ============================================================ */
.page-subpage { padding-top: clamp(120px, 14vw, 180px); }
.section-page { max-width: 820px; }
.page-head { text-align: left; margin-bottom: 48px; }
.page-back {
    color: var(--fg-dim);
    font-size: 14px;
    display: inline-block;
    margin-bottom: 24px;
    transition: color .2s;
}
.page-back:hover { color: var(--accent); }
.page-title {
    font-size: clamp(36px, 5vw, 64px);
    text-transform: none;
    margin-top: 12px;
}
.page-hero-img { margin: 32px 0; border-radius: var(--radius-card); overflow: hidden; }
.page-content {
    color: var(--fg-dim);
    font-size: 17px;
    line-height: 1.75;
}
.page-content h2, .page-content h3, .page-content h4 {
    color: var(--fg);
    margin: 48px 0 16px;
}
.page-content h2 { font-size: 32px; }
.page-content h3 { font-size: 24px; }
.page-content p { margin: 0 0 20px; }
.page-content a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.page-content a:hover { color: var(--accent-2); }
.page-content ul, .page-content ol { padding-left: 24px; margin: 0 0 20px; list-style: revert; }
.page-content li { margin-bottom: 8px; }
.page-content blockquote {
    border-left: 3px solid var(--accent);
    padding: 8px 0 8px 24px;
    margin: 32px 0;
    color: var(--fg);
    font-style: italic;
}
.page-content code {
    background: var(--bg-2);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--accent);
}
.page-content img { border-radius: 12px; margin: 24px 0; }

/* ---------- Scroll-to-top ---------- */
.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    display: grid;
    place-items: center;
    color: var(--accent);
    font-size: 18px;
    z-index: 40;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .3s, transform .3s;
}
.scroll-top.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Placeholders (clearly visible) ---------- */
.placeholder {
    width: 100%;
    height: 100%;
    border: 2px dashed var(--accent);
    color: var(--accent);
    background: repeating-linear-gradient(45deg, rgba(255,106,0,0.05) 0 12px, transparent 12px 24px);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.placeholder--circle { border-radius: 32px; aspect-ratio: 1/1; }
.placeholder-inline {
    color: var(--accent);
    background: rgba(255,106,0,0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9em;
}

/* ---------- Title-anim (default state — JS reveals) ---------- */
.title-anim .word {
    display: inline-block;
    white-space: nowrap;
}
.title-anim .char {
    display: inline-block;
    color: rgba(255, 255, 255, 0.18);
    transition: color 0.5s var(--ease);
}
.title-anim .char.is-revealed { color: var(--fg); }
.title-anim .char.accent.is-revealed { color: var(--accent); }

/* WordPress admin-bar fix: shift fixed header below 32px admin bar when logged-in */
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
    body.admin-bar .site-header { top: 46px; }
}

/* Reveal helper — content blijft altijd leesbaar, alleen lichte fade-up via JS */
.reveal { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .marquee__track { animation: none; }
    .hero-badge__ring { animation: none; }
}
