/* ============================================
   MESTZAKEN.NL — Main Stylesheet
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --clr-earth: #2C3E2D;
    --clr-earth-deep: #1A2A1B;
    --clr-field: #4A7C59;
    --clr-field-light: #5E9E6E;
    --clr-wheat: #D4A843;
    --clr-wheat-light: #E8C56A;
    --clr-cream: #F5F0E8;
    --clr-cream-warm: #FBF7F0;
    --clr-white: #FFFFFF;
    --clr-text: #2B2B2B;
    --clr-text-muted: #6B7280;
    --clr-border: #E5DFD3;
    --clr-danger: #C0392B;
    --clr-sky: #87CEEB;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--clr-text);
    background: var(--clr-cream-warm);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    animation: pageFadeIn 0.3s ease forwards;
}

/* ===== GRAIN OVERLAY ===== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}


/* ===== UTILITY ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--clr-field);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--clr-field);
}

h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: var(--clr-earth-deep);
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    max-width: 560px;
}


/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--clr-field);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

.btn-primary:hover {
    background: var(--clr-earth);
    box-shadow: 0 6px 25px rgba(74, 124, 89, 0.4);
    transform: translateY(-2px);
}

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

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

.btn-white {
    background: white;
    color: var(--clr-field);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}


/* ===== ANIMATIONS ===== */
@keyframes pageFadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
@keyframes pageFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

@keyframes sway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

@keyframes grassWave {
    0%, 100% { transform: scaleY(1) rotate(0deg); }
    25% { transform: scaleY(1.05) rotate(1deg); }
    75% { transform: scaleY(0.98) rotate(-1deg); }
}

@keyframes tractorDrive {
    0% { transform: translateX(-120px); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(calc(100vw + 120px)); opacity: 0; }
}

@keyframes cloudFloat {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}

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

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

@keyframes drip {
    0% { opacity: 0.8; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(14px); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================
   NAVBAR
   ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
    padding: 10px 0;
}

.home #navbar.scrolled .nav-links a {
    color: var(--clr-text);
}
.home #navbar.scrolled .nav-links a:hover {
    color: var(--clr-field);
}

#navbar.scrolled .nav-links a {
    color: var(--clr-text);
}
#navbar.scrolled .nav-links a:hover {
    color: var(--clr-field);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    overflow: hidden;
}

.logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    color: var(--clr-earth-deep);
}

.logo-text span {
    color: var(--clr-field);
}

/* Logo wit op donkere page-hero navbars (niet homepage, niet sticky) */
#navbar:not(.scrolled) .logo-text {
    color: white;
}
#navbar:not(.scrolled) .logo-text span {
    color: var(--clr-wheat-light);
}
.home #navbar:not(.scrolled) .logo-text {
    color: var(--clr-earth-deep);
}
.home #navbar:not(.scrolled) .logo-text span {
    color: var(--clr-field);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.home .nav-links a {
    text-decoration: none;
    color: var(--clr-text);
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #FFF;
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-field);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--clr-field);
}

.nav-links .btn-primary::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    transition: var(--transition);
}

#navbar:not(.scrolled) .hamburger span {
    background: white;
}
.home #navbar:not(.scrolled) .hamburger span {
    background: var(--clr-text);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: calc(100vh - 93px);
    display: flex;
    flex-direction: column;
	justify-content: flex-start;
    position: relative;
    overflow: hidden;
    background: linear-gradient(175deg, var(--clr-cream-warm) 0%, #EAE5D9 60%, #D8E8D0 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 120px 0 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 124, 89, 0.1);
    border: 1px solid rgba(74, 124, 89, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--clr-field);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--clr-field-light);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.6rem, 6vw, 2.8rem);
    line-height: 1.1;
    color: var(--clr-earth-deep);
    margin-bottom: 24px;
    max-width: 700px;
    animation: fadeInUp 0.8s ease 0.15s forwards;
    opacity: 0;
}

.hero h1 em {
    color: var(--clr-field);
    font-style: italic;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--clr-text-muted);
    max-width: 520px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.45s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--clr-border);
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-stat h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--clr-field);
}

.hero-stat p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-top: 4px;
}


/* ===== HERO LANDSCAPE ===== */
.hero-landscape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 280px;
    pointer-events: none;
}

.hills {
    position: absolute;
    bottom: 0;
    left: -10%;
    right: -10%;
}

.hill {
    position: absolute;
    bottom: 0;
    border-radius: 50% 50% 0 0;
}

.hill-1 {
    width: 120%;
    height: 200px;
    background: linear-gradient(180deg, #7CB87F 0%, #5E9E6E 100%);
    left: -10%;
    bottom: -20px;
    z-index: 3;
}

.hill-2 {
    width: 80%;
    height: 160px;
    background: linear-gradient(180deg, #8CC98F 0%, #6EAE7E 100%);
    left: 30%;
    bottom: 10px;
    z-index: 2;
}

.hill-3 {
    width: 60%;
    height: 120px;
    background: linear-gradient(180deg, #A3D9A5 0%, #7CB87F 100%);
    left: -5%;
    bottom: 40px;
    z-index: 1;
}

.grass-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 4;
}

.grass-tuft {
    position: absolute;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to top, #4A7C59, #6EAE7E);
    border-radius: 50% 50% 0 0;
    transform-origin: bottom center;
}

/* Clouds */
.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    animation: cloudFloat 20s ease-in-out infinite alternate;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}

.cloud-1 {
    width: 120px;
    height: 40px;
    top: 15%;
    left: 10%;
    animation-delay: -5s;
}

.cloud-1::before { width: 50px; height: 50px; top: -25px; left: 20px; }
.cloud-1::after  { width: 35px; height: 35px; top: -15px; left: 55px; }

.cloud-2 {
    width: 100px;
    height: 35px;
    top: 10%;
    right: 15%;
    animation-delay: -10s;
    animation-duration: 25s;
}

.cloud-2::before { width: 45px; height: 45px; top: -22px; left: 15px; }
.cloud-2::after  { width: 30px; height: 30px; top: -12px; left: 50px; }

.cloud-3 {
    width: 80px;
    height: 28px;
    top: 22%;
    left: 55%;
    animation-delay: -15s;
    animation-duration: 30s;
}

.cloud-3::before { width: 35px; height: 35px; top: -18px; left: 12px; }
.cloud-3::after  { width: 25px; height: 25px; top: -10px; left: 40px; }

/* Tractor */
.tractor-container {
    position: absolute;
    bottom: 80px;
    z-index: 5;
    width: 260px;
    height: 80px;
    animation: tractorDrive 35s linear infinite;
}

.tractor {
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
    height: 80px;
}

/* Motorkap (voorkant) */
.tractor::before {
    content: '';
    position: absolute;
    bottom: 18px;
    right: 3px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #2E7D32, #388E3C);
    border-radius: 2px 6px 3px 2px;
    z-index: 1;
}

/* Grille / accent op motorkap */
.tractor::after {
    content: '';
    position: absolute;
    bottom: 19px;
    right: 0px;
    width: 18px;
    height: 3px;
    background: #1B5E20;
    border-radius: 1px;
    z-index: 1;
}

.tractor-body {
    position: absolute;
    bottom: 18px;
    left: 20px;
    width: 55px;
    height: 32px;
    background: linear-gradient(135deg, #2E7D32, #388E3C);
    border-radius: 4px 8px 2px 2px;
}

.tractor-cabin {
    position: absolute;
    bottom: 28px;
    left: 42px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    border-radius: 3px 6px 0 0;
}

.tractor-cabin::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    height: 14px;
    background: rgba(135, 206, 235, 0.6);
    border-radius: 2px 4px 0 0;
}

.tractor-wheel-big {
    position: absolute;
    bottom: 4px;
    left: 16px;
    width: 32px;
    height: 32px;
    background: #333;
    border-radius: 50%;
    border: 3px solid #555;
}

.tractor-wheel-big::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #888;
    border-radius: 50%;
}

.tractor-wheel-small {
    position: absolute;
    bottom: 8px;
    right: 0;
    width: 22px;
    height: 22px;
    background: #333;
    border-radius: 50%;
    border: 3px solid #555;
    z-index: 2;
}

.tractor-wheel-small::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 7px;
    height: 7px;
    background: #888;
    border-radius: 50%;
}

.tractor-exhaust {
    position: absolute;
    bottom: 50px;
    left: 25px;
    width: 4px;
    height: 12px;
    background: #555;
    border-radius: 2px;
}

/* ===== MESTWAGEN ===== */
.mestwagen {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 155px;
    height: 70px;
}
.mestwagen-dissel {
    position: absolute;
    right: -22px;
    bottom: 28px;
    width: 50px;
    height: 4px;
    background: #555;
    border-radius: 2px;
}
.mestwagen-dissel::after {
    content: '';
    position: absolute;
    right: -3px;
    top: -3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #555;
    background: #888;
}
.mestwagen-tank {
    position: absolute;
    left: 10px;
    bottom: 18px;
    width: 120px;
    height: 45px;
    background: linear-gradient(180deg, #5A7A8A, #4A6A7A);
    border-radius: 22px 22px 8px 8px;
    border: 2px solid #3A5A6A;
}
.mestwagen-tank::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 10px;
    right: 10px;
    height: 8px;
    background: rgba(255,255,255,0.12);
    border-radius: 10px;
}
.mestwagen-tank::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 30px;
    width: 3px;
    background: rgba(0,0,0,0.15);
    box-shadow: 25px 0 0 rgba(0,0,0,0.15), 50px 0 0 rgba(0,0,0,0.15), 75px 0 0 rgba(0,0,0,0.15);
}
.mestwagen-vul {
    position: absolute;
    left: 55px;
    bottom: 60px;
    width: 14px;
    height: 8px;
    background: #3A5A6A;
    border-radius: 4px 4px 0 0;
    border: 1.5px solid #2A4A5A;
}
.mestwagen-wheel-l {
    position: absolute;
    bottom: 4px;
    left: 20px;
    width: 28px;
    height: 28px;
    background: #333;
    border-radius: 50%;
    border: 3px solid #555;
}
.mestwagen-wheel-l::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 8px; height: 8px;
    background: #888;
    border-radius: 50%;
}
.mestwagen-wheel-r {
    position: absolute;
    bottom: 4px;
    right: 20px;
    width: 28px;
    height: 28px;
    background: #333;
    border-radius: 50%;
    border: 3px solid #555;
}
.mestwagen-wheel-r::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 8px; height: 8px;
    background: #888;
    border-radius: 50%;
}
.mestwagen-sproei {
    position: absolute;
    left: 2px;
    bottom: 14px;
    width: 6px;
    height: 20px;
    background: #3A5A6A;
    border-radius: 3px;
}
.mestwagen-sproei::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: -6px;
    width: 18px;
    height: 4px;
    background: #3A5A6A;
    border-radius: 2px;
}
.mestwagen-drip {
    position: absolute;
    left: -6px;
    bottom: 4px;
    width: 3px;
    height: 6px;
    background: #6B4E2E;
    border-radius: 0 0 3px 3px;
    opacity: 0.6;
    animation: drip 0.8s ease-in infinite;
}
.mestwagen-drip:nth-child(2) {
    left: -1px;
    animation-delay: 0.3s;
}
.mestwagen-drip:nth-child(3) {
    left: 4px;
    animation-delay: 0.6s;
}


/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: var(--clr-white);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    padding: 28px 0;
    position: relative;
    z-index: 10;
}

.trust-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

.trust-icon {
    width: 36px;
    height: 36px;
    background: var(--clr-cream);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}


/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 120px 0;
    background: var(--clr-cream-warm);
}

.services-header {
    text-align: center;
    margin-bottom: 72px;
}

.services-header .subtitle {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    border: 1px solid var(--clr-border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-field), var(--clr-wheat));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.1), rgba(74, 124, 89, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.service-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--clr-earth-deep);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--clr-text-muted);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-field);
    text-decoration: none;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}


/* ============================================
   CALCULATOR CTA
   ============================================ */
.calculator-cta {
    padding: 100px 0;
    background: var(--clr-earth-deep);
    position: relative;
    overflow: hidden;
}

.calculator-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.calculator-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.calculator-text h2 {
    color: var(--clr-white);
}

.calculator-text .subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.calculator-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.calc-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.calc-feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(74, 124, 89, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.calculator-preview {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(10px);
}

.calc-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-preview-title {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.calc-preview-badge {
    background: rgba(74, 124, 89, 0.3);
    color: var(--clr-field-light);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.calc-row-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.calc-row-value {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.calc-result {
    margin-top: 24px;
    padding: 20px;
    background: rgba(74, 124, 89, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(74, 124, 89, 0.3);
}

.calc-result-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calc-result-value {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--clr-wheat-light);
    margin-top: 4px;
}

.calc-result-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 0.82rem;
    color: var(--clr-field-light);
    font-weight: 500;
}


/* ============================================
   KNOWLEDGE HUB
   ============================================ */
.knowledge {
    padding: 120px 0;
    background: var(--clr-white);
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.knowledge-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--clr-cream-warm);
    transition: var(--transition);
    border: 1px solid var(--clr-border);
}

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

.knowledge-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.knowledge-img-1 { background: linear-gradient(135deg, #7CB87F 0%, #4A7C59 50%, #2C3E2D 100%); }
.knowledge-img-2 { background: linear-gradient(135deg, #D4A843 0%, #B8892E 50%, #8B6914 100%); }
.knowledge-img-3 { background: linear-gradient(135deg, #5A8FBF 0%, #3A6F9F 50%, #1A4F7F 100%); }

.knowledge-emoji {
    font-size: 4rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.knowledge-body {
    padding: 28px;
}

.knowledge-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-field);
    background: rgba(74, 124, 89, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.knowledge-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--clr-earth-deep);
}

.knowledge-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--clr-text-muted);
}

.knowledge-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--clr-border);
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}


/* ============================================
   REGULATIONS
   ============================================ */
.regulations {
    padding: 120px 0;
    background: var(--clr-cream-warm);
    position: relative;
}

.regulations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}

.regs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 56px;
}

.regs-timeline {
    position: relative;
    padding-left: 32px;
}

.regs-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--clr-field), var(--clr-wheat));
}

.reg-item {
    position: relative;
    padding: 0 0 40px 28px;
}

.reg-item:last-child {
    padding-bottom: 0;
}

.reg-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--clr-field);
    border-radius: 50%;
    border: 3px solid var(--clr-cream-warm);
    box-shadow: 0 0 0 2px var(--clr-field);
}

.reg-date {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-field);
    margin-bottom: 8px;
}

.reg-item h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    color: var(--clr-earth-deep);
    margin-bottom: 8px;
}

.reg-item p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--clr-text-muted);
}

.regs-sidebar {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    overflow: hidden;
}

.regs-sidebar-header {
    padding: 28px 28px 20px;
    border-bottom: 1px solid var(--clr-border);
}

.regs-sidebar-header h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    color: var(--clr-earth-deep);
}

.regs-sidebar-header p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-top: 6px;
}

.alert-item {
    padding: 20px 28px;
    border-bottom: 1px solid var(--clr-border);
    display: flex;
    gap: 14px;
    transition: var(--transition);
}

.alert-item:hover {
    background: var(--clr-cream);
}

.alert-item:last-child {
    border-bottom: none;
}

.alert-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.alert-dot.urgent  { background: var(--clr-danger); }
.alert-dot.info    { background: var(--clr-field); }
.alert-dot.warning { background: var(--clr-wheat); }

.alert-content h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--clr-earth-deep);
    margin-bottom: 4px;
}

.alert-content p {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 120px 0;
    background: var(--clr-white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-header .subtitle {
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--clr-cream-warm);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--clr-border);
    transition: var(--transition);
}

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

.testimonial-stars {
    color: var(--clr-wheat);
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--clr-text);
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--clr-field), var(--clr-field-light));
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--clr-earth-deep);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-top: 2px;
}


/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: 120px 0;
    background: var(--clr-cream-warm);
}

.pricing-header {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-header .subtitle {
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--clr-border);
    transition: var(--transition);
    position: relative;
}

.pricing-card.popular {
    border-color: var(--clr-field);
    box-shadow: var(--shadow-lg);
    transform: scale(1.04);
}

.pricing-card.popular::before {
    content: 'Meest gekozen';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-field);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    color: var(--clr-earth-deep);
    margin-bottom: 8px;
}

.pricing-card .price {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    color: var(--clr-field);
    margin: 20px 0;
}

.pricing-card .price span {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--clr-text-muted);
    font-weight: 400;
}

.pricing-card .price-desc {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.92rem;
    color: var(--clr-text);
    border-bottom: 1px solid var(--clr-border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    color: var(--clr-field);
    font-weight: 700;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}


/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 120px 0;
    background: var(--clr-white);
}

.faq-header {
    text-align: center;
    margin-bottom: 56px;
}

.faq-header .subtitle {
    margin: 0 auto;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--clr-border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--clr-earth-deep);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--clr-field);
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--clr-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    font-size: 1.2rem;
    color: var(--clr-field);
}

.faq-item.active .faq-icon {
    background: var(--clr-field);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--clr-text-muted);
}


/* ============================================
   CTA
   ============================================ */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--clr-field) 0%, var(--clr-earth) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.15), transparent 70%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 16px;
}

.cta .subtitle {
    color: rgba(255, 255, 255, 0.75);
    margin: 0 auto 40px;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--clr-earth-deep);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer-col h4 {
    color: white;
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--clr-wheat-light);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-illustration {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 1.5rem;
    opacity: 0.4;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid,
    .knowledge-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .calculator-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-links.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--clr-earth-deep);
        padding: 24px;
        gap: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        z-index: 100;
    }

    .nav-links.show li {
        width: 100%;
    }

    .nav-links.show a {
        padding: 12px 0;
        font-size: 1.05rem;
        display: block;
        text-align: left;
    }
    
    .nav-links.show a,
    .scrolled .nav-links.show a {
        color: white !important;
    }
    
    .nav-links.show a::after {
        left: 0;
        transform: none;
    }
    
    .hamburger {
        display: flex;
    }

    .services-grid,
    .knowledge-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-top: 40px;
        text-align: center;
    }

    .hero-badge {
        justify-content: center;
        margin-top: 24px;
    }

    .hero-description {
        margin: 0 auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        margin: 40px 0;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
        width: 100%;
    }

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

    .hero h1 {
        font-size: 2.4rem;
    }

 	.footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

	.footer-col {
        padding-top: 24px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .footer-col:last-child {
        grid-column: 1 / -1;
        text-align: center;
        padding-top: 32px;
        padding-bottom: 32px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .footer-bottom {
        padding-top: 24px;
        border-top: 0;
    }

    .footer-col h4 {
        font-size: 1.05rem;
        margin-bottom: 12px;
    }

    .footer-col ul li a {
        font-size: 0.95rem;
        padding: 6px 0;
        display: inline-block;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .trust-bar .container {
        gap: 24px;
    }
     .split-text .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        text-align: center;
        margin: 24px auto 0;
        display: flex;
    }
	.nav-links.show .btn-primary {
        padding: 12px 24px;
        text-align: center;
        border-radius: 8px;
        width: 100%;
    }
}
