/* =================================
   CSS VARIABLES & RESET
   ================================= */

:root {
    --color-bg: #F6F7F5;
    --color-text: #1F2933;
    --color-accent: #F59E0B;
    --color-accent-alt: #B08C3B;
    --color-border: #E5E7EB;
    --color-white: #FFFFFF;
    --color-gray-light: #F9FAFB;
    --color-gray-medium: #D1D5DB;
    
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --transition-base: 200ms ease;
    --transition-slow: 400ms ease;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    font-weight: 400;
}

.container {
    max-width: 1152px; /* max-w-6xl equivalent */
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

/* =================================
   TYPOGRAPHY
   ================================= */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
}

h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
}

h2 {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 600;
    margin-bottom: 32px;
}

h3 {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 600;
}

.section-title {
    text-align: center;
    font-weight: 600;
}

/* =================================
   BUTTONS
   ================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--color-accent-alt);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-gray-light);
    border-color: var(--color-accent);
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

/* =================================
   NAVBAR
   ================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(246, 247, 245, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    transition: all var(--transition-base);
    height: 80px;
    min-height: 80px;
    max-height: 80px;
    overflow: visible;
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    transition: all var(--transition-base);
    height: 80px;
    min-height: 80px;
    max-height: 80px;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity var(--transition-base);
}

.logo:hover {
    opacity: 0.8;
}

.logo-text {
    font-size: 26px;
    color: var(--color-text);
    letter-spacing: -0.8px;
    font-weight: 700;
    line-height: 1;
}

.logo-text .logo-accent {
    color: var(--color-accent);
}

@media (max-width: 640px) {
    .logo-text {
        font-size: 22px;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-base);
}

.nav-link:hover {
    color: var(--color-accent);
}

.navbar .btn {
    padding: 10px 24px;
    font-size: 15px;
}

@media (max-width: 640px) {
    .nav-links {
        gap: 16px;
    }
    
    .nav-link {
        display: none;
    }
    
    .navbar .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* =================================
   SECTION SPACING
   ================================= */

section {
    padding: 64px 0; /* py-16 = 4rem = 64px */
}

@media (max-width: 768px) {
    section {
        padding: 40px 0; /* py-10 = 2.5rem = 40px */
    }
}

/* =================================
   HERO SECTION
   ================================= */

.hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    animation: fadeInUp 600ms ease;
}

.hero-title {
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--color-text);
    opacity: 0.8;
    margin-bottom: 16px;
    font-weight: 400;
}

.hero-description {
    font-size: 16px;
    color: var(--color-text);
    opacity: 0.7;
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-description-second {
    margin-top: 16px;
    margin-bottom: 24px;
}

.hero-features {
    margin-bottom: 32px;
}

.hero-features p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--color-text);
    opacity: 0.7;
    margin-bottom: 8px;
    font-weight: 400;
}

.hero-feature-icon {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.hero-trust {
    font-size: 14px;
    color: var(--color-text);
    opacity: 0.6;
    margin-bottom: 32px;
}

.hero-visual {
    position: relative;
    animation: fadeInUp 600ms ease 200ms both;
}

.device-mockup {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
}

.mockup-screen {
    background: var(--color-gray-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    position: relative;
}

.mockup-content {
    height: 200%;
    background: linear-gradient(180deg, 
        var(--color-white) 0%,
        var(--color-gray-light) 50%,
        var(--color-white) 100%);
    animation: scrollMockup 20s linear infinite;
}

.mockup-placeholder {
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mockup-image {
    width: 120%;
    height: 120%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: scale(1.2);
}

@keyframes scrollMockup {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-50%);
    }
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, 
        rgba(245, 158, 11, 0.15) 0%,
        transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
    z-index: 1;
}

/* Floating shapes background animation */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: var(--color-accent);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: var(--color-accent-alt);
    top: 60%;
    right: 10%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--color-accent);
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
    animation-duration: 22s;
    opacity: 0.08;
}

.shape-4 {
    width: 60px;
    height: 60px;
    background: var(--color-accent-alt);
    top: 30%;
    right: 30%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.shape-5 {
    width: 100px;
    height: 100px;
    background: var(--color-accent);
    bottom: 40%;
    right: 20%;
    animation-delay: 3s;
    animation-duration: 20s;
    opacity: 0.12;
}

.shape-6 {
    width: 70px;
    height: 70px;
    background: var(--color-accent-alt);
    top: 70%;
    left: 25%;
    animation-delay: 5s;
    animation-duration: 17s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -40px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 30px) scale(0.9);
    }
    75% {
        transform: translate(40px, 20px) scale(1.05);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================
   SUBHEADLINE - QUOTE STYLE
   ================================= */

.subheadline-section {
    padding: 64px 0;
    background: var(--color-bg);
    position: relative;
}

.subheadline-wrapper {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    padding: 48px 32px;
    border-left: 3px solid var(--color-accent);
    border-right: 3px solid var(--color-accent);
    border-radius: 4px;
}

.subheadline-accent {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}

.subheadline-quote {
    margin: 0;
    padding: 0;
    border: none;
    text-align: center;
    position: relative;
}

.subheadline-main {
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.65;
    color: var(--color-text);
    font-weight: 400;
    margin: 24px 0 28px 0;
    font-style: normal;
    letter-spacing: -0.2px;
}

.subheadline-footer {
    margin: 0;
    padding: 0;
    border: none;
}

.subheadline-footer-text {
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.7;
    color: var(--color-text);
    opacity: 0.7;
    font-weight: 400;
    margin: 0;
    font-style: normal;
    letter-spacing: -0.1px;
}

@media (max-width: 768px) {
    .subheadline-section {
        padding: 48px 0;
    }
    
    .subheadline-wrapper {
        padding: 40px 0;
    }
    
    .subheadline-quote-mark {
        width: 48px;
        height: 48px;
    }
    
    .subheadline-main {
        margin-bottom: 24px;
    }
    
    .subheadline-divider {
        margin-top: 32px;
        width: 60px;
    }
}

@media (max-width: 768px) {
    .subheadline {
        font-size: 16px;
    }
}

/* =================================
   TARGET GROUPS
   ================================= */

.target-groups-section {
    padding: 40px 0;
    background: var(--color-bg);
}

.target-groups-section .section-title {
    margin-bottom: 24px;
    font-size: clamp(20px, 2.5vw, 26px);
}

.target-groups-note {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--color-text);
    opacity: 0.7;
    font-weight: 400;
}

/* =================================
   TRUST STRIP
   ================================= */

.trust-strip {
    background: var(--color-white);
    padding: 40px 0;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: 24px 0;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    padding: 0 48px;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text);
    opacity: 0.7;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .marquee-item {
        padding: 0 32px;
        font-size: 16px;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.trust-badge {
    text-align: center;
    padding: 24px; /* p-5 = 1.25rem = 20px, maar iets meer voor comfort */
    background: var(--color-gray-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.trust-badge h3 {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 8px;
}

.trust-badge p {
    font-weight: 400;
}

.trust-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.badge-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    margin-bottom: 16px;
    stroke-width: 2;
}

.trust-badge h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.trust-badge p {
    font-size: 14px;
    color: var(--color-text);
    opacity: 0.7;
}

/* =================================
   PICKER SECTION
   ================================= */

.picker-section {
    /* Section padding handled by global section rule */
}

.picker-container {
    max-width: 900px;
    margin: 0 auto;
}

.picker-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
}

.picker-chip {
    padding: 6px 12px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    cursor: pointer;
    transition: all var(--transition-base);
    color: var(--color-text);
}

.picker-chip:hover {
    border-color: var(--color-accent);
    background: var(--color-gray-light);
}

.picker-chip.active {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.picker-result {
    position: relative;
    min-height: 280px;
}

.picker-result-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--transition-slow);
    background: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.picker-result-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.picker-result-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .picker-result-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.picker-result-left h3 {
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 18px;
}

.picker-result-content ul {
    list-style: none;
    margin: 0;
}

.picker-result-content li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    font-weight: 400;
}

.picker-result-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 600;
}

.picker-result-right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.picker-meta {
    text-align: right;
}

.picker-delivery {
    font-size: 14px;
    color: var(--color-text);
    opacity: 0.7;
    margin-bottom: 8px;
    font-weight: 400;
}

.picker-price-small {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
}

.picker-price-small::before {
    content: "Vanaf ";
    font-size: 14px;
    font-weight: 400;
    opacity: 0.7;
}

/* =================================
   FEATURES - BENTO GRID
   ================================= */

.features-section {
    background: var(--color-white);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px; /* gap-8 = 2rem = 32px, maar 24px is beter voor compacte layout */
}

.bento-card {
    background: var(--color-gray-light);
    padding: 24px; /* p-5 */
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.bento-card h3 {
    font-weight: 500;
    font-size: 18px;
}

.bento-card p {
    font-weight: 400;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.bento-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    margin-bottom: 16px;
    stroke-width: 2;
}

.bento-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.bento-card p {
    font-size: 15px;
    color: var(--color-text);
    opacity: 0.7;
    line-height: 1.6;
}

/* =================================
   STEPPER SECTION
   ================================= */

.stepper-section {
    /* Section padding handled by global section rule */
}

.stepper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.stepper::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 48px;
    bottom: 48px;
    width: 2px;
    background: var(--color-border);
    z-index: 0;
}

@media (max-width: 768px) {
    .stepper::before {
        display: none;
    }
}

.step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
    opacity: 0.5;
    transition: opacity var(--transition-base);
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.step.active .step-number {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-content h3 {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 500;
}

.step-content p {
    color: var(--color-text);
    opacity: 0.7;
    font-size: 15px;
    font-weight: 400;
}

/* =================================
   EXAMPLES SECTION
   ================================= */

.examples-section {
    background: var(--color-white);
}

.examples-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 24px;
}

.examples-carousel::-webkit-scrollbar {
    height: 8px;
}

.examples-carousel::-webkit-scrollbar-track {
    background: var(--color-gray-light);
    border-radius: 4px;
}

.examples-carousel::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 4px;
}

.carousel-track {
    display: flex;
    gap: 24px;
    padding: 24px 0;
}

.example-card {
    flex: 0 0 calc(100% - 48px);
    max-width: 400px;
    scroll-snap-align: start;
    background: var(--color-gray-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

@media (min-width: 640px) {
    .example-card {
        flex: 0 0 calc(50% - 24px);
    }
}

@media (min-width: 968px) {
    .example-card {
        flex: 0 0 calc(33.333% - 32px);
    }
}

.example-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.example-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: var(--color-white);
    overflow: hidden;
}

.example-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(245, 158, 11, 0.1) 0%,
        rgba(176, 140, 59, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--color-text);
    opacity: 0.5;
}

.example-placeholder.large {
    font-size: 18px;
}

.example-label {
    padding: 16px 24px 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.example-bullets {
    list-style: none;
    padding: 0 24px 24px;
}

.example-bullets li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    color: var(--color-text);
    opacity: 0.7;
}

.example-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.example-card .btn {
    margin: 0 24px 24px;
    width: calc(100% - 48px);
    text-decoration: none;
    display: inline-flex;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 41, 51, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    z-index: 1;
    animation: fadeInUp 300ms ease;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--color-gray-light);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    color: var(--color-text);
}

.modal-close:hover {
    background: var(--color-border);
    transform: rotate(90deg);
}

.modal-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-bottom: 32px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.modal-actions {
    text-align: center;
}

/* =================================
   PRICING SECTION
   ================================= */

.pricing-section {
    /* Section padding handled by global section rule */
}

.pricing-main {
    max-width: 600px;
    margin: 0 auto 24px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.pricing-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px; /* p-5 equivalent */
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 16px;
}

.pricing-header h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
}

.pricing-description {
    text-align: center;
    margin-bottom: 24px;
    color: var(--color-text);
    opacity: 0.7;
    font-size: 15px;
    font-weight: 400;
    padding: 0 20px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.pricing-amount .price {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-accent);
}

.pricing-amount .period {
    font-size: 16px;
    color: var(--color-text);
    opacity: 0.6;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.pricing-card .btn {
    width: 100%;
}

.pricing-upgrades {
    text-align: center;
    margin-bottom: 16px;
}

.upgrades-text {
    font-size: 14px;
    color: var(--color-text);
    opacity: 0.7;
    font-weight: 400;
}

.upgrades-link {
    background: none;
    border: none;
    color: var(--color-accent);
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    font-family: var(--font-family);
}

.upgrades-link:hover {
    color: var(--color-accent-alt);
}

.pricing-note {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-note p {
    font-size: 14px;
    color: var(--color-text);
    opacity: 0.6;
    margin-bottom: 8px;
    font-weight: 400;
}

/* Upgrades Modal */
.upgrades-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.upgrades-modal.active {
    display: flex;
}

.upgrades-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 41, 51, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.upgrades-modal-content {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    z-index: 1;
    animation: fadeInUp 300ms ease;
}

@media (max-width: 640px) {
    .upgrades-modal-content {
        padding: 20px;
        margin: 16px;
    }
}

.upgrades-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--color-gray-light);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    color: var(--color-text);
}

.upgrades-modal-close:hover {
    background: var(--color-border);
    transform: rotate(90deg);
}

.upgrades-modal-content h3 {
    margin-bottom: 24px;
    font-weight: 600;
}

.upgrades-list {
    margin-bottom: 24px;
}

.upgrade-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.upgrade-item:last-child {
    border-bottom: none;
}

.upgrade-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.upgrade-item strong {
    font-weight: 500;
    font-size: 16px;
    color: var(--color-text);
    display: block;
}

.upgrade-item p {
    font-size: 14px;
    color: var(--color-text);
    opacity: 0.7;
    margin: 0;
    font-weight: 400;
}

.upgrade-price {
    font-weight: 600;
    color: var(--color-accent);
    font-size: 16px;
    white-space: nowrap;
    align-self: flex-start;
}

@media (max-width: 640px) {
    .upgrade-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .upgrade-price {
        align-self: flex-start;
    }
}

.upgrades-note {
    font-size: 14px;
    color: var(--color-text);
    opacity: 0.6;
    font-weight: 400;
    text-align: center;
    margin-top: 16px;
}

/* =================================
   FAQ SECTION
   ================================= */

.faq-section {
    background: var(--color-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-base);
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform var(--transition-base);
    color: var(--color-accent);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--color-text);
    opacity: 0.7;
    line-height: 1.7;
    font-size: 16px;
}

/* =================================
   FINAL CTA
   ================================= */

.final-cta {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.cta-title {
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--color-text);
    opacity: 0.7;
    margin-bottom: 32px;
    font-weight: 400;
}

.cta-gradient {
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, 
        rgba(245, 158, 11, 0.1) 0%,
        transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite;
    z-index: 1;
}

/* =================================
   FORM SECTION
   ================================= */

.form-section {
    background: var(--color-white);
}

.multi-step-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-gray-light);
    padding: 32px; /* p-5 equivalent */
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.form-progress {
    margin-bottom: 48px;
    position: relative;
}

.progress-bar {
    position: absolute;
    top: 20px;
    left: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-slow);
    z-index: 1;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.progress-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--color-text);
    transition: all var(--transition-base);
}

.progress-step.active {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.progress-step.completed {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 400ms ease;
}

.form-step h3 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 14px;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    font-family: var(--font-family);
    font-size: 16px; /* Minimaal 16px om zoom te voorkomen op mobiel */
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    color: var(--color-text);
    transition: all var(--transition-base);
}

@media (min-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 15px; /* Op desktop iets kleiner */
    }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}


.form-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.form-buttons .btn {
    flex: 1;
}

.form-success {
    display: none;
    text-align: center;
    padding: 48px 0;
}

.form-success.active {
    display: block;
    animation: fadeInUp 400ms ease;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    position: relative;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: var(--color-accent);
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--color-accent);
    animation: scaleSuccess 0.3s ease-in-out 0.9s both;
}

.success-checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: var(--color-accent);
    fill: none;
    animation: strokeSuccess 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: strokeSuccess 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes strokeSuccess {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scaleSuccess {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fillSuccess {
    100% {
        background: var(--color-accent);
    }
}

.form-success h3 {
    margin-bottom: 12px;
    font-weight: 600;
}

.form-success p {
    color: var(--color-text);
    opacity: 0.7;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 24px;
}

.success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =================================
   FOOTER
   ================================= */

.footer {
    padding: 48px 0 32px;
    border-top: 1px solid var(--color-border);
    background: var(--color-white);
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 8px;
    transition: opacity var(--transition-base);
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-logo-text {
    font-size: 20px;
    color: var(--color-text);
    letter-spacing: -0.6px;
    font-weight: 700;
    line-height: 1;
}

.footer-logo-text .logo-accent {
    color: var(--color-accent);
}

.footer-brand p {
    font-size: 14px;
    color: var(--color-text);
    opacity: 0.7;
    font-weight: 400;
}

.footer-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.footer-links a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text);
    opacity: 0.6;
    font-size: 13px;
    font-weight: 400;
}

@media (max-width: 640px) {
    .footer {
        padding: 40px 0 24px;
        margin-top: 60px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 24px;
        padding-bottom: 24px;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* =================================
   RESPONSIVE ADJUSTMENTS
   ================================= */

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .section-title {
        margin-bottom: 24px;
    }
    
    .picker-controls {
        flex-direction: column;
    }
    
    .picker-chip {
        width: 100%;
    }
    
    .picker-result-content {
        padding: 24px;
    }
    
    .picker-result-grid {
        grid-template-columns: 1fr;
    }
    
    .picker-result-right {
        justify-content: flex-start;
    }
    
    .picker-meta {
        text-align: left;
    }
    
    .multi-step-form {
        padding: 24px;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .modal-content {
        padding: 24px;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .success-actions .btn {
        width: 100%;
    }
}

/* Disable animations on mobile for performance (except marquee and background) */
@media (max-width: 640px) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    /* Keep marquee animation on mobile */
    .marquee-content {
        animation: marquee 30s linear infinite !important;
        animation-duration: 30s !important;
        animation-iteration-count: infinite !important;
    }
    
    /* Keep background animations subtle */
    body::before {
        animation: backgroundPulse 25s ease-in-out infinite !important;
    }
    
    .floating-shapes {
        opacity: 0.5;
    }
    
    .shape {
        animation-duration: 25s !important;
    }
}

