/* =========================================================================
   ANCHORPOINT1: VOORDELEN SECTION REDESIGN
   Supports Variants: .layout-a (Default), .layout-b, .layout-c
   ========================================================================= */

/* --- Base Section Styles --- */
.voordelen-section {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
    background-color: #1a1a2e;
    /* Deep purple/dark base fallback */
}

.voordelen-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    gap: 4rem;
    align-items: center;
}

/* --- Typography & Text Column --- */
.voordelen-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Badge Pill */
.badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 9999px;
    color: #a5b4fc;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.1);
}

/* Headings */
.voordelen-section h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.text-gradient {
    background: linear-gradient(135deg, #c084fc 0%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheading {
    font-size: 1.1rem;
    color: #cbd5e1;
    /* Slate-300 */
    max-width: 500px;
    line-height: 1.6;
}

/* --- Benefit Bullets List --- */
.benefit-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1rem 0 2rem;
}

.benefit-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.icon-box {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-bullets li:hover .icon-box {
    transform: scale(1.1) rotate(3deg);
    background: rgba(192, 132, 252, 0.15);
    border-color: rgba(192, 132, 252, 0.3);
}

.benefit-bullets .text {
    display: flex;
    flex-direction: column;
}

.benefit-bullets strong {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.benefit-bullets span {
    color: #94a3b8;
    /* Slate-400 */
    font-size: 0.95rem;
}

/* --- CTAs --- */
.cta-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.btn-primary-glow {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-size: 1.05rem;
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.5);
    filter: brightness(1.1);
}

.btn-secondary-link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary-link:hover {
    color: #f472b6;
    border-bottom-color: #f472b6;
    gap: 0.75rem;
    /* arrow slide effect */
}

/* --- Trust Strip --- */
.trust-strip {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #64748b;
    /* Slate-500 */
}

.trust-strip span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.check-sm {
    color: #22c55e;
    /* Green-500 */
    font-weight: 800;
}

/* --- Visual Column Base --- */
.voordelen-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

/* =========================================================================
   VARIANTS LOGIC
   ========================================================================= */

/* --- VARIANT A: GLOW HERO (Default) --- */
.layout-a .voordelen-container {
    grid-template-columns: 1fr 1fr;
}

.layout-a .visual-variant-b {
    display: none;
}

.layout-a .visual-variant-a {
    display: block;
    position: relative;
}

/* Main Glass Card (Var A) */
.glass-card.main-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    width: 320px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 5;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.avatar-circle {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.card-header h4 {
    margin: 0;
    color: #fff;
    font-size: 1.1rem;
}

.status-dot {
    font-size: 0.8rem;
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.status-dot::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
}

.earnings-display {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.earnings-display .label {
    font-size: 0.85rem;
    color: #94a3b8;
}

.earnings-display .amount {
    font-family: monospace;
    /* number alignment */
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.graph-line {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #22c55e 0%, #3b82f6 100%);
    border-radius: 2px;
    position: relative;
}

.graph-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff;
}

/* Floating Mini Cards */
.mini-card {
    position: absolute;
    background: rgba(30, 27, 75, 0.9);
    /* Dark blue-ish */
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: #e2e8f0;
    z-index: 6;
    font-size: 0.9rem;
}

.card-float-1 {
    top: -20px;
    right: -30px;
}

.card-float-2 {
    bottom: -10px;
    left: -20px;
}

/* Animations */
@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes floating-delayed {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

.floating-delayed {
    animation: floating-delayed 5s ease-in-out infinite 1s;
}

.floating-delayed-2 {
    animation: floating 7s ease-in-out infinite 2s;
}


/* --- VARIANT B: SPLIT CARDS GRID --- */
.layout-b .visual-variant-a {
    display: none;
}

.layout-b .visual-variant-b {
    display: grid;
}

.layout-b .voordelen-container {
    grid-template-columns: 1fr 1fr;
}

.layout-b .benefit-bullets {
    /* Optional: hide list in Var B if desire pure grid focus */
    display: none;
}

.grid-2x2 {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
}

.feature-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.4);
    transform: scale(1.05);
}

.box-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.feature-box h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.feature-box p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.4;
    margin: 0;
}


/* --- VARIANT C: CENTERED --- */
.layout-c .voordelen-container {
    grid-template-columns: 1fr;
    text-align: center;
}

.layout-c .voordelen-text {
    align-items: center;
    /* Center content */
}

.layout-c .subheading {
    margin: 0 auto;
}

.layout-c .benefit-bullets {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.layout-c .cta-group {
    justify-content: center;
}

.layout-c .voordelen-visual {
    /* In centered layout, we might move visual elements or hide strictly side elements
       For simplicity, let's hide visual-variant-a for a clean list focus 
       OR re-purpose it inline. 
    */
    display: none;
}


/* --- Background Glow Effects (CSS-only) --- */
.glow-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.blob-1 {
    background: radial-gradient(circle, #4f46e5 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.blob-2 {
    background: radial-gradient(circle, #db2777 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {

    .voordelen-container,
    .layout-a .voordelen-container,
    .layout-b .voordelen-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

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

    .benefit-bullets {
        align-items: flex-start;
        text-align: left;
    }

    .cta-group {
        justify-content: center;
    }

    .layout-a .visual-variant-a {
        margin-top: 2rem;
    }

    /* Center the stacked cards on mobile */
    .glass-card.main-card {
        margin: 0 auto;
    }
}