/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

html, body {
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
    background: #02AAB0; /* Fallback */
background: linear-gradient(150deg, #3c4cad 0%, #240e8b 20%, #000000 100%);

    color: #fff;
    max-width: 100%
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 8%;
}
/* ================= HEADER ================= */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 5rem;
    z-index: 10;
}

.logo {
    padding-top: 60px;
   font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    background: linear-gradient(90deg, #ff4d9d, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 0 8%;   
    padding-left: 80px;
    padding-right: 80px;
    background: 
        url('../images/Hero-Image.webp') center/cover no-repeat;

    display: flex;
    align-items: center;

    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;

    background:
        radial-gradient(1200px 800px at 80% 10%, transparent 60%, rgba(255,255,255,0.04) 61%, transparent 62%),
        radial-gradient(1000px 700px at 20% 90%, transparent 60%, rgba(255,255,255,0.04) 61%, transparent 62%),
        radial-gradient(900px 600px at 90% 70%, transparent 60%, rgba(255,255,255,0.03) 61%, transparent 62%);

    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px; /* WAS waarschijnlijk 600-800 */
}

.hero-content h1 {
    font-size: clamp(64px, 6.5vw, 120px);
    line-height: 1.05;
    max-width: 1000px;
    text-shadow:
    0 4px 8px rgba(0, 0, 0, 0.6),
        0 12px 35px rgba(0, 0, 0, 0.85);
    filter: drop-shadow(0 0 40px rgba(255, 79, 216, 0.3));     
    position: relative;
    z-index: 2;
}

.hero-content p {
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 520px;
    margin-bottom: 3rem;
}


/* ================= CTA BUTTONS ================= */
.hero-content a,
.cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.8rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff4d9d, #ffb347);
    color: #000 !important;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 0 40px rgba(255, 120, 180, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-content a:hover,
.cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 70px rgba(255, 120, 180, 0.75);
}
/* ================= HERO VISUAL (DESKTOP) ================= */
.hero-visual {
    position: absolute;
    right:40%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    z-index: 0;
    pointer-events: none;
}

.hero-visual img {
    width: 180%;
    height: auto;
    max-width: 2000px;
    max-height: 90vh;
    object-fit: contain;
    transform: translateX(5%);
}

/* ================= SERVICES ================= */
.services {
    padding: 160px 8% ;
}

.services h2 {
    margin-bottom: 60px;
    text-align: center;
    font-size: 42px;
}

/* Mobiel titel */
@media (max-width: 768px) {
    .services h2 {
        font-size: 32px;
    }
}

/* ðŸ”¥ Standaard grid (normaal werkend) */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Tablet */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobiel */
@media (max-width: 768px) {

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

    .service-card {
        padding: 30px 20px;
}

    .service-card h2 {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .service-card p {
        font-size: 1rem;
        line-height: 1.6;
    }

}

.service-card {
    position: relative;
    overflow: hidden;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    padding: 40px 30px;
    border-radius: 28px;
    text-align: center;

    border: 1px solid rgba(255,255,255,0.15);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.45),
        inset 0 1px 1px rgba(255,255,255,0.08);

    transition: all 0.4s ease;
}

.swipe-card {
    position: relative;
    overflow: hidden;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-radius: 28px;

    border: 1px solid rgba(255,255,255,0.15);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.45),
        inset 0 1px 1px rgba(255,255,255,0.08);

    transition: all 0.4s ease;
}

.service-card:hover,
.swipe-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 30px 80px rgba(255,120,0,0.25),
        0 0 40px rgba(255,0,120,0.15);
}

.service-card::before,
.swipe-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 2px;
    background:
        radial-gradient(circle at 50% 30%, rgba(255,79,216,0.15), transparent 40%),
        radial-gradient(circle at 60% 20%, rgba(255,120,0,0.12), transparent 50%),
        #0f0b18;
    opacity: 0.8;
}

.service-card img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 2rem auto;
}

.service-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;    
    color: #ffffff;
    text-align: center;
}

.service-card p {
    font-size: 1.5rem;
    opacity: 0.75;
    color: rgba(255,255,255,0.75);
    text-align: center;
}
.card-glow {
    position: absolute;
    inset: 0;
    z-index: 1;
}
/* ================= CTA SECTION ================= */
.cta {
    padding:6rem 5rem 3rem ;
    text-align: center;
}

.cta h2 {
    font-size: 3rem;
    max-width: 720px;
    margin: 0 auto 1.2rem;
}

.cta p {
    max-width: 520px;
    margin: 0 auto 2.8rem;
    opacity: 0.8;
}

/* ================= MOBILE (HERO MAX & GECENTREERD) ================= */
@media (max-width: 900px) {

    .site-header {
        padding: 1.5rem 2rem;
        text-align: center;
    }

    .logo {
        font-size: 2.2rem;
    }

    .hero {
        padding: 9rem 2rem 4rem;
        flex-direction: column;
        gap: 3.5rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3.2rem;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    /* ðŸ”¥ DEFINITIEVE MOBILE HERO FIX ðŸ”¥ */
    .hero-visual {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-visual img {
        width: 140vw;        /* maximaal groot */
        max-width: none;
        max-height: 70vh;    /* altijd volledig zichtbaar */
        margin: 0 auto;
        display: block;
        object-fit: contain;
        transform: none;
    }

    .services {
        padding: 5rem 2rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

 .cta {
        padding: 5rem 2rem;
    }

    .cta h2 {
        text-align: center;   
        font-size: 2.2rem;
    }

    .cta p {
        font-size: 0.95rem;
    }
}
/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25d366, #1ebe5d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 30px rgba(37, 211, 102, 0.35),
        0 0 0 0 rgba(37, 211, 102, 0.6);
    z-index: 9999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
    fill: #fff;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 18px 45px rgba(37, 211, 102, 0.45),
        0 0 25px rgba(37, 211, 102, 0.6);
}

/* Mobile spacing */
@media (max-width: 900px) {
    .whatsapp-float {
        right: 18px;
        bottom: 18px;
        width: 58px;
        height: 58px;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

.language-switch {
    display: flex;
    gap: 10px;
    align-items: center;
}

.language-switch a {
    font-size: 14px;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 20px;
    color: #aaa;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.language-switch a:hover {
    color: #fff;
    border-color: #ff4fd8;
}

.language-switch a.active {
    background: linear-gradient(90deg, #ff4fd8, #ff9a3c);
    color: #000;
    border: none;
    font-weight: 600;
}
.lang-floating {
    position: fixed;
    bottom: 20px;      /* afstand vanaf onder */
    left: 20px;        /* linksonder */
    display: flex;
    background: rgba(255,255,255,0.08);
    padding: 6px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 79, 216, 0.25);
    z-index: 9999;     /* boven alles */
}


.lang-btn {
    padding: 6px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    color: #aaa;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: linear-gradient(90deg, #ff4fd8, #ff9a3c);
    color: #000;
    font-weight: 600;
}

.lang-btn:hover {
    color: #fff;
}

/* ================= FOOTER ================= */

.footer {
    padding: 60px 0 50px;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.0)
position: relative;
    z-index: 1;   
 );
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.6;
}

.footer-col p,
.footer-col a {
    display: block;
    margin-bottom: 10px;
    opacity: 0.8;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 40px auto 20px;
    max-width: 1200px;
}

.footer-bottom {
    text-align: center;
    opacity: 0.6;
    font-size: 14px;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
}
.why-us {
    padding: 140px 0;
position: relative;
    padding: 160px 0;
    overflow: hidden;
}

.why-us::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/swipe-bg.png") center/cover no-repeat;
    opacity: 0.25; /* speel hiermee */
    z-index: 0;
}

.why-us > * {
    position: relative;
    z-index: 2;
}

.why-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.why-header h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.why-header p {
    opacity: 0.6;
    line-height: 1.6;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.why-card {
    background: #111827;
    padding: 40px;
    border-radius: 20px;
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.why-card:hover {
    border-color: rgba(255, 79, 216, 0.4);
    transform: translateY(-5px);
}

.why-card h3 {
    margin-bottom: 15px;
}

.why-card p {
    opacity: 0.6;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-header h2 {
        font-size: 30px;
    }
}
.process {
 width: 100%;
    padding: 160px 0;
    overflow: visible;   /* toevoegen */
}

.process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.process-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.process-header p {
    opacity: 0.6;
}

.pricing {
    padding: 140px 0;
    position: relative;
    border-radius: 28px;
    background: tranparent;
}

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

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

/* Tablet */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobiel */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.price-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(90deg,#ff8c00,#ff2d95);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.price-card ul li {
    margin-bottom: 12px;
    opacity: 0.8;
}

.price-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 40px;
    background: linear-gradient(90deg,#ff2d95,#ff8c00);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.price-card.featured {
    transform: scale(1.08);
    border: 1px solid rgba(255,140,0,0.6);
}

@media (max-width: 768px) {
    .price-card.featured {
        transform: scale(1);
    }
}

.badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(90deg,#ff2d95,#ff8c00);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
}

/* ================= PROCESS PRO ================= */

.process-pro {
    padding: 250px 3rem;
    max-width: 2400px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

/* Header */	

.process-pro-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;
}

.process-label {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    font-size: 13px;
    margin-bottom: 20px;
}

.process-pro-header h2 {
    font-size: 48px;
    line-height: 1.1;
}

.process-pro-header h2 span {
    background: linear-gradient(90deg,#ff8c00,#ff2d95);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-pro-header p {
    margin-top: 20px;
    opacity: 0.7;
}

/* ===== LAYOUT STRUCTURE ===== */

.process-pro-wrapper {
    position: relative;
    margin-top: 80px;
    padding-bottom: 300px;
}

.process-top-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.process-bottom-row {
    display: flex;
    justify-content: center;
    gap: 80px;

    position: absolute;
    left: 50%;
    top: 65%;
    transform: translateX(-50%);
    z-index: 1;
}

@media (max-width: 1100px) {

    .process-pro-wrapper {
        padding-bottom: 0;
    }

    .process-top-row,
    .process-bottom-row {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .process-bottom-row {
        position: static;      /* 🔥 dit fixt alles */
        transform: none;       /* 🔥 dit ook */
        margin-top: 40px;
    }

}
/* ===== CARD ===== */

.process-pro-card {
    position: relative;
    width: 340px;
    padding: 60px 50px 45px;
    border-radius: 28px;

    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border: 1px solid rgba(255, 255, 255, 0.14);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255,255,255,0.12);

    transition: transform 0.4s cubic-bezier(.16,1,.3,1),
                box-shadow 0.4s ease,
                border 0.4s ease;

    overflow: visible;
    flex: 0 0 340px;
}

.process-pro-card:hover {
    transform: translateY(-12px);
    border: 1px solid rgba(255,140,0,0.5);
    box-shadow:
        0 30px 70px rgba(0,0,0,0.6),
        0 0 35px rgba(255,120,0,0.18);
}

/* Step Badge */

.step-badge {
    position: absolute;
    top: -16px;
    left: 28px;
    background: linear-gradient(90deg,#ff8c00,#ff2d95);
    padding: 7px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Icon */

.icon {
    font-size: 34px;
    margin-bottom: 25px;
    color: #ff8c00;
}

/* Title */

.process-pro-card h3 {
    margin-bottom: 18px;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Body */

.process-pro-card p {
    font-size: 16px;
    line-height: 1.65;
    opacity: 0.85;
    margin-bottom: 24px;
}

/* List */

.process-pro-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-pro-card ul li {
    font-size: 15px;
    margin-bottom: 12px;
    opacity: 0.9;
    position: relative;
    padding-left: 18px;
}

.process-pro-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff8c00;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {

    .process-top-row,
    .process-bottom-row {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .process-bottom-row {
        margin-top: 60px; /* overlap uit */
    }

    .process-pro {
        padding-bottom: 120px;
    }

}

/* ================= UNIFIED CARD STYLE ================= */

.glass-card {
    position: relative;
    width: 100%;
    max-width: 850px;
    padding: clamp(40px, 6vw, 80px);
    border-radius: 28px;
    overflow: hidden;
    background-color: rgba(20, 15, 30, 0.6);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: transform 0.4s ease,
                border 0.4s ease,
                box-shadow 0.4s ease;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.12);
    transform: translateZ(0);
    will-change: transform;
}

.glass-card:hover {
    transform: translateY(-10px);
    border: 1px solid rgba(255, 140, 0, 0.5);
    box-shadow:
        0 35px 80px rgba(0,0,0,0.45),
        0 0 40px rgba(255,0,120,0.08);
}

.glass-card h3 {
    font-size: clamp(28px, 5vw, 48px);
    margin-bottom: 20px;

    background: linear-gradient(90deg,#ff8c00,#ff2d95);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card p {
    font-size: clamp(15px, 3.5vw, 20px);
    line-height: 1.6;
    opacity: 0.8;
}

/* Ripple element */
.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: radial-gradient(circle, rgba(255,255,255,0.4), transparent 70%);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== NAVIGATION ===== */

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 22px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

.nav:hover {
    background: linear-gradient(90deg,#ffd000,#ff0080);
    color: black;
}

.prev { left: -20px; }
.next { right: -20px; }

@media (max-width: 768px) {
    .nav {
        display: none;
    }
}

/* ================= PRICING ================= */

.pricing {
    padding: 160px 0;
    position: relative;
    border-radius: 0 !important;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.section-header p {
    opacity: 0.7;
}

/* ===== GRID STRUCTUUR ===== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
    min-width: 0;
}

/* ===== CARD BASIS ===== */

.pricing-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    min-height: 620px;
    padding: 40px 25px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: transform 0.4s ease,
                border 0.4s ease,
                box-shadow 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-12px);
    border: 1px solid rgba(255, 140, 0, 0.5);
    box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

@media (max-width: 480px) {
    .pricing-card .price {
        font-size: 80px;
    }

    .pricing-card h3 {
        font-size: 22px;
    }

    .pricing-card {
        padding: 35px 20px;
        text-align: center;
        align-items: center;   
    }

      .pricing-card ul {
        text-align: center;
        padding-left: 0;
        list-style: none;
    }

    .pricing-card ul li {
        margin-bottom: 12px;
    }

    .pricing-card .price {
        text-align: center;
    }

    .pricing-card h3 {
        text-align: center;
    }

    .pricing-card .btn {
        margin: 30px auto 0 auto;
        display: inline-flex;
    }
}
.card-waves {
    position: absolute;
 	   bottom: -40px;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.08;
}

.card-waves path {
    fill: none;
    stroke: rgba(255,255,255,0.5);
    stroke-width: 1;
}

.price {
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -1px;
    background: #fff;
    background linear-gradient(90deg,#ff8c00,#ff2d95);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.pricing-card ul li {
    margin-bottom: 12px;
    opacity: 0.85;
}

/* ===== FEATURED (Business) ===== */

.pricing-card.featured {
    border: 1px solid rgba(255, 140, 0, 0.6);
    box-shadow: 0 25px 60px rgba(255, 45, 149, 0.15);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.07) translateY(-8px);
}

/* Badge */

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(90deg, #ff00cc, #ff8c00);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

/* ===== High-End subtle accent ===== */

.pricing-card.highend {
    border: 1px solid rgba(255, 200, 100, 0.4);
}

.pricing-card.highend:hover {
    border: 1px solid rgba(255, 200, 100, 0.8);
}

/* ===== RESPONSIVE ===== */

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

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }
}
/* ================= GLOBAL PRIMARY BUTTON ================= */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 34px;
    border-radius: 50px;

    font-weight: 600;
    text-decoration: none;
    color: #ffffff !important;

    background: linear-gradient(90deg, #ff2d95, #ff8c00);
    box-shadow: 0 10px 30px rgba(255, 45, 149, 0.35);

    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 45, 149, 0.55);
}

/* ================= WHATSAPP MODAL ================= */

.whatsapp-modal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(8px);
    z-index: 99999;

    /* ðŸ”¥ DIT ONTBRAK */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.3s ease;
}

.whatsapp-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.whatsapp-modal-content {
    background: linear-gradient(
        145deg,
        rgba(37, 211, 102, 0.18),
        rgba(15, 40, 25, 0.95)
    );

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    padding: 60px 50px;
    border-radius: 28px;
    width: 90%;
    max-width: 480px;
    text-align: center;

    border: 1px solid rgba(37, 211, 102, 0.35);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.55),
        0 0 40px rgba(37, 211, 102, 0.25);

    transform: translateY(30px) scale(0.98);
    transition: all 0.4s cubic-bezier(.16,1,.3,1);
}

.whatsapp-modal.active .whatsapp-modal-content {
    transform: translateY(0) scale(1);
}

/* ================= WHATSAPP MODAL LOGO ================= */

.modal-logo {
    display: block;
    margin: 0 auto 40px auto;
    width: clamp(160px, 40vw, 320px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 60px rgba(255,80,0,0.4));
}

.modal-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.modal-cancel {
    padding: 12px 20px;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    border: none;
    cursor: pointer;
}

.modal-confirm {
    padding: 14px 26px;
    border-radius: 50px;
    background: #25D366;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modal-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
}

/* ===== LEGAL PAGINA'S PREMIUM ===== */

.legal-hero {
    padding: 200px 0 80px;
    text-align: center;
    position: relative;
}

.legal-hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

/* Subtiele glow achter titel */
.legal-hero::after {
    content: "";
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,140,0,0.25) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
}

.legal-updated {
    opacity: 0.5;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Content sectie */

.legal-content {
    padding-bottom: 180px;
display: flex;
    justify-content: center;

}

.legal-card {
    padding: 80px;
    max-width: 900px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
}

/* Typografie */

.legal-card h2 {
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 24px;
    position: relative;
}

/* Subtiele divider onder h2 */
.legal-card h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    margin-top: 12px;
    background: linear-gradient(90deg, #ff7a18, #ffb347);
    border-radius: 3px;
}

.legal-card h3 {
    margin-top: 35px;
    margin-bottom: 10px;
    font-size: 18px;
}

.legal-card p,
.legal-card li {
    line-height: 1.9;
    opacity: 0.85;
    font-size: 16px;
}

.legal-card ul {
    padding-left: 22px;
    margin-bottom: 20px;
}

.legal-card li {
    margin-bottom: 10px;
}

/* Links stijl */

.legal-card a {
    color: #ff9c3f;
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-card a:hover {
    color: #ffc46b;
    text-shadow: 0 0 8px rgba(255,156,63,0.6);
}

/* ================= COOKIE BANNER ================= */

.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(40px);
    width: 95%;
    max-width: 900px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999999;
}

@media (max-width: 768px) {

    .cookie-banner {
        bottom: 20px;
        transform: translateX(-50%);
    }

}

.cookie-banner.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
    .cookie-banner.active {
        transform: translateX(-50%);
    }
}

.cookie-content {
    background: rgba(20, 15, 30, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 28px;
    padding: 30px 40px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.6),
        0 0 40px rgba(255, 120, 0, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.6;
}

.cookie-content a {
    color: #ff9a3c;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.primary {
    background: linear-gradient(90deg, #ff2d95, #ff8c00);
    color: #fff;
}

.cookie-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255,120,0,0.5);
}

.cookie-btn.secondary {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.cookie-btn.secondary:hover {
    background: rgba(255,255,255,0.15);
}

/* Mobile */

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ================= REVIEWS PRO ================= */

.reviews-pro {
    position: relative;
    padding: 160px 0;
}

.reviews-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,100,0,0.15), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.reviews-pro .container {
    position: relative;
    z-index: 2;
}

.review-card {
    max-width: 750px;
    margin: 60px auto 0;
    padding: 70px;
    border-radius: 28px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(14px);
    text-align: center;
    position: relative;
    border: 1px solid rgba(255,140,0,0.25);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transition: 0.4s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    font-weight: 600;
    opacity: 0.9;
}

.google-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.blue { background:#4285F4; }
.red { background:#EA4335; }
.yellow { background:#FBBC05; }
.green { background:#34A853; }

.review-stars {
    font-size: 30px;
    color: #ffb400;
    margin-bottom: 20px;
    letter-spacing: 6px;
}

.review-score {
    margin-bottom: 25px;
}

.score-number {
    font-size: 38px;
    font-weight: 700;
    margin-right: 10px;
}

.score-stars {
    color: #ffb400;
    letter-spacing: 4px;
}

.review-count {
    display: block;
    font-size: 13px;
    opacity: 0.6;
}

/* ================= CLIENTS PRO ================= */

/* ================= CLIENTS FOG EFFECT ================= */

.clients-pro {
    position: relative;
    padding: 200px 0 360px 0;
    overflow: hidden;
}

.clients-pro .container {
    position: relative;
    z-index: 3;
}

/* ================= APPLE STYLE CLIENT CARDS ================= */

.client-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-top: 80px;
}

/* Main card */
.apple-style {
    position: relative;
    width: 260px;
    height: 140px;
    border-radius: 22px;
    overflow: visible;
    cursor: pointer;
    transition: 0.4s ease;
}

/* Background stacked layers */

.apple-style .card-layer {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    transition: 0.4s ease;
}

/* Back layer */
.apple-style .layer-1 {
    background: linear-gradient(135deg,#1a3cff,#00c2ff);
    transform: rotate(-6deg) translateY(10px);
    opacity: 0.6;
}

/* Middle layer */
.apple-style .layer-2 {
    background: linear-gradient(135deg,#0f5fff,#2ad4ff);
    transform: rotate(4deg) translateY(6px);
    opacity: 0.8;
}

/* Front content */
.apple-style .card-content {
    position: relative;
    z-index: 3;
    height: 100%;
    border-radius: 22px;
    background: linear-gradient(135deg,#1e5fff,#35d2ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    transition: 0.4s ease;
}

/* Hover effect */
.apple-style:hover {
    transform: translateY(-10px);
}

.apple-style:hover .layer-1 {
    transform: rotate(-10deg) translateY(15px);
}

.apple-style:hover .layer-2 {
    transform: rotate(8deg) translateY(10px);
}

.apple-style:hover .card-content {
    box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

.client-card {
    padding: 30px;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    text-align: center;
    font-weight: 500;
    opacity: 0.7;
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.06);
}

.client-card:hover {
    opacity: 1;
    transform: translateY(-6px);
    border-color: rgba(255,140,0,0.4);
}

/* ================= CONTACT HIGH-END ================= */

.contact-section {
    position: relative;
    top-padding: -100;
    padding: 300px 0;
    height: 150%;
    background:#fff;

}
/* Extra glow layer */
.contact-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,120,0,0.15), transparent 70%);
    right: -200px;
    top: -100px;
    filter: blur(80px);
    z-index: 0;
}

@media (max-width: 768px) {

      .contact-section {
        padding: 60px 20px 80px 20px !important;
    }

    .contact-section h1,
    .contact-title {
        font-size: 48px !important;
        line-height: 1.1;
        word-break: break-word;
        white-space: normal;
        margin-top: 0;
   }

    .contact-left {
        margin-bottom: 40px;
    }

    .contact-left p {
        font-size: 17px;
        line-height: 1.6;
    }

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

    .contact-details span {
        display: block;
        margin-bottom: 8px;
    }

    .whatsapp-btn {
        margin: 25px auto 0 auto;
        display: inline-flex;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 20px;    
}

.contact-form input,
    .contact-form textarea {
        width: 92%;
        margin: 0 auto 18px auto;
        padding: 16px 18px;
        border-radius: 20px;
    }

    .contact-form textarea {
        min-height: 160px;
    }

    .contact-form button {
        width: 92%;
        margin: 25px auto 0 auto;
        display: block;
    }

}

.contact-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* LEFT SIDE */

.contact-title {
    font-size: 120px;
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 50px;
    color: #111;
    position: relative;
}

/* Outline background word */
.contact-title::after {
    content: "CONTACT";
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 160px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0,0,0,0.06);
    z-index: -1;
}

.contact-sub {
    color: #555;
    font-size: 17px;
    margin-bottom: 50px;
    max-width: 500px;
    line-height: 1.6;
}

.info-item strong {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
}

.info-item span {
    font-size: 16px;
    color: #111;
}

/* WhatsApp button upgrade */
.whatsapp-button {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 35px;
    border-radius: 50px;
    background: linear-gradient(135deg,#ff8a00,#ff3d00);
    color: white;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 15px 40px rgba(255,120,0,0.35);
    transition: 0.3s ease;
}

.whatsapp-button:hover {
    transform: translateY(-5px);
}

/* RIGHT SIDE FORM */

.contact-form {
    background: linear-gradient(145deg,#01a0f08,#141824);
    padding: 70px;
    border-radius: 32px;
    box-shadow: 0 60px 120px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 20px 22px;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #f4f4f6;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
 border-color: #ff7a00;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255,122,0,0.15);

}

.contact-form button {
    grid-column: span 2;
    align-self: flex-start;
    margin-top: 10px;
}

.contact-btn {
    margin-top: 30px;
    padding: 18px 45px;
    border-radius: 50px;
    background: linear-gradient(135deg,#ff8a00,#ff3d00);
    border: none;
    font-weight: 600;
    color: white;
    box-shadow: 0 15px 40px rgba(255,120,0,0.35);
    transition: 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-5px);
}	

/* Responsive */

@media (max-width: 768px) {

    .contact-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 50px;
    }

    .contact-left,
    .contact-right {
        width: 100% !important;
        max-width: 100% !important;
    }

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

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

    .contact-form {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100% !important;
        text-align: left;
    }

    .contact-form button {
        margin: 20px auto 0 auto;
        display: block;
    }
}
    .contact-title {
        font-size: 70px;
    }

    .contact-title::after {
        font-size: 90px;
    }

    .form-row {
        flex-direction: column;
    }
/* lines */

.bg-lines {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-lines path {
    fill: none;
    stroke: rgba(255,255,255,0.05);
    stroke-width: 1;
}

/* ================= LAUNCH STICKY BAR ================= */

.launch-link {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #ff6a00, #ff2e00);
    color: #fff;
    padding: 14px 10px;
    font-weight: 600;
    text-align: center;
    z-index: 9999;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;

    box-shadow: 0 5px 20px rgba(255, 80, 0, 0.4);
}

.launch-link .old-price {
    text-decoration: line-through;
    opacity: 0.8;
}

.launch-link .new-price {
    font-size: 20px;
    font-weight: bold;
}

/* basis kaart actie */

.highlight {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,106,0,0.6);
    box-shadow: 0 0 50px rgba(255,106,0,0.15);
    transform: scale(1.04);
}

.corner-ribbon {
    position: absolute;
    top: 20px;
    right: -100px;
    width: 350px;
    text-align: center;
    background: linear-gradient(90deg, #ff6a00, #ff2e00);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 50px 0;
    transform: rotate(45deg);
    box-shadow: 0 8px 25px rgba(255,80,0,0.4);
}

.price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 15px 0;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.4;
    font-size: 18px;
}

.new-price {
    font-size: 80px;
    font-weight: 700;
    color: #ff6a00;
    text-shadow: 0 0 20px rgba(255,106,0,0.5);
}

.launch-label {
    background: linear-gradient(90deg,#ff6a00,#ff2e00);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
