/* ========================================
   Ergotherapie Jali Rath — Speels & Natuurlijk
   ======================================== */

:root {
    /* Plant / Natuur Groen */
    --green-50:  #f4faf2;
    --green-100: #e2f2dc;
    --green-200: #c5e6b8;
    --green-300: #8fcc7a;
    --green-400: #5bb347;
    --green-500: #3d8b2f;
    --green-600: #2e6b23;
    --green-700: #1f4a18;

    /* Warm Geel */
    --yellow-50:  #fefcf0;
    --yellow-100: #fdf6d8;
    --yellow-200: #faeaab;
    --yellow-300: #f5d764;
    --yellow-400: #efc531;
    --yellow-500: #d4a817;

    /* Neutrals — warme tint */
    --warm-50:   #fdfcfa;
    --warm-100:  #f8f6f1;
    --warm-200:  #eeebe3;
    --warm-300:  #ddd8cc;
    --warm-400:  #b5ae9e;
    --warm-500:  #8a8272;
    --warm-600:  #5e5749;
    --warm-700:  #3b362c;
    --warm-800:  #252118;

    /* Semantic */
    --color-bg:       var(--warm-50);
    --color-surface:  #ffffff;
    --color-text:     var(--warm-700);
    --color-text-sub: var(--warm-500);
    --color-primary:  var(--green-500);
    --color-accent:   var(--yellow-400);

    /* Typography */
    --font-display: 'Fraunces', Georgia, serif;
    --font-body:    'Outfit', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --s-xs: 0.25rem;
    --s-sm: 0.5rem;
    --s-md: 1rem;
    --s-lg: 1.5rem;
    --s-xl: 2rem;
    --s-2xl: 3rem;
    --s-3xl: 4rem;
    --s-4xl: 6rem;
    --s-5xl: 8rem;

    /* Radius — organisch / speels */
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-blob: 40% 60% 55% 45% / 55% 40% 60% 45%;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

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

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

a { color: var(--green-600); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--green-400); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--warm-800);
    line-height: 1.15;
    font-weight: 500;
}

h1 em, h2 em, h1 .h1-accent, .h1-accent {
    font-style: normal !important;
    font-weight: 600 !important;
    color: var(--green-500) !important;
    font-family: var(--font-body) !important;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 var(--s-xl); }

/* ---- Reveal Animations ---- */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: var(--s-md) 0;
    transition: all 0.35s ease;
}

.nav.scrolled {
    background: rgba(253, 252, 250, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 20px rgba(37, 33, 24, 0.06);
    padding: var(--s-sm) 0;
}

.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 var(--s-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--s-sm);
    color: var(--warm-800);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
}

.nav-logo strong { font-weight: 600; }

.logo-leaf {
    width: 36px;
    height: 36px;
    color: var(--green-500);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--s-lg);
    list-style: none;
}

.nav-links a {
    color: var(--warm-600);
    font-size: 0.9rem;
    font-weight: 500;
    padding: var(--s-xs) 0;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-500); }

.nav-cta {
    background: var(--green-500) !important;
    color: white !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: var(--r-xl);
    font-weight: 600 !important;
    transition: background 0.25s, transform 0.25s !important;
}
.nav-cta:hover {
    background: var(--green-400) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 101;
}
.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--warm-700);
    border-radius: 2px;
    transition: 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(165deg, var(--green-50) 0%, var(--warm-50) 35%, var(--yellow-50) 100%);
}

/* Speelse organische achtergrondvormen */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.shape {
    position: absolute;
    border-radius: var(--r-blob);
    opacity: 0.5;
    animation: blobFloat 20s ease-in-out infinite;
}

.shape-1 {
    width: 500px; height: 500px;
    background: var(--green-100);
    top: -10%; right: -5%;
    animation-delay: 0s;
}
.shape-2 {
    width: 300px; height: 300px;
    background: var(--yellow-100);
    bottom: 10%; left: -5%;
    animation-delay: -5s;
    border-radius: 55% 45% 50% 50% / 45% 55% 45% 55%;
}
.shape-3 {
    width: 200px; height: 200px;
    background: var(--green-200);
    top: 30%; left: 15%;
    animation-delay: -10s;
    opacity: 0.3;
    border-radius: 50% 50% 45% 55% / 55% 50% 50% 45%;
}
.shape-4 {
    width: 120px; height: 120px;
    background: var(--yellow-200);
    top: 15%; right: 30%;
    animation-delay: -7s;
    opacity: 0.4;
    border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%;
}
.shape-5 {
    width: 80px; height: 80px;
    background: var(--green-300);
    bottom: 25%; right: 20%;
    animation-delay: -12s;
    opacity: 0.25;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(20px, -15px) rotate(5deg) scale(1.03); }
    50% { transform: translate(-10px, 20px) rotate(-3deg) scale(0.97); }
    75% { transform: translate(15px, 10px) rotate(4deg) scale(1.02); }
}

.hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 140px var(--s-xl) var(--s-4xl);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--s-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--s-sm);
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(8px);
    padding: 0.4rem 1rem;
    border-radius: var(--r-xl);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--green-600);
    border: 1px solid var(--green-100);
    margin-bottom: var(--s-lg);
}
.badge-leaf { font-size: 1.1rem; }

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    margin-bottom: var(--s-xl);
    line-height: 1.1;
}

.h1-accent {
    color: var(--green-500);
    font-style: italic;
    font-weight: 400;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--warm-500);
    max-width: 460px;
    margin-bottom: var(--s-2xl);
    line-height: 1.7;
}

/* No wait banner */
.no-wait-banner {
    display: inline-flex;
    align-items: center;
    gap: var(--s-sm);
    padding: 0.5rem 1.2rem;
    background: var(--green-100);
    border: 1px solid var(--green-200);
    border-radius: var(--r-xl);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-700);
    margin-bottom: var(--s-xl);
}

.no-wait-dot {
    width: 8px;
    height: 8px;
    background: var(--green-400);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* Banner kleurvarianten */
.no-wait-banner.banner-yellow {
    background: var(--yellow-100);
    border-color: var(--yellow-300);
    color: var(--warm-700);
}
.no-wait-banner.banner-red {
    background: #fde8e8;
    border-color: #f5a3a3;
    color: #7c2d2d;
}
.dot-green { background: var(--green-400) !important; }
.dot-yellow { background: var(--yellow-400) !important; }
.dot-red { background: #e55353 !important; }
.dot-blue { background: #5b9bd5 !important; }

.no-wait-banner.banner-blue {
    background: #e8f0fa;
    border-color: #a3c4e8;
    color: #2c5282;
}

/* ---- Edit Panel ---- */
.edit-panel {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(37, 33, 24, 0.5);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
}
.edit-panel.open { display: flex; }

.edit-panel-inner {
    background: white;
    border-radius: var(--r-lg);
    width: 90%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    overflow: hidden;
}

.edit-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--s-lg) var(--s-xl);
    border-bottom: 1px solid var(--warm-200);
}
.edit-header h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
}
.edit-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--warm-400);
    padding: 0 4px;
    line-height: 1;
}
.edit-close:hover { color: var(--warm-700); }

.edit-body { padding: var(--s-xl); }

.edit-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--warm-400);
    margin-bottom: var(--s-sm);
}

.edit-options {
    display: flex;
    flex-direction: column;
    gap: var(--s-sm);
    margin-bottom: var(--s-xl);
}

.edit-option {
    display: flex;
    align-items: center;
    gap: var(--s-md);
    padding: 0.7rem 1rem;
    background: var(--warm-100);
    border: 2px solid transparent;
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--warm-600);
    cursor: pointer;
    transition: all 0.2s;
}
.edit-option:hover { border-color: var(--warm-300); }
.edit-option.active { border-color: var(--green-400); background: var(--green-50); }

.opt-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.opt-dot-green { background: var(--green-400); }
.opt-dot-yellow { background: var(--yellow-400); }
.opt-dot-red { background: #e55353; }
.opt-dot-blue { background: #5b9bd5; }

.edit-input {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid var(--warm-300);
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--warm-700);
    margin-bottom: var(--s-lg);
    transition: border-color 0.2s;
}
.edit-input:focus {
    outline: none;
    border-color: var(--green-400);
}
.edit-input::placeholder { color: var(--warm-400); }

.edit-actions { margin-bottom: var(--s-md); }
.edit-save { width: 100%; justify-content: center; }

.edit-hint {
    font-size: 0.75rem;
    color: var(--warm-400);
    line-height: 1.5;
    text-align: center;
}

.hero-actions { display: flex; gap: var(--s-md); flex-wrap: wrap; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--s-sm);
    padding: 0.8rem 1.6rem;
    border-radius: var(--r-xl);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    border: 2px solid transparent;
    text-decoration: none;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
    background: var(--green-500);
    color: white;
    box-shadow: 0 4px 16px rgba(61, 139, 47, 0.25);
}
.btn-primary:hover {
    background: var(--green-400);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(61, 139, 47, 0.3);
}

.btn-outline {
    color: var(--green-600);
    border-color: var(--green-200);
    background: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: var(--green-50);
    border-color: var(--green-300);
    color: var(--green-600);
}

.btn-light {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
}
.btn-light:hover {
    background: rgba(255,255,255,0.25);
    color: white;
    transform: translateY(-2px);
}

/* Portrait */
.hero-portrait { position: relative; display: flex; justify-content: center; }

.portrait-frame {
    width: 340px;
    height: 420px;
    border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(31, 74, 24, 0.15);
    border: 4px solid rgba(255,255,255,0.8);
    transition: border-radius 4s ease-in-out;
    animation: portraitMorph 8s ease-in-out infinite;
}
.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}

@keyframes portraitMorph {
    0%, 100% { border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%; }
    33% { border-radius: 50% 50% 45% 55% / 55% 50% 50% 45%; }
    66% { border-radius: 55% 45% 55% 45% / 45% 55% 45% 55%; }
}

.portrait-float {
    position: absolute;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: var(--r-xl);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--warm-700);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: var(--s-sm);
    animation: floatTag 6s ease-in-out infinite;
}

.portrait-float span { font-size: 1.1rem; }

.portrait-float-1 {
    bottom: 15%;
    left: -10%;
    animation-delay: 0s;
}
.portrait-float-2 {
    top: 10%;
    right: -5%;
    animation-delay: -3s;
}

@keyframes floatTag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ================================================
   SECTIONS
   ================================================ */
.section { padding: var(--s-5xl) 0; }

.section-intro {
    margin-bottom: var(--s-3xl);
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--green-500);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--s-sm);
}
.eyebrow-light { color: var(--yellow-300); }

.section-intro h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: var(--s-md);
}

.intro-sub {
    font-size: 1.05rem;
    color: var(--warm-500);
    max-width: 500px;
}

/* ================================================
   SPECIALISATIES
   ================================================ */
.section-waarvoor {
    background: var(--warm-100);
    position: relative;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-lg);
}

.spec-card {
    background: white;
    border-radius: var(--r-lg);
    padding: var(--s-2xl);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid var(--warm-200);
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-300), var(--yellow-300));
    opacity: 0;
    transition: opacity 0.3s;
}

.spec-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(61, 139, 47, 0.1);
    border-color: var(--green-100);
}

.spec-card:hover::before { opacity: 1; }

.spec-emoji {
    font-size: 2rem;
    margin-bottom: var(--s-md);
    display: block;
}

.spec-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--s-sm);
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--warm-800);
}

.spec-card p {
    font-size: 0.9rem;
    color: var(--warm-500);
    line-height: 1.65;
}

/* ================================================
   OVER MIJ
   ================================================ */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-4xl);
    align-items: start;
}

.about-left h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: var(--s-xl);
}

.about-lead {
    font-size: 1.1rem;
    color: var(--warm-600);
    line-height: 1.7;
    margin-bottom: var(--s-md);
}

.about-left p {
    margin-bottom: var(--s-md);
    color: var(--warm-500);
}

.about-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--s-md);
    margin-bottom: var(--s-2xl);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: var(--s-lg);
    padding: var(--s-md) var(--s-lg);
    background: var(--green-50);
    border-radius: var(--r-md);
    border-left: 3px solid var(--green-300);
}

.timeline-year {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--green-600);
    min-width: 50px;
}

.timeline-text {
    font-size: 0.9rem;
    color: var(--warm-600);
    font-weight: 500;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-sm);
}

.tag {
    padding: 0.35rem 0.9rem;
    background: var(--yellow-100);
    color: var(--warm-700);
    border-radius: var(--r-xl);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--yellow-200);
}

/* ================================================
   WERKWIJZE
   ================================================ */
.section-process {
    background: white;
}

.process-cards {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: var(--s-3xl);
    flex-wrap: wrap;
    justify-content: center;
}

.process-card {
    flex: 1;
    min-width: 160px;
    max-width: 200px;
    background: var(--green-50);
    border-radius: var(--r-lg);
    padding: var(--s-xl) var(--s-lg);
    text-align: center;
    border: 1px solid var(--green-100);
    transition: all 0.3s ease;
}

.process-card:hover {
    background: var(--green-100);
    transform: translateY(-4px);
}

.pc-num {
    width: 40px; height: 40px;
    background: var(--green-500);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 auto var(--s-md);
}

.process-card h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: var(--s-sm);
    color: var(--warm-800);
}

.process-card p {
    font-size: 0.82rem;
    color: var(--warm-500);
    line-height: 1.5;
}

.process-connector {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    color: var(--green-300);
    padding: 0 var(--s-sm);
}

/* Billing banner */
.billing-banner {
    display: flex;
    align-items: start;
    gap: var(--s-xl);
    padding: var(--s-2xl);
    background: linear-gradient(135deg, var(--yellow-50), var(--green-50));
    border-radius: var(--r-lg);
    border: 1px solid var(--yellow-200);
}

.billing-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.billing-text h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: var(--s-sm);
    color: var(--warm-800);
}

.billing-text p {
    font-size: 0.9rem;
    color: var(--warm-500);
    line-height: 1.7;
}

/* ================================================
   REATTACH
   ================================================ */
.section-reattach {
    background: linear-gradient(160deg, var(--green-600) 0%, var(--green-700) 60%, #163f11 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.reattach-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(239, 197, 49, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(143, 204, 122, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.reattach-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--s-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.reattach-content h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: var(--s-xl);
}

.reattach-content h2 em { color: var(--yellow-300) !important; }

.reattach-lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--s-lg);
    line-height: 1.7;
}

.reattach-list {
    list-style: none;
    margin: var(--s-lg) 0 var(--s-2xl);
}

.reattach-list li {
    position: relative;
    padding-left: var(--s-xl);
    margin-bottom: var(--s-sm);
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.reattach-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 10px;
    width: 8px; height: 8px;
    background: var(--yellow-400);
    border-radius: 50%;
}

.reattach-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--s-lg);
}

.highlight-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-lg);
    padding: var(--s-xl);
    display: flex;
    align-items: center;
    gap: var(--s-lg);
    transition: background 0.3s;
}

.highlight-card:hover {
    background: rgba(255,255,255,0.12);
}

.hl-emoji {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.highlight-card h4 {
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.highlight-card p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
}

/* ================================================
   PCS NETWERK
   ================================================ */
.section-network {
    background: var(--warm-100);
}

.network-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-4xl);
    align-items: center;
}

.network-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    margin-bottom: var(--s-lg);
}

.network-text p {
    color: var(--warm-500);
    margin-bottom: var(--s-md);
}

.network-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-md);
}

.pill {
    display: flex;
    align-items: center;
    gap: var(--s-md);
    padding: var(--s-md) var(--s-lg);
    background: white;
    border-radius: var(--r-md);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--warm-600);
    border: 1px solid var(--warm-200);
    transition: all 0.25s;
}

.pill:hover {
    border-color: var(--green-200);
    box-shadow: 0 4px 16px rgba(61, 139, 47, 0.08);
    transform: translateY(-2px);
}

.pill-code {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    background: var(--green-100);
    color: var(--green-600);
    border-radius: var(--r-sm);
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ================================================
   CONTACT
   ================================================ */
.section-contact {
    background: white;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-4xl);
    align-items: start;
    margin-bottom: var(--s-3xl);
}

.contact-left h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: var(--s-lg);
}

.contact-left p {
    color: var(--warm-500);
    margin-bottom: var(--s-md);
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: var(--s-md);
}

.contact-row {
    display: flex;
    align-items: center;
    gap: var(--s-lg);
    padding: var(--s-lg) var(--s-xl);
    background: var(--warm-100);
    border-radius: var(--r-md);
    transition: all 0.25s;
    color: inherit;
    text-decoration: none;
    border: 1px solid transparent;
}

a.contact-row:hover {
    background: var(--green-50);
    border-color: var(--green-100);
    transform: translateX(4px);
    color: inherit;
}

.contact-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--r-sm);
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--warm-400);
    margin-bottom: 2px;
}

.contact-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--warm-700);
}

.contact-value small {
    font-weight: 400;
    color: var(--warm-500);
    font-size: 0.85rem;
}

/* ================================================
   CONTACTFORMULIER
   ================================================ */
.contact-form-section {
    margin-top: var(--s-3xl);
    padding: var(--s-2xl);
    background: var(--warm-100);
    border-radius: var(--r-lg);
}

.contact-form-section h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: var(--s-xl);
    color: var(--warm-800);
}

.contact-form {
    max-width: 560px;
}

.form-group {
    margin-bottom: var(--s-lg);
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--warm-500);
    margin-bottom: var(--s-xs);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--warm-300);
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--warm-700);
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-400);
    box-shadow: 0 0 0 3px rgba(91, 179, 71, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--warm-400);
}

.form-check {
    margin-bottom: var(--s-xl);
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: var(--s-sm);
    cursor: pointer;
    font-size: 0.85rem !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: var(--warm-500) !important;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--green-500);
}

.checkbox-label a {
    color: var(--green-600);
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    justify-content: center;
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: wait;
}

.form-feedback {
    margin-top: var(--s-md);
    padding: 0;
    border-radius: var(--r-md);
    font-size: 0.9rem;
    line-height: 1.5;
    transition: all 0.3s;
}

.form-feedback:not(:empty) {
    padding: 0.75rem 1rem;
}

.feedback-success {
    background: var(--green-100);
    color: var(--green-700);
    border: 1px solid var(--green-200);
}

.feedback-error {
    background: #fde8e8;
    color: #7c2d2d;
    border: 1px solid #f5a3a3;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--warm-800);
    color: rgba(255,255,255,0.5);
    padding: var(--s-3xl) 0 var(--s-xl);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: var(--s-2xl);
    margin-bottom: var(--s-2xl);
    flex-wrap: wrap;
}

.footer-logo { margin-bottom: var(--s-md); }
.footer-logo .logo-leaf { color: var(--green-400); }
.footer-logo .logo-text { color: rgba(255,255,255,0.8); }

.footer-brand p {
    font-size: 0.85rem;
    max-width: 280px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: var(--s-lg);
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: white; }

.footer-bottom {
    padding-top: var(--s-xl);
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.8rem;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: 120px; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-portrait { margin-top: var(--s-2xl); }
    .portrait-float-1 { left: 5%; }
    .portrait-float-2 { right: 5%; }
    .about-layout { grid-template-columns: 1fr; gap: var(--s-2xl); }
    .reattach-layout { grid-template-columns: 1fr; gap: var(--s-2xl); }
    .network-layout { grid-template-columns: 1fr; gap: var(--s-2xl); }
    .contact-layout { grid-template-columns: 1fr; gap: var(--s-2xl); }
}

@media (max-width: 768px) {
    .specs-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-md); }
    .spec-card { padding: var(--s-xl); }
    .process-cards { flex-direction: column; align-items: center; }
    .process-card { max-width: 100%; width: 100%; }
    .process-connector { transform: rotate(90deg); padding: var(--s-sm) 0; }
    .network-pills { grid-template-columns: 1fr; }
    .reattach-highlights { flex-direction: row; flex-wrap: wrap; gap: var(--s-md); }
    .highlight-card { flex: 1; min-width: 160px; }
    .footer-inner { flex-direction: column; }
    .footer-links { flex-direction: column; gap: var(--s-sm); }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(253, 252, 250, 0.97);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--s-2xl);
        z-index: 100;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1.2rem; }
    .nav-toggle { display: flex; }

    .hero h1 { font-size: 2.2rem; }
    .portrait-frame { width: 260px; height: 320px; }

    .specs-grid { grid-template-columns: 1fr; }
    .spec-card { padding: var(--s-lg); }

    .reattach-highlights { flex-direction: column; }

    .billing-banner { flex-direction: column; gap: var(--s-md); }
}
