/*
Theme Name: GSmedia Webdesign
Theme URI: https://gsmedia.nl
Author: GSmedia
Author URI: https://gsmedia.nl
Description: Modern, clean, conversion-focused custom code site.
Version: 1.0.0
Text Domain: gsmedia
*/

:root {
    --color-primary-50: #eff6ff;
    --color-primary-100: #dbeafe;
    --color-primary-500: #3b82f6;
    --color-primary-600: #2563eb;
    --color-primary-700: #1d4ed8;
    --color-slate-50: #f8fafc;
    --color-slate-100: #f1f5f9;
    --color-slate-200: #e2e8f0;
    --color-slate-300: #cbd5e1;
    --color-slate-400: #94a3b8;
    --color-slate-500: #64748b;
    --color-slate-600: #475569;
    --color-slate-900: #0f172a;
    --color-white: #ffffff;
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-ui: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --container-max-width: 1200px;
    --section-padding: 5rem 1rem;
    --scrollbar-thumb: #2563eb;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb) #f1f5f9;
}

::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb);
    border-radius: 7px;
    border: 3px solid #f1f5f9;
    transition: background-color 0.1s ease;
}

::-webkit-scrollbar-thumb:hover {
    opacity: 0.9;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: clip; }
body { font-family: var(--font-body); color: var(--color-slate-900); background-color: var(--color-slate-50); line-height: 1.6; margin: 0; }
.site-main p { font-size: 1rem; }
@media (min-width: 768px) {
    .site-main p { font-size: 1.15rem; }
}
.site-main, main { max-width: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: var(--font-ui); }

/* Typography system */
h1, h2 { font-family: var(--font-heading); }
h1 { font-weight: 700; }
h2 { font-weight: 600; }
h3, h4, .ui-text, .label { font-family: var(--font-ui); }
h3 { font-weight: 600; }
h4 { font-weight: 500; }
p, span, li, input, textarea, small { font-family: var(--font-body); font-weight: 400; }

/* UTILS */
.container { max-width: var(--container-max-width); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-6xl { max-width: 72rem; margin-left: auto; margin-right: auto; }
.hidden { display: none; }
.hidden-md { display: none; }
@media(min-width: 768px) { .hidden-md { display: block; } }

.fade-in { animation: fadeIn 0.3s ease-in-out; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Scroll reveal – basis */
.reveal {
    opacity: 0;
}

/* Reduced motion: geen animatie, alles direct zichtbaar */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

/* Richting helpers – vaste richting, gebruikt o.a. voor Hero, FAQ, Final CTA */
.reveal-up {
    transform: translateY(24px);
}

.reveal-left {
    transform: translateX(-24px);
}

.reveal-right {
    transform: translateX(24px);
}

.reveal.is-visible.reveal-up {
    animation: revealUp 0.55s ease-out forwards;
}

.reveal.is-visible.reveal-left {
    animation: revealLeft 0.55s ease-out forwards;
}

.reveal.is-visible.reveal-right {
    animation: revealRight 0.55s ease-out forwards;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealLeft {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes revealRight {
    from {
        opacity: 0;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.875rem 2rem; border-radius: 9999px; font-weight: 600; cursor: pointer; transition: all 0.3s; font-size: 1rem; border: none; text-decoration: none; white-space: nowrap; }
.btn-primary { background-color: var(--color-primary-600); color: white; }
.btn-primary:hover { background-color: var(--color-primary-700); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3); }
.btn-secondary { background: white; color: var(--color-primary-600); border: 1px solid var(--color-slate-200); }
.btn-secondary:hover { background: var(--color-primary-50); }
.btn-link { background: transparent; color: var(--color-slate-500); padding: 0.875rem 1.5rem; }
.btn-link:hover { color: var(--color-slate-900); }
.btn-link-clean { color: #475569; font-weight: 600; padding: 0 1.5rem; position: relative; }
.btn-link-clean:hover { color: #0f172a; }
.btn-link-clean::after { content: ''; display: block; height: 2px; width: 0; background: #0f172a; transition: width 0.3s; position: absolute; bottom: 0; left: 1.5rem; }
.btn-link-clean:hover::after { width: calc(100% - 3rem); }

.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-xl { padding: 1.25rem 2.5rem; font-size: 1.125rem; border-radius: 12px; font-weight: 700; }
.btn-sm { padding: 0.625rem 1.5rem; font-size: 0.875rem; }
.btn-full { width: 100%; }
.shadow-lg { box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.25); }
.shadow-premium { box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.3), 0 8px 10px -6px rgba(37, 99, 235, 0.1); }

/* Aanvraag – Creative-style form (pill inputs, open layout) */
.form-input-creative {
    width: 100%;
    height: 64px;
    padding: 0 1.5rem;
    border-radius: 24px;
    border: 1px solid #d4d4d4;
    background: transparent;
    font-size: 16px;
    transition: border-color 0.2s ease, box-shadow 0.15s ease;
    outline: none;
    color: #0f172a;
}
.form-input-creative::placeholder {
    color: #94a3b8;
}
.form-input-creative:hover {
    border-color: #a3a3a3;
}
.form-input-creative:focus {
    border-color: #0f172a;
}
.form-input-creative:focus:hover {
    border-color: #0f172a;
}

/* Aanvraag – textarea's (Wat doet je bedrijf?, Wat maakt jouw bedrijf uniek?, etc.) */
.form-textarea-creative {
    width: 100%;
    min-height: 120px;
    padding: 1.25rem 1.5rem;
    border-radius: 24px;
    border: 1px solid #d4d4d4;
    background: transparent;
    font-size: 16px;
    font-family: var(--font-body);
    line-height: 1.6;
    transition: border-color 0.2s ease, box-shadow 0.15s ease;
    outline: none;
    color: #0f172a;
    resize: vertical;
}
.form-textarea-creative::placeholder {
    color: #94a3b8;
}
.form-textarea-creative:hover {
    border-color: #a3a3a3;
}
.form-textarea-creative:focus {
    border-color: #0f172a;
}
.form-textarea-creative:focus:hover {
    border-color: #0f172a;
}

/* Contactpagina – inputs op donkerblauwe achtergrond */
.contact-section .form-input-contact,
.contact-section .form-textarea-contact {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}
.contact-section .form-input-contact::placeholder,
.contact-section .form-textarea-contact::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.contact-section .form-input-contact:hover,
.contact-section .form-textarea-contact:hover {
    border-color: rgba(255, 255, 255, 0.6);
}
.contact-section .form-input-contact:focus,
.contact-section .form-textarea-contact:focus {
    border-color: #fff;
}

/* Aanvraag – meerkeuze pill-stijl (wit + dunne rand, geselecteerd = wit binnen, blauwe rand, geen vinkjes) */
.choice-pill-group label:has(input[type="checkbox"]),
.choice-pill-group label:has(input[type="radio"]) {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0;
    padding: 0.75rem 1.25rem;
    min-height: 48px;
    background: #fff;
    border: 1px solid #0f172a;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.875rem;
    color: #0f172a;
}
.choice-pill-group label:has(input[type="checkbox"]):hover,
.choice-pill-group label:has(input[type="radio"]):hover {
    border-color: #475569;
}
.choice-pill-group label:has(input[type="checkbox"]:checked),
.choice-pill-group label:has(input[type="radio"]:checked) {
    background: var(--color-primary-600);
    border-color: var(--color-primary-600);
    color: #fff;
}
.choice-pill-group label:has(input[type="checkbox"]:checked) span,
.choice-pill-group label:has(input[type="radio"]:checked) span {
    color: #fff !important;
}
.choice-pill-group label:has(input[type="checkbox"]) input,
.choice-pill-group label:has(input[type="radio"]) input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    cursor: pointer;
}
.choice-pill-group label:has(input[type="checkbox"]) span,
.choice-pill-group label:has(input[type="radio"]) span {
    position: relative;
    z-index: 1;
    text-align: center;
    pointer-events: none;
}


/* HEADER */
.site-header { 
    position: sticky; 
    top: 0; 
    z-index: 100; 
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, padding 0.3s ease-in-out; 
    padding: 1rem 0; 
    background-color: transparent;
    width: 100%;
    --header-height: 4rem;
}

/* Scrolled state: solid background (no backdrop-filter so position:fixed children stay viewport-relative) */
#masthead.site-header.scrolled,
.site-header.scrolled { 
    background-color: rgba(255, 255, 255, 0.97) !important; 
    padding-top: 0.75rem !important; 
    padding-bottom: 0.75rem !important; 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); 
}

.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo a { display: flex; align-items: center; gap: 0.25rem; }
.logo-img { height: 2rem; width: auto; }
.logo-text { font-family: var(--font-ui); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.025em; line-height: 1.1; }
.logo-text .highlight { color: var(--color-primary-600); }

/* Header nav (Home, Aanvraag, Tarieven, Contact) */
.header-nav { display: flex; align-items: center; position: relative; }
.header-nav-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.header-nav-list a {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-slate-600);
    text-decoration: none;
    transition: color 0.2s ease;
}
.header-nav-list a:hover {
    color: var(--color-primary-600);
}

/* Sluitknop alleen op mobiel zichtbaar */
.header-nav-close-wrap { display: none; }

/* Burger button – alleen op mobiel */
.header-nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    border-radius: 6px;
    transition: background 0.2s ease;
}
.header-nav-burger:hover {
    background: rgba(0, 0, 0, 0.05);
}
.header-nav-burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-primary-600);
    border-radius: 1px;
}

.header-nav-overlay {
    display: none;
}

/* Fixed × close button (direct child of body), visible when menu open */
#mobile-menu-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1102;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-primary-600);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s;
}
body.menu-open #mobile-menu-close {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobiel: burger tonen, menu verbergen tot open */
@media (max-width: 768px) {
    #header-nav-list-desktop {
        display: none;
    }
    .header-nav-burger {
        display: flex;
    }
    .header-nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    }
    body.menu-open .header-nav-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .mobile-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(300px, 80vw);
        height: 100vh;
        z-index: 1001;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    body.menu-open .mobile-nav {
        transform: translateX(0);
    }
    .mobile-nav-inner {
        height: 100%;
        overflow: auto;
    }
    .header-nav-list {
        background: #fff;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 4.5rem 1.5rem 2rem;
        min-height: 100%;
        list-style: none;
        margin: 0;
    }
    .header-nav-list li {
        border-bottom: 1px solid var(--color-slate-100);
    }
    .header-nav-list a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
    }
}
@media (min-width: 769px) {
    .header-nav-burger {
        display: none;
    }
    .mobile-nav {
        display: none;
    }
}
@media (max-width: 640px) {
    .header-nav-list a { font-size: 1rem; }
}

.main-navigation .nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-navigation .nav-links a {
    font-weight: 600;
    color: var(--color-slate-600);
}
.main-navigation .nav-links a:hover {
    color: var(--color-primary-600);
}

/* Step navigation Terug & Volgende – allemaal even groot (180px breed) */
.btn-step-next,
.btn-step-prev {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    min-width: 180px;
    flex-shrink: 0;
    padding: 12px 28px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.02em;
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
    -webkit-tap-highlight-color: transparent;
}
.btn-step-next {
    border: none;
    color: #fff;
    background: #2563eb;
}
.btn-step-next:hover {
    background: #1d4ed8;
}
.btn-step-prev {
    border: 2px solid var(--color-slate-200);
    color: var(--color-slate-700);
    background: #fff;
}
.btn-step-prev:hover {
    border-color: var(--color-slate-300);
    background: var(--color-slate-50);
}
.btn-step-next:active,
.btn-step-prev:active {
    transform: scale(0.98);
}

/* Hero (landing) – premium layout */
.hero {
  position: relative;
  z-index: 20;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  background: #ffffff;
  overflow: hidden;
  text-align: center;
}

/* Hero mouse trail – simple solid blue */
.hero-trail {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-trail__dot {
  position: absolute;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  margin-top: -4px;
  border-radius: 50%;
  background: #2563eb;
  left: 0;
  top: 0;
  opacity: 0;
  will-change: transform;
}

@media (min-width: 1024px) {
  .hero {
    padding: 140px 0 100px;
  }
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 auto 0;
  max-width: 900px;
  text-align: center;
}
.hero-headline span {
  font-family: var(--font-heading);
  font-weight: 600;
}
@media (min-width: 640px) {
  .hero-headline { font-size: 2.5rem; }
}
@media (min-width: 768px) {
  .hero-headline { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .hero-headline { font-size: 56px; }
}

.hero-subheadline {
  font-size: 1rem;
  font-weight: 400;
  color: #5F6B7A;
  max-width: 600px;
  margin: 24px auto 0;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .hero-subheadline { font-size: 1rem; }
}

.hero .cta-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* Hero CTA: subtler, less “toy” */
.hero-cta-btn {
  display: inline-block;
  position: relative;
  padding: 10px 20px;
  border-radius: 7px;
  border: 1px solid rgb(61, 106, 255);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  background: transparent;
  color: rgb(61, 106, 255);
  overflow: hidden;
  box-shadow: 0 0 0 0 transparent;
  transition: all 0.2s ease-in;
  text-decoration: none;
  cursor: pointer;
}

.hero-cta-btn:hover {
  background: rgb(61, 106, 255);
  box-shadow: 0 0 30px 5px rgba(0, 142, 236, 0.815);
  color: #fff;
  transition: all 0.2s ease-out;
}

.hero-cta-btn:hover::before {
  animation: hero-cta-shine 0.5s 0s linear;
}

.hero-cta-btn::before {
  content: '';
  display: block;
  width: 0;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 50px 30px #fff;
  transform: skewX(-20deg);
}

@keyframes hero-cta-shine {
  from {
    opacity: 0;
    left: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}

.hero-cta-btn:active {
  box-shadow: 0 0 0 0 transparent;
  transition: box-shadow 0.2s ease-in;
}

/* Hero CTA white variant (e.g. process CTA box, contact submit) – text =zelfde donkerblauw als sectie-achtergrond */
.hero-cta-btn--white {
  background: #ffffff;
  color: #0f172a;
  border-color: #ffffff;
}
.hero-cta-btn--white:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 0 30px 5px rgba(255, 255, 255, 0.25);
}
.hero-cta-btn--white::before {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 50px 30px rgba(255, 255, 255, 0.5);
}

/* SECTIONS GLOBAL */
.section-title { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; }
.section-desc { color: var(--color-slate-600); max-width: 40rem; margin: 0 auto; }
.features-section, .process-section, .pricing-section, .faq-section, .about-section, .portfolio-section { padding: var(--section-padding); }
.features-section, .pricing-section, .faq-section, .about-section { background: white; }

/* Mobile only: align all sections except hero and final CTA to the left */
@media (max-width: 767px) {
section:not(.hero):not(.final-cta-section) {
    text-align: left;
}
section:not(.hero):not(.final-cta-section) .section-desc,
section:not(.hero):not(.final-cta-section) .max-w-7xl,
section:not(.hero):not(.final-cta-section) .max-w-6xl,
section:not(.hero):not(.final-cta-section) .max-w-4xl,
section:not(.hero):not(.final-cta-section) .max-w-3xl,
section:not(.hero):not(.final-cta-section) .max-w-2xl,
section:not(.hero):not(.final-cta-section) .mx-auto {
    margin-left: 0;
    margin-right: auto;
}
section:not(.hero):not(.final-cta-section) .pricing-title {
    text-align: left;
}
section:not(.hero):not(.final-cta-section) .process-title {
    text-align: left;
}
section:not(.hero):not(.final-cta-section) .text-center {
    text-align: left;
}
section:not(.hero):not(.final-cta-section) .final-cta-link-inner {
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}
}

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 1200px; margin: 3rem auto 0; }

/* Features – roterende 3D-kaarten (Uiverse.io by ilkhoeri, aangepast) */
.features-carousel-wrapper {
  width: 100%;
  min-height: 520px;
  padding-top: 1rem;
  padding-bottom: 2rem;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.features-carousel-inner {
  --w: 160px;
  --h: 220px;
  --translateZ: calc((var(--w) + var(--h)) + 20px);
  --rotateX: -12deg;
  --perspective: 1200px;
  position: absolute;
  width: var(--w);
  height: var(--h);
  /* Iets naar boven geplaatst zodat de onderkant van de carousel niet wordt afgesneden */
  top: 34%;
  left: 50%;
  margin-left: calc(-1 * (var(--w) / 2) - 2.5px);
  margin-top: calc(-1 * (var(--h) / 2));
  z-index: 2;
  transform-style: preserve-3d;
  transform: perspective(var(--perspective));
  animation: featuresRotating 25s linear infinite;
}

@keyframes featuresRotating {
  from {
    transform: perspective(var(--perspective)) rotateX(var(--rotateX)) rotateY(0);
  }
  to {
    transform: perspective(var(--perspective)) rotateX(var(--rotateX)) rotateY(1turn);
  }
}

.features-carousel-card {
  position: absolute;
  border: 2px solid rgba(var(--color-card), 0.8);
  border-radius: 12px;
  overflow: hidden;
  inset: 0;
  transform: rotateY(calc((360deg / var(--quantity)) * var(--index))) translateZ(var(--translateZ));
  background: #fff;
  backface-visibility: visible;
}

.features-carousel-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #0000
    radial-gradient(
      circle,
      rgba(var(--color-card), 0.15) 0%,
      rgba(var(--color-card), 0.4) 70%,
      rgba(var(--color-card), 0.7) 100%
    );
  pointer-events: none;
}

.features-carousel-card-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.features-carousel-card-content h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-slate-900);
  margin: 0 0 0.35rem 0;
  line-height: 1.25;
}

.features-carousel-card-content p {
  font-size: 0.7rem;
  color: var(--color-slate-600);
  line-height: 1.35;
  margin: 0;
}

@media (max-width: 767px) {
  .features-carousel-inner {
    --w: 130px;
    --h: 180px;
    --translateZ: calc((var(--w) + var(--h)) + 10px);
  }
  .features-carousel-wrapper { min-height: 400px; padding-top: 0.75rem; padding-bottom: 1.5rem; }
  .features-carousel-inner { top: 32%; }
  .features-carousel-card-content h3 { font-size: 0.8rem; }
  .features-carousel-card-content p { font-size: 0.65rem; }
}

/* PRICING – Wat het kost */
.pricing-section .max-w-7xl { max-width: 80rem; margin-left: auto; margin-right: auto; }
.pricing-top { text-align: left; margin-bottom: 3rem; }
.pricing-header { margin-bottom: 1rem; }
.pricing-above { font-family: var(--font-ui); font-weight: 600; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-primary-600); margin-bottom: 0.5rem; }
.pricing-title { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 700; line-height: 1.2; color: var(--color-slate-900); margin-bottom: 0; }
.pricing-body { max-width: 40rem; margin: 0; }
.pricing-body p { color: var(--color-slate-600); font-size: 1rem; line-height: 1.7; }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0; }
.pricing-value-card { background: var(--color-slate-50); border: 1px solid var(--color-slate-200); border-radius: 1rem; padding: 2rem; transition: all 0.3s ease; }
.pricing-value-card:hover { border-color: var(--color-primary-200); box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08); }
.pricing-value-card__title { font-family: var(--font-ui); font-size: 1rem; font-weight: 700; color: var(--color-slate-900); margin-bottom: 0.5rem; }
.pricing-value-card__text { font-size: 0.875rem; color: var(--color-slate-600); line-height: 1.6; margin: 0; }
@media (max-width: 767px) {
  #pricing.pricing-section {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .pricing-cards { grid-template-columns: 1fr; }
}

/* Scroll reveal – pricing behavior */
/* Pricing top: desktop links→rechts, mobile onder→boven */
@media (max-width: 767px) {
  .reveal-pricing-top {
    transform: translateY(24px);
  }
  .reveal.is-visible.reveal-pricing-top {
    animation: revealUp 0.55s ease-out forwards;
  }
}
@media (min-width: 768px) {
  .reveal-pricing-top {
    transform: translateX(-24px);
  }
  .reveal.is-visible.reveal-pricing-top {
    animation: revealLeft 0.55s ease-out forwards;
  }
}

/* Pricing cards:
   Desktop: alle drie onder→boven.
   Mobile: 1 = links→rechts, 2 = rechts→links, 3 = links→rechts.
*/
/* Desktop */
@media (min-width: 768px) {
  .reveal-pricing-card-1,
  .reveal-pricing-card-2,
  .reveal-pricing-card-3 {
    transform: translateY(24px);
  }
  .reveal.is-visible.reveal-pricing-card-1,
  .reveal.is-visible.reveal-pricing-card-2,
  .reveal.is-visible.reveal-pricing-card-3 {
    animation: revealUp 0.55s ease-out forwards;
  }
}
/* Mobile varianten */
@media (max-width: 767px) {
  .reveal-pricing-card-1,
  .reveal-pricing-card-3 {
    transform: translateX(-24px);
  }
  .reveal.is-visible.reveal-pricing-card-1,
  .reveal.is-visible.reveal-pricing-card-3 {
    animation: revealLeft 0.55s ease-out forwards;
  }
  .reveal-pricing-card-2 {
    transform: translateX(24px);
  }
  .reveal.is-visible.reveal-pricing-card-2 {
    animation: revealRight 0.55s ease-out forwards;
  }
}

/* FAQ accordion */
.faq-section {
    background: var(--color-slate-100);
}
.faq-section .faq-heading-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary-600);
}
.faq-trigger > span:not(.faq-icon) {
    font-weight: 600;
    color: var(--color-slate-900);
}
.faq-answer,
.faq-answer p {
    font-weight: 400;
    color: var(--color-slate-600);
}
.faq-list {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}
.faq-item {
    border-radius: 0;
    box-shadow: none;
    outline: none;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--color-slate-200);
}
.faq-item:first-child {
    border-top: 1px solid var(--color-slate-200);
}
.faq-trigger {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.15s ease;
    border-radius: 0;
    box-shadow: none;
    outline: none;
}
.faq-trigger:hover {
    background: var(--color-slate-50);
}
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}
.faq-answer-inner {
    min-height: 0;
    overflow: hidden;
    padding: 0;
    transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.is-open .faq-answer-inner {
    padding-top: 0.5rem;
    padding-right: 2rem;
    padding-bottom: 1.5rem;
    padding-left: 2rem;
}
.faq-item:not(.is-open) .faq-answer-inner {
    padding: 0;
}
.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-primary-600);
    background: none;
    border: none;
    border-radius: 0;
    transition: transform 0.35s ease;
}
.faq-icon .faq-icon-minus {
    display: none;
}
.faq-icon .faq-icon-plus {
    display: block;
}
.faq-item.is-open .faq-icon .faq-icon-plus {
    display: none;
}
.faq-item.is-open .faq-icon .faq-icon-minus {
    display: block;
}

/* Icons Placeholder classes */
.icon-layout::after { content: "☷"; font-size: 1.25rem; }
.icon-smartphone::after { content: "📱"; font-size: 1.25rem; }

/* Scroll reveal – FAQ container: overal onder→boven */
.reveal-faq {
    transform: translateY(24px);
}
.reveal.is-visible.reveal-faq {
    animation: revealUp 0.55s ease-out forwards;
}

/* PROCESS – sticky-friendly: no overflow on parents */
.process-section {
    overflow: visible;
}
.process-section-inner {
    overflow: visible;
}
.process-layout {
    position: relative;
    margin-bottom: 3rem;
    overflow: visible;
}
@media (min-width: 1024px) {
    .process-sticky-zone {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: stretch;
        padding-top: 2.5rem;
    }
}

.process-header.process-left,
.process-left {
    margin-bottom: 2rem;
}
/* Inner wrapper is sticky so it sticks; outer .process-left stretches to match cards */
.process-left-inner {
    /* mobile: sticky title + stacking cards set below */
}
/* Mobile: title en cards in dezelfde .process-sticky-zone; zone eindigt exact na laatste kaart, geen extra ruimte */
@media (max-width: 1023px) {
    .process-sticky-zone {
        padding-bottom: 0;
        min-height: 0;
    }
    .process-header.process-left {
        position: relative; /* not sticky on mobile – title scrolls away with content */
        z-index: 10;
        background: #f8fafc;
        padding-bottom: 1rem;
        margin-bottom: 0.5rem;
    }
    .process-cards-stack {
        display: grid;
        grid-auto-rows: 1fr;
        min-height: 72rem;
        gap: 1rem;
    }
    .process-cards-stack > .process-card {
        position: sticky;
        top: 4.5rem; /* stick near viewport top when scrolling (title no longer sticky) */
        margin-bottom: 100px;
        min-height: 0;
    }
    .process-cards-stack > .process-card:nth-child(1) { z-index: 1; }
    .process-cards-stack > .process-card:nth-child(2) { z-index: 2; }
    .process-cards-stack > .process-card:nth-child(3) { z-index: 3; }
    .process-cards-stack > .process-card:nth-child(4) { z-index: 4; }
    .process-cards-stack > .process-card:nth-child(5) { z-index: 5; }
    .process-cards-stack > .process-card:nth-child(6) { z-index: 6; }
}
@media (min-width: 1024px) {
    .process-header.process-left,
    .process-left {
        margin-bottom: 0;
        position: relative; /* not sticky – column stretches to match cards */
    }
    .process-left-inner {
        position: sticky;
        top: 120px;
    }
}

.process-title {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 500;
    color: var(--color-slate-900);
    margin: 0;
    text-align: center;
    line-height: 1.2;
}
.features-section-title {
    font-family: var(--font-heading);
}
.tarieven-hero-title,
.tarieven-hero h1 {
    font-family: var(--font-heading);
}
@media (min-width: 768px) {
    .process-title { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
    .process-title {
        font-size: 2.5rem;
        text-align: left;
    }
}

.process-mobile-line {
    display: none; /* removed – no blue line behind cards */
}

.process-cards-stack {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: repeat(6, 1fr);
    gap: 1rem;
    overflow: visible;
    min-height: 84rem; /* 6 equal rows so cards stack seamlessly */
}
@media (min-width: 768px) {
    .process-cards-stack { gap: 1.5rem; }
}
@media (min-width: 1024px) {
    .process-cards-stack {
        gap: 0;
        padding-top: 0;
    }
    .process-cards-stack > .process-card {
        position: sticky;
        top: 140px;
        margin-bottom: 120px;
        min-height: 0; /* allow grid row to define height */
    }
    .process-cards-stack > .process-card:nth-child(1) { z-index: 1; }
    .process-cards-stack > .process-card:nth-child(2) { z-index: 2; }
    .process-cards-stack > .process-card:nth-child(3) { z-index: 3; }
    .process-cards-stack > .process-card:nth-child(4) { z-index: 4; }
    .process-cards-stack > .process-card:nth-child(5) { z-index: 5; }
    .process-cards-stack > .process-card:nth-child(6) { z-index: 6; }
}

.process-card {
    background: white;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    border-radius: 1rem;
    border: 1px solid var(--color-slate-100);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px -4px rgba(0,0,0,0.03);
    transition: all 0.3s;
    min-height: 0; /* let grid row define height for equal cards */
}
@media (min-width: 768px) {
    .process-card { padding: 2.5rem 2.5rem 2.5rem 2.5rem; }
}
.process-card:hover {
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.process-card-watermark {
    position: absolute;
    right: -1rem;
    top: -1.5rem;
    font-size: 6rem;
    line-height: 1;
    font-family: var(--font-heading);
    font-weight: 800;
    color: rgba(248, 250, 252, 0.6);
    pointer-events: none;
    z-index: 0;
}
@media (min-width: 768px) {
    .process-card-watermark { font-size: 8rem; }
}
.process-card:hover .process-card-watermark {
    color: rgba(239, 246, 255, 0.8);
}

.process-watermark {
    position: absolute;
    top: -1.5rem;
    right: -1rem;
    font-size: 8rem;
    font-weight: 800;
    color: var(--color-slate-50);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    font-family: var(--font-heading);
    transition: color 0.5s;
}

.process-card:hover .process-watermark {
    color: #eff6ff; /* blue-50 */
}

.process-content { position: relative; z-index: 10; }

.process-badge {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    color: var(--color-primary-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.process-card:hover .process-badge {
    transform: scale(1.1);
}

.process-step-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-slate-900);
}

/* Process stack – homepage variant (glaze cards + sticky stack) */
#how-it-works .process-stack {
  position: relative;
  padding: 2rem 0 10rem;
}

#how-it-works .process-stack-card {
  position: sticky;
  top: 96px; /* fallback; exacte waarde per kaart via data-sticky-top in JS */
  max-width: 54rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  height: min(40vh, 420px);
  border-radius: 24px;
  overflow: hidden;
  /* Glassmorphism */
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
  transform-origin: top center;
  transition: transform 0.12s ease-out, box-shadow 0.2s ease-out;
  display: flex;
}

@media (max-width: 767px) {
  #how-it-works .process-stack-card {
    height: auto;
    min-height: 280px;
    border-radius: 20px;
  }
}

#how-it-works .process-stack-card-inner {
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  #how-it-works .process-stack-card-inner {
    padding: 2.5rem 2.5rem 2.75rem;
  }
}

/* Zichtbare strook van de onderliggende kaart door oplopende top‑waarden */
#how-it-works .process-stack-card[data-index="0"] { top: 96px; }
#how-it-works .process-stack-card[data-index="1"] { top: 116px; }
#how-it-works .process-stack-card[data-index="2"] { top: 136px; }
#how-it-works .process-stack-card[data-index="3"] { top: 156px; }

.process-card p {
    font-size: 0.95rem;
    color: var(--color-slate-600);
    line-height: 1.6;
}

.process-cta-wrapper {
    position: relative;
    z-index: 20;
    margin-top: 1rem;
}

.process-cta { 
    background: var(--color-primary-600); 
    color: white; 
    border-radius: 1.5rem; 
    padding: 3rem 2rem; 
    text-align: center; 
    max-width: 56rem; 
    margin: 0 auto; 
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2); 
    position: relative;
    overflow: hidden;
}

.cta-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--color-primary-500), var(--color-primary-700));
    z-index: 0;
}

.cta-content { 
    position: relative; 
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-label {
    display: inline-block;
    background: rgba(29, 78, 216, 0.5); /* blue-700/50 */
    border: 1px solid rgba(59, 130, 246, 0.5);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #dbeafe;
    margin-bottom: 1rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.process-cta h3 { 
    font-size: 1.75rem; 
    font-weight: 700; 
    margin-bottom: 1rem; 
}

.process-cta p { 
    color: #dbeafe; 
    margin-bottom: 2rem; 
    font-size: 1.125rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

/* Process CTA block – title/label match page style */
.process-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.process-cta-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
}
.process-cta-title {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 1.5rem;
}
.process-cta-btn-wrap {
  margin-top: 0.25rem;
}
@media (min-width: 768px) {
  .process-cta-title { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .process-cta-title { font-size: 2.5rem; }
}

/* ABOUT SECTION - New Premium Style */
.about-section { position: relative; padding: 6rem 1rem; background: white; overflow: hidden; }

/* Background Element */
.about-bg-element {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 33%;
    height: 100%;
    background: var(--color-slate-50);
    z-index: 0;
    border-top-left-radius: 4rem;
    border-bottom-left-radius: 4rem;
    display: none;
}
@media (min-width: 1024px) { .about-bg-element { display: block; } }

.about-layout { 
    display: flex; 
    flex-direction: column; 
    gap: 3rem; 
    align-items: center; 
    position: relative; 
    z-index: 1; 
}

@media (min-width: 1024px) { 
    .about-layout { flex-direction: row; gap: 6rem; align-items: center; } 
    .about-image-col { width: auto; flex-shrink: 0; }
    .about-content-col { flex: 1; text-align: center; padding-top: 1rem; }
}

/* Image Column */
.about-image-col { display: flex; flex-direction: column; align-items: center; }

.about-image-wrapper { position: relative; margin-bottom: 1.5rem; }
.about-image-wrapper:hover .about-glow { opacity: 1; }

.about-glow {
    position: absolute;
    inset: 0;
    background: #dbeafe; /* blue-100 */
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.5s ease;
    transform: scale(1.1);
}

.about-image-container {
    position: relative;
    width: 16rem; /* w-64 */
    height: 16rem;
    border-radius: 50%;
    padding: 6px;
    background: white;
    border: 1px solid var(--color-slate-100);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    filter: grayscale(10%);
    transition: filter 0.5s ease;
}

.about-image-wrapper:hover img { filter: grayscale(0%); }

.founder-label { text-align: center; }
.founder-label h3 { font-weight: 700; font-size: 1.125rem; color: var(--color-slate-900); }
.founder-label p { font-size: 0.75rem; font-weight: 500; color: var(--color-slate-500); text-transform: uppercase; letter-spacing: 0.05em; }

/* Content Column */
.about-content-col { text-align: center; }
@media (min-width: 1024px) { .about-content-col { text-align: center; } }

.section-label { display: inline-block; font-family: var(--font-ui); color: var(--color-primary-600); font-weight: 700; letter-spacing: 0.1em; font-size: 0.75rem; text-transform: uppercase; margin-bottom: 0.75rem; }

.about-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-slate-900);
    margin-bottom: 2rem;
    line-height: 1.2;
}
@media (min-width: 768px) { .about-title { font-size: 2.5rem; } }

.about-text {
    font-size: 1rem;
    color: var(--color-slate-600);
    line-height: 1.7;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 42rem;
    margin: 0 auto;
}
@media (min-width: 1024px) { .about-text { margin: 0; } }

/* Scroll reveal – Possibilities-like 2‑koloms secties
   Possibilities: desktop kolom 1 links→rechts, kolom 2 rechts→links; mobile beide onder→boven.
   About: zelfde gedrag.
*/
@media (max-width: 767px) {
  .reveal-possibilities-col1,
  .reveal-possibilities-col2,
  .reveal-about-col1,
  .reveal-about-col2 {
    transform: translateY(24px);
  }
  .reveal.is-visible.reveal-possibilities-col1,
  .reveal.is-visible.reveal-possibilities-col2,
  .reveal.is-visible.reveal-about-col1,
  .reveal.is-visible.reveal-about-col2 {
    animation: revealUp 0.55s ease-out forwards;
  }
}
@media (min-width: 768px) {
  .reveal-possibilities-col1,
  .reveal-about-col1 {
    transform: translateX(-24px);
  }
  .reveal.is-visible.reveal-possibilities-col1,
  .reveal.is-visible.reveal-about-col1 {
    animation: revealLeft 0.55s ease-out forwards;
  }
  .reveal-possibilities-col2,
  .reveal-about-col2 {
    transform: translateX(24px);
  }
  .reveal.is-visible.reveal-possibilities-col2,
  .reveal.is-visible.reveal-about-col2 {
    animation: revealRight 0.55s ease-out forwards;
  }
}

.about-quote {
    font-weight: 500;
    color: var(--color-slate-900);
    border-left: 4px solid var(--color-primary-600);
    padding: 0.75rem 0 0.75rem 1.5rem;
    background: var(--color-slate-50);
    border-radius: 0 0.5rem 0.5rem 0;
    font-style: italic;
    text-align: left;
    margin: 0.5rem 0;
}

.about-cta { margin-top: 2.5rem; }

.mini-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary-600);
    font-weight: 700;
    font-size: 1.125rem;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: all 0.2s;
}

.mini-cta-link:hover {
    color: var(--color-primary-700);
    border-bottom-color: var(--color-primary-600);
}

.arrow-icon { transition: transform 0.2s; }
.mini-cta-link:hover .arrow-icon { transform: translateX(4px); }


/* Final CTA section – whole block clickable; circle is a follower element, cursor stays default */
/* No isolation/overflow/transform/filter on this section – cursor-follow uses mix-blend-mode */
.final-cta-section { position: relative; }
.final-cta-link {
  display: block;
  width: 100%;
  padding: 6rem 1rem;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
}
.final-cta-link:hover { color: inherit; }
.final-cta-link-inner { max-width: 56rem; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.final-cta-btn { pointer-events: auto; }
@media (max-width: 767px) {
  section.final-cta-section {
    text-align: center;
  }
  section.final-cta-section .final-cta-link-inner {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    align-items: center;
  }
  section.final-cta-section .final-cta-link-inner .max-w-2xl,
  section.final-cta-section .final-cta-link-inner h2 {
    margin-left: auto;
    margin-right: auto;
  }
  section.final-cta-section .text-center {
    text-align: center;
  }
}

/* Final CTA heading: solid white text, centered */
.final-cta-section .pricing-title {
  color: #ffffff;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Scroll reveal – Final CTA: overal onder→boven */
.final-cta-section .reveal-final-cta {
  transform: translateY(24px);
}
.final-cta-section .reveal.is-visible.reveal-final-cta {
  animation: revealUp 0.55s ease-out forwards;
}

/* Cursor: direct child of body (in footer.php). No transform/overflow/isolation on wrapper so blend works. */
.cursor-follow-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  margin-left: -60px;
  margin-top: -60px;
  pointer-events: none;
  z-index: 999999;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.cursor-follow-wrapper.cursor-follow-wrapper--visible { opacity: 1; }

.cursor-follow {
  position: absolute;
  inset: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  mix-blend-mode: difference;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cursor-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-transform: lowercase;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  mix-blend-mode: difference;
}
.cursor-arrow {
  width: 18px;
  height: 18px;
  margin-top: -2px;
}

.cursor-follow-dot {
  display: none;
  position: absolute;
  inset: 0;
  background: #fff;
  width: 12px;
  height: 12px;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -6px;
  border-radius: 50%;
}
.cursor-follow-wrapper--on-button .cursor-follow { display: none; }
.cursor-follow-wrapper--on-button .cursor-follow-dot { display: block; }
.cursor-follow-wrapper--on-button { width: 24px; height: 24px; margin-left: -12px; margin-top: -12px; }

/* FOOTER CTA & FOOTER */
.footer-cta-section { background: var(--color-slate-900); color: white; padding: 6rem 1rem; text-align: center; }
.footer-cta-section h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.footer-cta-section p { color: var(--color-slate-300); font-size: 1.125rem; margin-bottom: 2.5rem; max-width: 40rem; margin-left: auto; margin-right: auto; }
.shadow-white { box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.1); }

.site-footer { background: white; border-top: 1px solid var(--color-slate-200); padding: 3rem 0; margin-top: auto; }
.footer-container { display: flex; flex-direction: column; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .footer-container { flex-direction: row; justify-content: space-between; } }
@media (max-width: 767px) { .footer-right { align-items: center; text-align: center; } .footer-links { flex-wrap: wrap; justify-content: center; } }
.footer-logo { display: flex; align-items: center; gap: 0.25rem; font-weight: 700; font-family: var(--font-ui); font-size: 1.25rem; margin-bottom: 0.5rem; }
.footer-logo img { height: 2rem; }
.footer-tagline { color: var(--color-slate-500); font-size: 0.875rem; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 1.5rem; text-align: right; }
.footer-contact-block { margin: 0; }
.footer-contact-heading { color: var(--color-slate-600); font-size: 1rem; font-weight: 600; margin: 0 0 0.35rem 0; }
.footer-contact-links { margin: 0; font-size: 1.125rem; }
.footer-contact-links a { color: var(--color-primary-600); font-weight: 600; text-decoration: none; }
.footer-contact-links a:hover { color: var(--color-primary-700); text-decoration: underline; }
.footer-contact-sep { color: var(--color-slate-500); font-weight: 400; margin: 0 0.25rem; }
.footer-links { display: flex; gap: 2rem; font-size: 0.875rem; color: var(--color-slate-600); }
.footer-links a:hover { color: var(--color-primary-600); }
.footer-bottom { text-align: center; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--color-slate-100); color: var(--color-slate-400); font-size: 0.875rem; }

/* UTILITIES REPEATED FOR SAFETY */
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.duration-1000 { transition-duration: 1000ms; }
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }
.relative { position: relative; }
.absolute { position: absolute; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.mt-20 { margin-top: 5rem; }


/* Page content (e.g. bedankt) */
.page-content {
  min-height: 80vh;
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: var(--color-slate-50);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-content .container {
  width: 100%;
}
.bedankt-card {
  max-width: 36rem;
  margin: 0 auto;
  background: white;
  border-radius: 1.5rem;
  border: 1px solid var(--color-slate-100);
  padding: 3rem;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.bedankt-card__icon {
  width: 4rem;
  height: 4rem;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.bedankt-card h1 {
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--color-slate-900);
  margin-bottom: 1rem;
}
.bedankt-card__text {
  color: var(--color-slate-600);
  font-size: 1rem;
  margin-bottom: 2rem;
}
