:root {
    /* Kleurenpalet Gively */
    --gv-purple: #3c096c;
    --gv-pink: #7E2D8A;
    --gv-light-purple: #f6eeff;
    --gv-coral: #ea8b81;
    --gv-coral-light: #FCEFEB;
    --gv-off-white: #fcfaff;
    --gv-white: #ffffff;
    --gv-black: #1a1a2e;
    
    /* Afgeronde hoeken */
    --gv-border-radius: 3rem;
}

/* Zorg dat de body de volledige hoogte van het scherm gebruikt */
html, body {
    height: 100%;
}

/* De footer wordt naar beneden geduwd door de rest van de content */
footer {
    margin-top: auto;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Zorgt dat sectietitels niet onder je navbar verdwijnen */
}

/* Algemene instellingen */
body {
    font-family: 'Outfit', sans-serif;
    color: var(--gv-black);
    font-size: 1rem; /* 16px */
    display: flex;
    flex-direction: column;
}

.shadow-md {
    box-shadow: 0 4px 20px rgba(60, 9, 108, 0.08) !important;
}

.text-dark { color: var(--gv-black); }
.text-light { color: var(--gv-white); }
.text-purple { color: var(--gv-purple); }
.text-pink { color: var(--gv-pink); }
.text-light-purple { color: var(--gv-light-purple); }
.text-coral { color: var(--gv-coral); }

.bg-purple { background-color: var(--gv-purple); }
.bg-pink { background-color: var(--gv-pink); }
.bg-light-purple { background-color: var(--gv-light-purple); }
.bg-off-white { background-color: var(--gv-off-white); }
.bg-coral { background-color: var(--gv-coral); }
.bg-coral-light { background-color: var(--gv-coral-light); }

/* Font groottes in rem */
h1 {
    font-size: clamp(3rem, 4vw + 1rem, 4rem);
    font-weight: 900;
    line-height: 1;
}
h2 { font-size: 2rem; }   /* 32px */

p {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
} 

@media (max-width: 991.98px) {
    .lead {
        font-size: 1.1rem;
    }
}
@media (min-width: 768px) {
    .w-md-auto {
        width: auto !important;
    }
}
/* ==========================================
   1. ALGEMENE EN BASIS KNOP INSTELLINGEN
   ========================================== */

/* Basis instellingen voor ALLE knoppen */
.btn {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Overal soepel effect */
    border-radius: 1.2rem;
    padding: 0.625rem 1.875rem;
    font-weight: 700;
}

/* Specifiek voor Small knoppen */
.btn-sm {
    border-radius: 0.9rem;
    padding: 0.375rem 1.25rem;
    font-weight: 600;
}

/* Specifiek voor Large knoppen (Exclusief schaduw en lift-effect) */
.btn-lg {
    border-radius: 1.5rem;
    padding: 0.875rem 2.225rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(126, 45, 138, 0.25), 
                0 4px 10px rgba(126, 45, 138, 0.15) !important;
}

/* ==========================================
   2. PRIMARY BUTTON (GV-PINK) KLEUREN & INTERACTIE
   ========================================== */

/* Basisstaat van de roze knop (voor alle maten) */
.btn-primary {
    background-color: var(--gv-pink) !important;
    border-color: var(--gv-pink) !important;
    color: var(--gv-white) !important;
}

/* Universele hover kleur voor ALLE primary knoppen */
.btn-primary:hover {
    background-color: #9d39ab !important; /* Jouw premium heldere hover-pink */
    border-color: #9d39ab !important;
}

/* Universele active (klik) kleur voor ALLE primary knoppen */
.btn-primary:active {
    background-color: #5f2169 !important; /* Jouw premium diepe active-purple */
    border-color: #5f2169 !important;
}

/* ==========================================
   3. EXCLUSIEVE INTERACTIE VOOR DE LARGE BUTTON
   ========================================== */

/* Alleen de lg knop komt omhoog en krijgt een grotere schaduw op hover */
.btn-lg:hover {
    transform: translateY(-2px); 
    box-shadow: 0 14px 30px rgba(157, 57, 171, 0.35), 
                0 6px 12px rgba(157, 57, 171, 0.20) !important;
}

/* Alleen de lg knop veert weer terug naar beneden bij een klik */
.btn-lg:active {
    transform: translateY(0); 
    box-shadow: 0 4px 10px rgba(95, 33, 105, 0.25) !important;
}

.btn-secondary {
    background-color: var(--gv-purple) !important;
    border-color: var(--gv-purple) !important;
    border-radius: 1.2rem;
    padding: 0.625rem 1.875rem;
    font-weight: 700;
    color: white !important;
}

.btn-secondary:hover {
    background-color: #2d0a56 !important;
    border-color: #2d0a56 !important;
}

.btn-secondary:active {
    background-color: #1f083f!important;
}

/* Basisstaat van de primary outline knop - Gecorrigeerde selector combo */
.btn.btn-outline-primary {
    background-color: transparent !important;
    border: 2px solid var(--gv-pink) !important; 
    color: var(--gv-pink) !important;            
    font-weight: 700 !important;                 
    transition: all 0.2s ease-in-out !important;
}

/* Hover staat */
.btn.btn-outline-primary:hover {
    background-color: #9d39ab !important; 
    border-color: #9d39ab !important;
    color: var(--gv-white) !important;
}

/* Active staat (klik) */
.btn.btn-outline-primary:active {
    background-color: #5f2169 !important; 
    border-color: #5f2169 !important;
    color: var(--gv-white) !important;
}

.btn-link.text-purple {
    color: var(--gv-purple);
    font-size: 1rem;
    transition: opacity 0.2s ease;
}

.btn-link.text-purple:hover {
    color: var(--gv-purple);
    opacity: 0.8;
    text-decoration: underline;
}

/* Zorg dat het icoontje een fractie mee beweegt op hover voor extra interactie */
.btn-link.text-purple:hover i {
    transform: translateX(3px);
    transition: transform 0.2s ease;
}

.btn-link.text-purple i {
    display: inline-block;
}

.btn:focus {
    box-shadow: none !important;
}

/* --- Navbar Algemeen & Desktop --- */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gv-purple) !important;
}

.nav-link {
    color: var(--gv-purple) !important;
    font-weight: 500;
    position: relative;
    transition: color 0.2s ease;
}

/* Hover & Selected effect (Desktop) */
.nav-link:hover, 
.nav-link-selected {
    color: var(--gv-purple) !important;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    text-decoration-color: var(--gv-purple);
}

.nav-link-selected {
    font-weight: 700;
}

/* Sticky instellingen voor alle schermen */
.navbar.fixed-top {
    top: 0;
    width: 100%;
    z-index: 1060 !important; 
    transition: all 0.3s ease;
}

/* Desktop navbar (min-width 992px) */
@media (min-width: 992px) {
    .navbar.fixed-top {
        background-color: rgba(255, 255, 255, 0.85) !important; 
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        position: fixed!important;
        margin: 0 !important;
        border-radius: 0 !important;
    }
    
    body {
        padding-top: 80px; 
    }
}

/* --- Mobiele Navbar Styles (992px en kleiner) --- */
@media (max-width: 991.98px) {
    body {
        padding-top: 90px; 
    }

    .gv-mobile-nav {
        width: auto !important; 
        left: 8px !important;
        right: 8px !important;
        margin: 8px 0 !important; 
        position: fixed !important;
        top: 0 !important;
        background-color: rgba(255, 255, 255, 0.85) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        border-radius: 1.2rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        z-index: 1070;
    }
    
    .gv-mobile-nav .container {
        width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .navbar-collapse {
        margin-top: 10px;
        text-align: left;
        backface-visibility: hidden;
        transform: translateZ(0);
        will-change: height;
    }

    .collapsing {
        transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        overflow: hidden;
    }

    .navbar-nav .nav-link:not(.inlog-mob) {
        padding: 0.8rem 0;
        font-size: 1.25rem !important;
        display: block;
        width: 100%;
        text-align: left;
    }

    .nav-item .inlog-mob {
        font-size: 1rem !important;
        padding: 0.5rem 0 1rem 0 !important;
        display: flex !important;
        justify-content: center !important;
        width: 100%;
        text-align: center;
        color: var(--gv-purple) !important;
        font-weight: 700;
    }

    .mobile-divider {
        border-top: 1px solid rgba(60, 9, 108, 0.08) !important;
        margin: 0.5rem 0;
        display: block;
        height: 1px;
    }

    .gv-mobile-nav .bi-person-circle { font-size: 1.6rem !important; }
    .navbar-toggler-icon, .navbar-toggler-icon::before, .navbar-toggler-icon::after {
        width: 24px !important;
        height: 2.5px !important;
        border-radius: 2px;
    }
    .navbar-toggler-icon::before { top: -8px !important; }
    .navbar-toggler-icon::after { bottom: -8px !important; }
    .navbar-toggler {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Hamburger naar X Animatie */
.navbar-toggler { position: relative; border: none; }
.navbar-toggler-icon {
    background-image: none !important;
    background-color: var(--gv-purple);
    display: block;
    transition: all 0.2s ease-in-out;
    position: relative;
    border-radius: 2px;
    width: 20px; 
    height: 2px; 
}
.navbar-toggler-icon::before, .navbar-toggler-icon::after {
    content: '';
    background-color: var(--gv-purple);
    display: block;
    position: absolute;
    left: 0;
    transition: all 0.2s ease-in-out;
    border-radius: 2px;
    width: 100%;
    height: 100%;
}
.navbar-toggler-icon::before { top: -6px; }
.navbar-toggler-icon::after { bottom: -6px; }
.navbar-toggler:not(.collapsed) .navbar-toggler-icon { background-color: transparent !important; }
.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before { top: 0 !important; transform: rotate(45deg); }
.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after { bottom: 0 !important; transform: rotate(-45deg); }


/* Subtiele scheidingslijn voor de mobiele menu-knoppen */
.mobile-divider {
    display: block;
    height: 1px;
    background-color: rgba(60, 9, 108, 0.1);
    margin: 1rem 0;
}

/* Taalswitcher hover effecten */
.lang-switcher a {
    transition: opacity 0.2s ease;
}
.lang-switcher a:hover {
    opacity: 1 !important;
}
.opacity-20 {
    opacity: 0.2;
}


.rounded-gv {
    border-radius: 3rem !important;
}



/* --- Gively Custom Wallet Card Demo --- */
.gively-wallet-pass {
    font-family: 'Inter', sans-serif;
    width: 100%;
    max-width: 320px; 
    aspect-ratio: 2 / 2.5; 
    background: linear-gradient(135deg, var(--gv-purple) 0%, var(--gv-purple) 100%);
    border-radius: 1.8rem; 
    position: relative;
    box-shadow: 0 30px 60px rgba(60, 9, 108, 0.25) !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
}

.stamp-circle {
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 2px solid rgba(255, 255, 255, 0.5); 
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.wallet-demo-badge {
    width: 100%;
    background-color: #ffffff;
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.tracking-tight { letter-spacing: -0.02em; }
.tracking-wider { letter-spacing: 0.05em; }

.feature-image-wrapper img {
    width: 75%;
    height: auto;
    display: block;
    margin: 0 auto; 
}
/* --- Animatie voor het interactieve pijltje --- */
.animated-arrow {
    display: inline-block;
    animation: bounceUpDown 1.6s infinite ease-in-out;
}

@keyframes bounceUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px); /* Beweegt 6px naar beneden */
    }
}

@media (min-width: 992px) {
    .feature-image-wrapper img {
        width: 60%;
    }
}

/* Zorgt ervoor dat de demo-card op desktop transparant start en pas wit wordt bij interactie */
@media (min-width: 768px) {
    #demo-card:not(.card-active) {
        background-color: transparent !important;
        box-shadow: none !important;
    }
}

/* --- PREMIUM PAIN SECTION (ICONS NEXT TO TEXT) --- */
.custom-pain-section .small-lead {
    font-size: 1.05rem;
    opacity: 0.85;
}

.pain-column-item {
    padding: 0.5rem;
    height: 100%;
}

/* Het paars afgeronde vierkant met wit icoon */
.pain-icon-box {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #3c096c 0%, #7E2D8A 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(60, 9, 108, 0.12);
}

.pain-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gv-purple, #3c096c);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.pain-text {
    font-size: 0.88rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Mobiele optimalisatie */
@media (max-width: 767px) {
    .pain-column-item {
        padding: 0.25rem 0;
    }
}

/* --- USE CASES SECTION (LOYALTY IN ACTION) --- */
.uc-card {
    max-width: 100% !important;
    aspect-ratio: 2 / 2.9 !important; 
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.uc-bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: auto;
}

.uc-quote-wrapper {
    height: 48px; 
    display: flex;
    align-items: center; 
    margin-bottom: 0.5rem;
}

.uc-points-spacer {
    height: 90px; 
}

.uc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(15, 15, 15, 0.2) !important;
}

.uc-bg-coffee   { background: linear-gradient(135deg, #6e4926 0%, #3e2719 100%); } 
.uc-bg-retail   { background: linear-gradient(135deg, #4a4a4a 0%, #1c1c1c 100%); } 
.uc-bg-salon    { background: linear-gradient(135deg, #FCEFEB 0%, #ea8b81 100%); } 
.uc-bg-wellness { background: linear-gradient(135deg, #9ff6eb 0%, #00a4b6 100%); } 

.logo-bg-orange     { background-color: #ff7b00 !important; border: none !important; }
.logo-bg-red        { background-color: #473388 !important; border: none !important; }
.logo-bg-dark-earth { background-color: #eeb7c1 !important; border: none !important; }
.logo-bg-pink       { background-color: #e09dd1 !important; border: none !important; }

.stamp-circle.filled {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: #3c096c; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: bold;
}

.stamp-circle.filled i {
    line-height: 1;
    display: block;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.uc-icon-box {
    width: 22px;
    height: 22px;
    background-color: rgba(255, 255, 255, 0.18); 
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0; 
    transition: background-color 0.2s ease;
}

.uc-bg-salon .text-white, 
.uc-bg-wellness .text-white {
    color: #1a1a1a !important; 
}

.uc-bg-salon .opacity-75, 
.uc-bg-wellness .opacity-75 {
    opacity: 0.85 !important;
}

.uc-bg-salon .border-white-10, 
.uc-bg-wellness .border-white-10 {
    border-color: rgba(0, 0, 0, 0.12) !important; 
}

.uc-bg-salon .uc-icon-box,
.uc-bg-wellness .uc-icon-box {
    background-color: rgba(0, 0, 0, 0.08); 
    color: #1a1a2e; 
}

.uc-card .d-flex.align-items-center {
    line-height: 1.2;
}

/* Subtiele ROI Typografie */
.stat-number-gradient {
    font-weight: 700;
    font-size: 3.8rem;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #3c096c 0%, #7E2D8A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block; 
}

@media (max-width: 767px) {
    .roi-block {
        margin-bottom: 1.5rem; 
    }
    .col-md-4:last-child .roi-block {
        margin-bottom: 0;
    }
}

/* How it works stappen-styling */
.step-number-dot {
    width: 32px;
    height: 32px;
    background-color: var(--gv-light-purple); 
    color: var(--gv-purple); 
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px; 
}

.lottie-placeholder-wrapper {
    background-color: #fafdff; 
    border-radius: 2rem !important; 
}

@media (max-width: 767px) {
    .hw-step-block {
        margin-bottom: 2rem !important;
    }
}

/* --- TESTIMONIALS CONFIGURATION --- */
.testimonial-card {
    border: none !important;
    background-color: #ffffff;
    border-radius: 2.5rem !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
    height: 100%;
    width: 100%;
}

.custom-purple-shadow {
    box-shadow: 0 15px 25px rgba(60, 9, 108, 0.06) !important;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--gv-light-purple);
}

.carousel-inner {
    min-height: 300px; 
    padding-top: 15px;
    padding-bottom: 25px;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: -15px;
    margin-bottom: -25px;
    margin-left: -15px;
    margin-right: -15px;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: flex !important;
}

.carousel-item .row {
    display: flex;
    align-items: stretch;
}

.custom-indicators {
    bottom: -15px;
}

.custom-indicators [data-bs-target] {
    width: 24px;
    height: 5px;
    border-radius: 4px;
    background-color: var(--gv-purple);
    opacity: 0.2;
    border: none;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.custom-indicators .active {
    opacity: 1 !important;
    width: 35px;
    background-color: var(--gv-purple) !important;
}

@media (max-width: 767.98px) {
    .carousel-inner {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        min-height: 310px;
    }
    .carousel-item .row.g-4 {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .carousel-item .col-md-6 {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    .testimonial-card {
        min-height: 240px;
        padding: 1.75rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* --- CARD TABS --- */
#cardTabs .nav-link {
    color: var(--gv-purple);
    font-weight: 600;
    text-decoration: none !important; 
    border: none;
    transition: all 0.2s ease-in-out;
    padding: 0.6rem 1.5rem; 
}

#cardTabs .nav-link:hover:not(.active) {
    background-color: rgba(110, 66, 193, 0.1); 
    color: var(--gv-purple);
    border-radius: 50rem; 
}

#cardTabs .nav-link.active {
    background-color: var(--gv-pink) !important;
    color: white !important;
    border-radius: 50rem;
    box-shadow: 0 4px 12px rgba(110, 66, 193, 0.2);
}

.tab-pane img {
    max-height: 300px;
    object-fit: contain;
}

/* --- PRICING TABS (MONTHLY / ANNUAL) --- */
#priceTabs .nav-link {
    color: var(--gv-purple);
    font-weight: 600;
    text-decoration: none !important; 
    border: none;
    transition: all 0.2s ease-in-out;
    padding: 0.6rem 1.5rem; 
}

#priceTabs .nav-link:hover:not(.active) {
    background-color: rgba(110, 66, 193, 0.1); 
    color: var(--gv-purple);
    border-radius: 50rem; 
}

/* GEWIJZIGD: Gively Pink geactiveerd voor het prijs-toggle menu */
#priceTabs .nav-link.active {
    background-color: var(--gv-pink) !important;
    color: white !important;
    border-radius: 50rem;
    box-shadow: 0 4px 12px rgba(126, 45, 138, 0.25);
}

.pricing-card {
    border: none !important; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
    border-radius: 2rem !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(60, 9, 108, 0.08), 0 8px 16px rgba(0, 0, 0, 0.03);
}

.border-purple-light {
    border: 2px solid var(--gv-light-purple) !important;
}

.badge-populair {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gv-pink);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 10;
    white-space: nowrap;
}

.display-4 {
    font-size: 3.2rem;
    letter-spacing: -1px;
}

.pricing-feature-list li {
    display: flex;
    align-items: start;
    margin-bottom: 0.75rem;
    font-size: 0.88rem;
    color: #555555;
}

.pricing-feature-list li i {
    font-size: 1.1rem;
    line-height: 1;
}

@media (min-width: 992px) {
    .img-80 {
        width: 80% !important;
        height: auto;
    }
}

@media (max-width: 991.98px) {
    .img-80 {
        width: 100%;
    }
}

/* --- FAQ SECTION --- */
.custom-faq .accordion-item {
    background-color: transparent;
    border: none;
}

.custom-faq .accordion-button {
    background-color: #ffffff !important;
    color: var(--gv-purple);
    font-weight: 600;
    box-shadow: none !important;
    padding: 1.2rem;
    border-radius: 1.2rem !important; 
    transition: all 0.2s ease;
    position: relative;
}

.custom-faq .accordion-button:focus {
    box-shadow: none !important;
    background-color: #ffffff !important;
}

.custom-faq .accordion-button:not(.collapsed) {
    background-color: #ffffff !important; 
    background-image: none !important;    
    color: var(--gv-purple);
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.custom-faq .accordion-body {
    background-color: #ffffff;
    border-bottom-left-radius: 1.2rem;
    border-bottom-right-radius: 1.2rem;
    padding-top: 0;
    padding-bottom: 1.5rem;
}

.custom-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236e42c1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* --- FOOTER SECTION --- */
.footer-section {
    background-color: #ffffff; 
    padding-top: 3rem;
}

.footer-container {
    background-color: var(--gv-purple); 
    border-top-left-radius: 4rem;
    border-top-right-radius: 4rem;
    color: #ffffff;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-socials a {
    color: #ffffff;
    font-size: 1.5rem;
    transition: transform 0.2s ease;
    display: inline-block;
}

.footer-socials a:hover {
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    .footer-container {
        border-top-left-radius: 3rem;
        border-top-right-radius: 3rem;
    }
    .footer-logo {
        margin-bottom: 1.5rem;
    }
}

.rounded-gv-sm {
    border-radius: 2.5rem !important;
}

/* --- COMPARISON TABLE --- */
.custom-comparison-table {
    border-collapse: separate !important;
    border-spacing: 0 0; 
    width: 100%;
    table-layout: fixed;
}

.custom-comparison-table thead th {
    background-color: var(--gv-purple) !important;
    color: white !important;
    padding: 1.25rem 1rem;
    border: none;
    font-weight: 600;
    vertical-align: middle !important;
    text-align: center;
}

.custom-comparison-table thead th:first-child {
    border-top-left-radius: 1.2rem;
    border-bottom-left-radius: 1.2rem;
    padding-left: 1.5rem;
}

.custom-comparison-table thead th:last-child {
    border-top-right-radius: 1.2rem;
    border-bottom-right-radius: 1.2rem;
}

.custom-comparison-table td {
    padding: 0.85rem 1.5rem;
    color: var(--gv-black);
    border-bottom: 1px solid rgba(60, 9, 108, 0.05);
}

.custom-comparison-table tr.bg-light td {
    background-color: var(--gv-off-white) !important;
    border-bottom: none;
    border-radius: 1.2rem;
}

.table-spacer td {
    height: 20px !important;
    padding: 0 !important;
    background-color: transparent !important;
    border: none !important;
}

.custom-comparison-table tr:has(+ tr.bg-light) td {
    border-bottom: none !important;
}

@media (max-width: 991.98px) {
    .custom-comparison-table th, 
    .custom-comparison-table td {
        font-size: 0.75rem !important;
        padding: 1rem 0.8rem !important;
    }
    .custom-comparison-table th:first-child, .custom-comparison-table td:first-child { width: 40%; }
    .custom-comparison-table th:nth-child(2), .custom-comparison-table td:nth-child(2) { width: 30%; }
    .custom-comparison-table th:nth-child(3), .custom-comparison-table td:nth-child(3) { width: 30%; }
    .table-responsive { overflow-x: hidden !important; }
}

@media (min-width: 992px) {
    .custom-comparison-table th:first-child, .custom-comparison-table td:first-child { width: 50%; }
}

/* --- INFINITY SYMBOL STYLING --- */
.custom-comparison-table .infinity-style {
    font-size: 1.6rem !important; /* Maakt hem lekker groot en duidelijk op desktop */
    line-height: 1 !important;    /* Voorkomt dat de rij hierdoor hoger wordt */
    vertical-align: middle !important;
}

/* Mobiele fijnafstelling */
@media (max-width: 576px) {
    .custom-comparison-table .infinity-style {
        font-size: 1.35rem !important; /* Iets subtieler op mobiele schermen zodat het mooi past */
    }
}

/* 1. Algemene styling van de knoppen */
.custom-faq-tabs .nav-link {
    color: var(--gv-purple) !important;
    background-color: transparent;
    font-weight: 600;
    border: none;
    text-decoration: none !important; /* Verwijder de underline */
    transition: all 0.2s ease;
    text-align: left !important; /* Altijd links uitgelijnd op desktop */
}

/* 2. Hover effect (zonder underline) */
.custom-faq-tabs .nav-link:hover {
    background-color: rgba(60, 9, 108, 0.05);
    text-decoration: none !important;
}

/* 3. Actieve knop styling */
.custom-faq-tabs .nav-link.active {
    background-color: var(--gv-purple) !important;
    color: white !important;
}

/* Container voor de tabs */
.faq-nav-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

@media (max-width: 991.98px) {
    .custom-faq-tabs {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap; /* CORRECTE SYNTAX: Geen flex-nowrap */
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-right: 60px; /* Iets meer ruimte voor de chevron */
        scrollbar-width: none;
        scroll-snap-type: x mandatory; /* Schakelt snap in op de horizontale as */
        scroll-behavior: smooth;      /* Zorgt voor vloeiend scrollen naar de volgende knop */
    }
    }

    .custom-faq-tabs::-webkit-scrollbar {
        display: none;
    }

    .custom-faq-tabs .nav-link {
        white-space: nowrap !important; /* DWINGT TEKST OP 1 REGEL */
        flex-shrink: 0; /* Voorkomt dat knoppen worden platgedrukt */
        padding: 0.8rem 1.2rem !important;
        text-align: center !important;
        scroll-snap-align: center;    /* De knop snapt naar het midden van het scherm */
        scroll-snap-stop: always;    /* Zorgt dat je niet per ongeluk 3 knoppen voorbij vliegt */
    }

    /* De Fade + Chevron Overlay */
    .faq-nav-wrapper::after {
        content: '\F285'; 
        font-family: "bootstrap-icons" !important;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 60px;
        /* Fade effect naar de achtergrondkleur van de sectie */
        background: linear-gradient(90deg, rgba(246, 238, 255, 0) 0%, #fcfaff 80%);
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-right: 10px;
        color: var(--gv-purple);
        font-weight: bold;
        pointer-events: none;
        z-index: 5;
    }

@media (min-width: 992px) {
    .faq-nav-wrapper::after {
        display: none;
    }
}

@media (min-width: 992px) {
    .custom-faq-tabs .nav-link {
        text-align: left !important;
        display: block !important;
        width: 100% !important;
        padding-left: 1.5rem !important; /* Voor die mooie 'indented' look */
    }
}

/* --- LOGIN PAGE --- */
.login-body {
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: start;
}

@media (max-width: 767.98px) {
    .login-body {
        align-items: flex-start; 
        padding-top: 40px;       
    }
}

.login-card {
    max-width: 420px;
    width: 95%;
    border: none;
    border-radius: 2rem; 
    background-color: #ffffff;
}

.login-logo {
    height: 35px;
    margin-bottom: 15px;
}

.login-card .form-control {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    font-size: 0.95rem;
}

.login-card .form-control:focus {
    border-color: #3c096c;
    box-shadow: 0 0 0 0.25rem rgba(60, 9, 108, 0.1);
}

.login-card .btn-primary {
    background-color: #3c096c;
    border: none;
    padding: 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.login-card .btn-primary:hover {
    background-color: #240046;
}

.forget-link {
    color: #ff0d98;
    font-weight: 700;
}

.signup-link {
    color: #3c096c;
}

.forget-link:hover, .signup-link:hover {
    text-decoration: underline !important;
}

input.gv-check {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    width: 22px !important;
    height: 22px !important;
    min-width: 22px;
    background-color: #ffffff !important;
    background-image: none !important; 
    border: 1px solid #dee2e6 !important;
    border-radius: 6px !important;
    cursor: pointer;
    position: relative;
    margin-right: 12px;
    transition: all 0.2s ease;
}

input.gv-check:checked {
    background-color: var(--gv-purple) !important;
    border-color: var(--gv-purple) !important;
}

input.gv-check:checked::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: block !important;
}

.gv-custom-check .form-check-label {
    padding-left: 0;
    padding-top: 0;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.4;
}

.star-rating .bi-star-fill { color: #ffc200; font-size: 1.875rem; margin: 0 2px; }
.star-rating .bi-star { color: #9d84b5; font-size: 1.875rem; margin: 0 2px; }
textarea.form-control { border-radius: 12px; padding: 15px; border: 1px solid #eee; }
textarea.form-control:focus { border-color: #3c096c; box-shadow: none; }

/* --- VIDEO MODAL --- */
#videoModal .modal-content {
    background: transparent;
}

#videoModal .video-container {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border-radius: 24px;
}

@media (min-width: 992px) {
    #videoModal .video-container {
        border-radius: 40px;
    }
}

#videoModal .btn-close-custom {
    background-color: #ff0d98;
    opacity: 1;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    transition: transform 0.2s ease;
}

#videoModal .btn-close-custom:hover {
    transform: scale(1.1);
}

.modal {
    z-index: 9060 !important; 
}

.modal-backdrop {
    z-index: 9050 !important;
}