/**
 * ComputerBackup Theme - Premium Design Enhancements
 * Een unieke, moderne look die niet "AI-gegenereerd" voelt
 *
 * @package ComputerBackup
 * @version 2.0.0
 */

/* ==========================================================================
   Custom Properties - Uitgebreid Design System
   ========================================================================== */

:root {
    /* Gradient presets */
    --gradient-hero: linear-gradient(135deg, #001a42 0%, #002D72 40%, #003d99 100%);
    --gradient-accent: linear-gradient(135deg, #28A745 0%, #20c997 100%);
    --gradient-dark: linear-gradient(180deg, #0a1628 0%, #1a2744 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);

    /* Glow effects */
    --glow-primary: 0 0 60px rgba(0, 45, 114, 0.3);
    --glow-accent: 0 0 60px rgba(40, 167, 69, 0.3);
    --glow-white: 0 0 80px rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   HERO - Volledig herontworpen met unieke visuele elementen
   ========================================================================== */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    isolation: isolate;
}

/* Animated mesh gradient achtergrond */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 100, 200, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(40, 167, 69, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 80%, rgba(0, 45, 114, 0.4) 0%, transparent 50%);
    animation: meshMove 20s ease-in-out infinite alternate;
    z-index: -2;
}

@keyframes meshMove {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, -2%); }
}

/* Floating orbs - geeft diepte */
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(40, 167, 69, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: floatOrb 15s ease-in-out infinite;
    z-index: -1;
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-55%) scale(1.1); }
}

/* Custom decoratieve elementen */
.hero__decoration {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.hero__decoration--grid {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
}

.hero__decoration--shield {
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    opacity: 0.08;
}

/* Floating tech elements */
.hero__floating {
    position: absolute;
    z-index: 1;
}

.hero__floating--1 {
    top: 15%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    animation: float1 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__floating--2 {
    bottom: 20%;
    right: 25%;
    width: 60px;
    height: 60px;
    background: rgba(40, 167, 69, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 12px;
    animation: float2 8s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__floating--3 {
    top: 30%;
    right: 30%;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-5deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(10deg); }
}

/* Hero content verbetering */
.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    padding: var(--space-16) 0;
}

.hero__content {
    text-align: left;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: var(--radius-full);
    color: #7ee2a8;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.6s ease-out;
}

.hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #28A745;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero__title-highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: var(--font-size-xl);
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: var(--space-8);
    max-width: 500px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* Hero visual - rechter kolom */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__visual-card {
    position: relative;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 24px;
    padding: var(--space-8);
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

.hero__visual-mockup {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/3;
    background: var(--gradient-dark);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

/* Stats in hero visual */
.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.hero__stat {
    text-align: center;
    padding: var(--space-3);
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
}

.hero__stat-value {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: #7ee2a8;
}

.hero__stat-label {
    font-size: var(--font-size-xs);
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust indicators herpositionering */
.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-6);
    margin-top: var(--space-10);
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255,255,255,0.7);
    font-size: var(--font-size-sm);
}

.hero__trust-item svg {
    width: 16px;
    height: 16px;
    color: #7ee2a8;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive hero */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content {
        text-align: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__visual {
        display: none;
    }

    .hero__floating {
        display: none;
    }

    .hero__trust {
        justify-content: center;
    }
}

/* ==========================================================================
   BUTTONS - Verfijnde interacties
   ========================================================================== */

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.btn--primary {
    background: var(--color-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 45, 114, 0.25);
}

.btn--primary:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 6px 20px rgba(0, 45, 114, 0.35);
    transform: translateY(-2px);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--accent {
    background: var(--gradient-accent);
    color: white;
    border: none;
    box-shadow: 0 4px 14px rgba(40, 167, 69, 0.25);
}

.btn--accent:hover {
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    transform: translateY(-2px);
}

.btn--white {
    background: white;
    color: var(--color-primary);
    border: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn--white:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn--outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn--outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn--outline:hover {
    background: var(--color-primary);
    color: white;
}

.btn--lg {
    padding: var(--space-5) var(--space-10);
    font-size: var(--font-size-lg);
}

/* Button icon animation */
.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   FEATURE CARDS - Unieke styling
   ========================================================================== */

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.feature-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: var(--space-10);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Gradient border effect */
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, transparent 0%, transparent 50%, var(--color-accent) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Icon met gradient achtergrond */
.feature-card__icon {
    position: relative;
    width: 72px;
    height: 72px;
    margin-bottom: var(--space-6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #003d99 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 45, 114, 0.2);
    transition: all 0.4s ease;
}

.feature-card__icon svg {
    width: 32px;
    height: 32px;
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0, 45, 114, 0.3);
}

/* Variant met accent kleur */
.feature-card:nth-child(2) .feature-card__icon {
    background: var(--gradient-accent);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.2);
}

.feature-card:nth-child(2):hover .feature-card__icon {
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.3);
}

.feature-card__title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-3);
}

.feature-card__text {
    color: var(--color-text-light);
    line-height: 1.7;
}

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

/* ==========================================================================
   PRICING CARDS - Premium redesign
   ========================================================================== */

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    align-items: stretch;
}

.pricing-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--color-gray-200);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

/* Featured card */
.pricing-card--featured {
    background: linear-gradient(145deg, #001a42 0%, var(--color-primary) 100%);
    border: none;
    color: white;
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 25px 60px rgba(0, 45, 114, 0.3);
}

.pricing-card--featured:hover {
    transform: scale(1.07) translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 45, 114, 0.4);
}

.pricing-card--featured::before {
    content: 'Meest gekozen';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    font-size: var(--font-size-sm);
    font-weight: 700;
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

/* Card header */
.pricing-card__header {
    text-align: center;
    padding-bottom: var(--space-6);
    margin-bottom: var(--space-6);
    border-bottom: 1px solid var(--color-gray-200);
}

.pricing-card--featured .pricing-card__header {
    border-bottom-color: rgba(255,255,255,0.2);
}

.pricing-card__name {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-1);
}

.pricing-card--featured .pricing-card__name {
    color: white;
}

.pricing-card__tagline {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-4);
}

.pricing-card--featured .pricing-card__tagline {
    color: rgba(255,255,255,0.7);
}

/* Price display */
.pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-1);
}

.pricing-card__currency {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-accent);
}

.pricing-card__amount {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.pricing-card--featured .pricing-card__currency,
.pricing-card--featured .pricing-card__amount {
    color: #7ee2a8;
}

.pricing-card__period {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

.pricing-card--featured .pricing-card__period {
    color: rgba(255,255,255,0.6);
}

/* Features list */
.pricing-card__features {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6);
}

.pricing-card__feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    font-size: var(--font-size-sm);
    color: var(--color-text);
}

.pricing-card--featured .pricing-card__feature {
    color: rgba(255,255,255,0.9);
}

.pricing-card__feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--color-accent);
}

/* CTA button */
.pricing-card__action .btn {
    width: 100%;
}

.pricing-card--featured .pricing-card__action .btn {
    background: white;
    color: var(--color-primary);
}

.pricing-card--featured .pricing-card__action .btn:hover {
    background: var(--color-gray-100);
}

.pricing-card__guarantee {
    text-align: center;
    margin-top: var(--space-4);
    font-size: var(--font-size-xs);
    color: var(--color-text-light);
}

.pricing-card--featured .pricing-card__guarantee {
    color: rgba(255,255,255,0.6);
}

@media (max-width: 1024px) {
    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card--featured {
        transform: none;
        order: -1;
    }

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

/* ==========================================================================
   SECTION STYLING - Verbeterde visuele hiërarchie
   ========================================================================== */

.section {
    position: relative;
    padding: var(--space-24) 0;
}

.section--sm {
    padding: var(--space-12) 0;
}

.section--gray {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.section--primary {
    background: var(--gradient-hero);
    color: white;
    position: relative;
    overflow: hidden;
}

.section--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30L30 0z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
    background-size: 30px 30px;
}

/* Section headers */
.section__header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section__title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.section--primary .section__title {
    color: white;
}

.section__subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section--primary .section__subtitle {
    color: rgba(255,255,255,0.8);
}

/* ==========================================================================
   TRUST BADGES - Verbeterd design
   ========================================================================== */

.trust-section {
    background: white;
    border-bottom: 1px solid var(--color-gray-200);
    padding: var(--space-8) 0;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-12);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    text-align: center;
}

.trust-badge__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gray-50) 0%, white 100%);
    border: 1px solid var(--color-gray-200);
    border-radius: 16px;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.trust-badge__icon svg {
    width: 24px;
    height: 24px;
}

.trust-badge:hover .trust-badge__icon {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 45, 114, 0.2);
}

.trust-badge span {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text);
}

/* ==========================================================================
   STATISTICS SECTION
   ========================================================================== */

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.stat {
    text-align: center;
    padding: var(--space-6);
    position: relative;
}

.stat::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: rgba(255,255,255,0.2);
}

.stat:last-child::after {
    display: none;
}

.stat__number {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat__label {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

    .stat:nth-child(2)::after {
        display: none;
    }
}

/* ==========================================================================
   HOW IT WORKS - Stappen met verbinding
   ========================================================================== */

.how-it-works .grid--3 {
    position: relative;
}

/* Verbindingslijn tussen stappen */
.how-it-works .grid--3::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gray-200) 0%, var(--color-accent) 50%, var(--color-gray-200) 100%);
    z-index: 0;
}

.how-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 var(--space-4);
}

.how-step__number {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-5);
    background: linear-gradient(135deg, var(--color-primary) 0%, #003d99 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 45, 114, 0.25);
    transition: all 0.3s ease;
}

.how-step:last-child .how-step__number {
    background: var(--gradient-accent);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.25);
}

.how-step:hover .how-step__number {
    transform: scale(1.1);
}

.how-step__title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-3);
}

.how-step__text {
    color: var(--color-text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .how-it-works .grid--3::before {
        display: none;
    }
}

/* ==========================================================================
   TESTIMONIALS - Vernieuwde cards
   ========================================================================== */

.testimonial {
    background: white;
    border-radius: 24px;
    padding: var(--space-8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--color-gray-100);
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial__stars {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
}

.testimonial__stars svg {
    width: 20px;
    height: 20px;
    fill: #FFD700;
    stroke: #FFD700;
}

.testimonial__quote {
    font-style: italic;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 1;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: var(--font-size-lg);
}

.testimonial__avatar--blue {
    background: linear-gradient(135deg, var(--color-primary) 0%, #003d99 100%);
}

.testimonial__avatar--green {
    background: var(--gradient-accent);
}

.testimonial__avatar--dark {
    background: var(--gradient-dark);
}

.testimonial__info {
    flex: 1;
}

.testimonial__name {
    font-weight: 600;
    color: var(--color-text);
}

.testimonial__role {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

/* ==========================================================================
   M365 SECTION - Verbeterde layout
   ========================================================================== */

.m365__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.m365__quote {
    position: relative;
    font-size: var(--font-size-xl);
    font-style: italic;
    color: var(--color-primary);
    padding: var(--space-6) var(--space-8);
    background: linear-gradient(135deg, #f8fafc 0%, white 100%);
    border-radius: 20px;
    border-left: 4px solid var(--color-primary);
    margin-bottom: var(--space-6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.m365__price-box {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    padding: var(--space-8);
    margin-bottom: var(--space-6);
    border: 1px solid var(--color-gray-200);
}

.m365__price {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--color-accent);
}

.m365__visual {
    display: flex;
    justify-content: center;
}

.m365__visual-card {
    background: linear-gradient(135deg, #f8fafc 0%, white 100%);
    border-radius: 24px;
    padding: var(--space-10);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* M365 apps grid */
.m365__apps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.m365__app {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: white;
    transition: transform 0.3s ease;
}

.m365__app:hover {
    transform: scale(1.1);
}

.m365__app--outlook { background: #0078D4; }
.m365__app--excel { background: #107C10; }
.m365__app--onenote { background: #7719AA; }
.m365__app--teams { background: #6264A7; }

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

    .m365__visual {
        order: -1;
    }
}

/* ==========================================================================
   HYBRID SECTION
   ========================================================================== */

.hybrid__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.hybrid__visual {
    display: flex;
    justify-content: center;
}

.hybrid__icon-box {
    background: linear-gradient(145deg, white 0%, #f8fafc 100%);
    border-radius: 32px;
    padding: var(--space-12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.hybrid__icon-box:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.hybrid__icon {
    width: 200px;
    height: 200px;
    color: var(--color-primary);
}

.hybrid__steps {
    background: white;
    border-radius: 20px;
    padding: var(--space-6) var(--space-8);
    margin-bottom: var(--space-6);
    border-left: 4px solid var(--color-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.hybrid__result {
    background: var(--gradient-accent);
    border-radius: 20px;
    padding: var(--space-6) var(--space-8);
    margin-bottom: var(--space-6);
    color: white;
}

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

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 20% 20%, rgba(40, 167, 69, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 80% at 80% 80%, rgba(0, 100, 200, 0.2) 0%, transparent 50%);
}

.cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta__title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-4);
}

.cta__text {
    font-size: var(--font-size-lg);
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--space-8);
}

.cta__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER - Vernieuwd design
   ========================================================================== */

.site-footer {
    background: var(--gradient-dark);
    color: var(--color-gray-400);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-10);
}

.site-footer__logo {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-4);
    display: inline-block;
}

.site-footer__links a {
    color: var(--color-gray-400);
    transition: color 0.3s ease;
}

.site-footer__links a:hover {
    color: white;
}

.site-footer__bottom {
    margin-top: var(--space-12);
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 900px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__brand {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__brand {
        grid-column: span 1;
    }
}

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.4s; }

.reveal-stagger.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   UTILITY COMPONENTS
   ========================================================================== */

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 45, 114, 0.3);
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: var(--space-5);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.is-visible {
    transform: translateY(0);
}

/* Notification */
.notification {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    padding: var(--space-4) var(--space-6);
    background: var(--color-gray-900);
    color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1000;
}

.notification.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.notification--success {
    background: var(--color-accent);
}

.notification--error {
    background: var(--color-error);
}

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

@media (max-width: 600px) {
    .hero {
        min-height: auto;
    }

    .hero__inner {
        padding: var(--space-12) 0;
    }

    .hero__title {
        font-size: var(--font-size-3xl);
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .section {
        padding: var(--space-16) 0;
    }

    .trust-badges {
        gap: var(--space-6);
    }

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

    .stat::after {
        display: none;
    }
}
