/* Base Design Tokens */
:root {
    --bg-main: #0a0a0c;
    --bg-secondary: rgba(20, 20, 24, 0.7);
    --bg-panel: rgba(25, 25, 32, 0.6);
    --bg-panel-hover: rgba(35, 35, 45, 0.8);

    --text-main: #f8f9fa;
    --text-muted: #a1a1aa;

    --accent-primary: #df8037;
    /* Oranje van banner */
    --accent-primary-hover: #cb4317;
    --accent-secondary: #ffe725;
    /* Geel gradient accent */
    --accent-glow: rgba(223, 128, 55, 0.25);

    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(255, 255, 255, 0.15);

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', 'Inter', system-ui, sans-serif;

    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

    --max-width: 1200px;
    --header-height: 80px;

    /* Mesh Gradient Colors */
    --mesh-1: rgba(223, 128, 55, 0.15);
    /* Accent primary */
    --mesh-2: rgba(255, 231, 37, 0.1);
    /* Accent secondary */
    --mesh-3: rgba(99, 102, 241, 0.1);
    /* Indigo/Purple hint */
}

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

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Noise Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Mesh Gradient Background */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-main);
}

.mesh-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: mesh-float 20s infinite alternate ease-in-out;
}

.mesh-1 {
    width: 600px;
    height: 600px;
    background: var(--mesh-1);
    top: -100px;
    right: -100px;
}

.mesh-2 {
    width: 500px;
    height: 500px;
    background: var(--mesh-2);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.mesh-3 {
    width: 400px;
    height: 400px;
    background: var(--mesh-3);
    top: 40%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes mesh-float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 100px) scale(1.1);
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: var(--max-width);
    padding: 0 1.5rem;
}

.container-sm {
    max-width: 800px;
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 300px);
    }
}

.bento-item {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.bento-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(223, 128, 55, 0.2);
    border-color: rgba(223, 128, 55, 0.5);
    z-index: 2;
}

.bento-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
    filter: brightness(0.7) contrast(1.1);
}

.bento-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.9) contrast(1.1);
}

.bento-item.eye4-item img {
    object-position: top;
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 12, 0.95) 0%, rgba(10, 10, 12, 0.4) 50%, rgba(10, 10, 12, 0) 100%);
    transition: opacity 0.4s ease;
    z-index: 1;
}

.bento-item:hover .bento-overlay {
    background: linear-gradient(to top, rgba(10, 10, 12, 0.98) 0%, rgba(223, 128, 55, 0.2) 60%, rgba(223, 128, 55, 0.05) 100%);
}

.bento-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item:hover .bento-content {
    transform: translateY(0);
}

.bento-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.bento-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transition: opacity 0.4s ease 0.1s;
    line-height: 1.5;
}

.bento-item:hover .bento-desc {
    opacity: 1;
}

/* Bento Item Sizing */
@media (min-width: 768px) {
    .bento-wide {
        grid-column: span 2;
    }

    .bento-tall {
        grid-row: span 2;
        grid-column: span 2;
    }

    .bento-standard {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .bento-tall {
        grid-column: span 2;
    }

    .bento-wide {
        grid-column: span 2;
    }
}

/* Glassmorphism Panels */
.glass-panel {
    background: var(--bg-panel);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2rem;
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-panel:hover {
    border-color: var(--border-highlight);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    outline: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 4px 14px 0 var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-highlight);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: background var(--transition-normal), padding var(--transition-normal);
}

.header.scrolled {
    background: rgba(10, 10, 12, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--accent-primary);
    font-weight: 400;
    letter-spacing: 0;
}

.nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover {
    color: var(--text-main);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-fast);
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--bg-main);
    z-index: 999;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2rem;
}

.mobile-nav-link {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Responsive defaults */
.sm-hidden {
    display: none;
}

@media (min-width: 768px) {
    .nav {
        display: block;
    }

    .mobile-menu-btn {
        display: none;
    }

    .sm-hidden {
        display: inline-flex;
    }

    .mobile-nav {
        display: none !important;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 6rem;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.blur-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(10, 10, 12, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.pointer-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(10, 10, 12, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
    transition: 0.1s ease;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1.2fr 1fr;
        text-align: left;
    }

    .hero-content {
        align-items: flex-start;
        display: flex;
        flex-direction: column;
    }

    .hero-profile {
        align-items: flex-start;
    }

    .hero-cta {
        justify-content: flex-start;
    }

    .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
    }
}

.hero-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.profile-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-primary);
    box-shadow: 0 8px 32px var(--accent-glow);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.word-rotate {
    display: inline-block;
    position: relative;
    height: 1.2em;
    vertical-align: bottom;
}

.word {
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    white-space: nowrap;
}

.word.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    font-family: var(--font-heading);
}

.stat-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Performance Card */
.hero-visual {
    perspective: 1000px;
    width: 100%;
}

.performance-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-highlight);
    border-radius: 1.5rem;
    padding: 0;
    overflow: hidden;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.performance-card:hover {
    transform: rotateY(0) rotateX(0) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 30px var(--accent-glow);
}

.card-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.card-header .dots {
    display: flex;
    gap: 6px;
}

.card-header .dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.card-header .url {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: monospace;
}

.card-body {
    padding: 2rem;
}

.dashboard-header {
    margin-bottom: 2rem;
}

.lead-counter .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.lead-counter .value-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lead-counter .value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.trend-up {
    width: 24px;
    height: 24px;
    color: #10b981;
}

/* Growth Chart */
.growth-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 100px;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 5px;
}

.bar-container {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.growth-chart .bar {
    width: 100%;
    background: rgba(223, 128, 55, 0.2);
    border-radius: 4px 4px 0 0;
    transition: height 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.growth-chart .bar.highlight {
    background: var(--accent-primary);
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Recent Activity */
.recent-activity {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid var(--border-subtle);
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.activity-icon.lead {
    width: 32px;
    height: 32px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    position: relative;
}

.activity-icon.lead::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #10b981;
    font-size: 0.8rem;
    font-weight: 900;
}

.activity-info {
    display: flex;
    flex-direction: column;
}

.activity-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
}

.activity-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.card-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-pill {
    padding: 0.4rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-pill::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
    color: var(--accent-primary);
}

.mouse {
    width: 22px;
    height: 35px;
    border: 2px solid currentColor;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.wheel {
    width: 3px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* UI Mockup Animation */
.hero-mockup {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.mockup-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4b5563;
}

.dots span:nth-child(1) {
    background: #ef4444;
}

.dots span:nth-child(2) {
    background: #f59e0b;
}

.dots span:nth-child(3) {
    background: #10b981;
}

.mockup-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skeleton-title {
    height: 24px;
    width: 40%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.skeleton-text {
    height: 12px;
    width: 80%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-chart {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    height: 120px;
}

.skeleton-chart .bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease-out;
}

.skeleton-chart .bar.active {
    background: var(--accent-primary);
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Features */
.features {
    background: var(--bg-main);
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

.feature-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.soft-panel {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.soft-panel:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(223, 128, 55, 0.15);
    border-color: rgba(223, 128, 55, 0.4);
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.section-header {
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
}

.feature-title {
    font-size: 1.25rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
}

.cta-panel {
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
    border-color: rgba(99, 102, 241, 0.3);
}

.cta-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(20, 20, 24, 0) 80%);
    pointer-events: none;
    z-index: 0;
}

.cta-panel>* {
    position: relative;
    z-index: 1;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 2rem auto;
}

@media (min-width: 640px) {
    .cta-form {
        flex-direction: row;
        max-width: 500px;
    }
}

.input-field {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
}

.input-field:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px var(--accent-glow);
}

.cta-note {
    font-size: 0.85rem;
}

/* Service & FAQ Styles */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-secondary);
    transition: var(--transition-normal);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-main);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-muted);
}

.faq-item.active {
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px var(--accent-glow);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.service-card {
    text-align: left;
    height: 100%;
}

.service-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.service-list li svg {
    width: 16px;
    height: 16px;
    color: var(--accent-primary);
}

/* Footer */
.footer {
    background: #050505;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-subtle);
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
    }
}

.footer-tagline {
    margin-top: 1rem;
    max-width: 250px;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col h4 {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.socials {
    display: flex;
    gap: 1rem;
}

.socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.socials a:hover {
    background: var(--accent-primary);
    color: white;
}

/* Removed old Portfolio Hover Effects */

/* Animations Pipeline */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Werkwijze */
.werkwijze-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .werkwijze-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .werkwijze-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.werkwijze-item {
    position: relative;
    padding: 2rem;
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
    border-radius: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.werkwijze-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.werkwijze-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-primary);
    opacity: 0.5;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.werkwijze-item-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}
/* Highlight Card Style */
.service-card.highlight {
    border-color: var(--accent-primary);
    background: linear-gradient(135deg, var(--bg-panel) 0%, rgba(223, 128, 55, 0.05) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(223, 128, 55, 0.1);
}

.service-card.highlight .feature-icon-wrapper {
    background: var(--accent-primary);
    color: white;
}

@media (min-width: 1200px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}
