/* ====================================
   GLOBAL STYLES & RESET
   ==================================== */

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

:root {
    /* Colors - Emerald Green Theme V3 */
    --primary-color: #22c55e;
    --primary-dark: #16a34a;
    --primary-light: #4ade80;
    --secondary-color: #10b981;
    --secondary-dark: #059669;
    
    --accent-color: #10b981;
    --accent-light: #34d399;
    
    --dark: #0f172a;
    --dark-light: #1e293b;
    --dark-lighter: #334155;
    
    --light: #f8fafc;
    --light-dark: #e2e8f0;
    
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    --gradient-secondary: linear-gradient(135deg, #10b981 0%, #22c55e 100%);
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    
    /* Shadows - Professional (reduced depth) */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 12px 24px rgba(0, 0, 0, 0.12);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', var(--font-primary);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* ====================================
   CUSTOM SCROLLBAR
   ==================================== */

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light);
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 100px !important;
}

::-webkit-scrollbar-track {
    background: var(--light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    border: 2px solid var(--light);
    transition: background var(--transition-base);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

::-webkit-scrollbar-thumb:active {
    background: var(--primary-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* ====================================
   TYPOGRAPHY
   ==================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--dark);
}

h1 {
    font-size: clamp(3.375rem, 6vw, 5.4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

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

/* ====================================
   BUTTONS - Premium 3D Glassy Effect
   ==================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Subtle shine effect overlay - reduced for professionalism */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

/* Subtle glass reflection - reduced for professionalism */
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.12),
        transparent
    );
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    pointer-events: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 
        0 2px 8px rgba(34, 197, 94, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(34, 197, 94, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: var(--primary-dark);
}

.btn-green-hover:hover {
    color: var(--white) !important;
    background: var(--primary-color) !important;
    box-shadow: 
        0 4px 12px rgba(34, 197, 94, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 6px rgba(34, 197, 94, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--light-dark);
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 10px rgba(34, 197, 94, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 10px rgba(34, 197, 94, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

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

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-outline-light:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(34, 197, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    text-shadow: none;
    width: 100%;
    justify-content: center;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem var(--spacing-md);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    transition: all var(--transition-base);
}

.navbar.scrolled .nav-container {
    padding: 1rem var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark);
    transition: all var(--transition-base);
}

.navbar.scrolled .logo {
    font-size: 1.75rem;
    gap: 0.65rem;
}

.logo-image {
    height: 45px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: all var(--transition-base);
}

.navbar.scrolled .logo-image {
    height: 35px;
}

.logo-text {
    display: flex;
    align-items: center;
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    font-size: 1.125rem;
    transition: all var(--transition-base);
}

.navbar.scrolled .nav-link {
    font-size: 1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Disable underline for button styled nav-links */
.nav-link.btn-primary-nav::after {
    display: none;
}

.btn-primary-nav {
    display: inline-block;
    width: fit-content;
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.95) 0%, 
        rgba(16, 185, 129, 0.95) 100%
    );
    color: var(--white);
    padding: 0.625rem 1.75rem;
    font-size: 1.125rem;
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: 
        0 2px 6px rgba(34, 197, 94, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
    transition: all 0.25s ease;
    vertical-align: middle;
}

.navbar.scrolled .btn-primary-nav {
    padding: 0.625rem 1.5rem;
    font-size: 1rem;
}

/* Subtle shine effect overlay */
.btn-primary-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.12),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-primary-nav:hover::before,
.nav-link.btn-primary-nav:hover::before {
    left: 100%;
}

.btn-primary-nav:hover,
.nav-link.btn-primary-nav:hover {
    box-shadow: 
        0 3px 10px rgba(34, 197, 94, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 1) 0%, 
        rgba(16, 185, 129, 1) 100%
    );
    transform: translateY(-1px);
}

/* Subtle glass reflection */
.btn-primary-nav::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    pointer-events: none;
}

.btn-primary-nav.active {
    background: var(--gradient-primary);
    box-shadow: 
        0 2px 8px rgba(34, 197, 94, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    transform-origin: center;
}

.navbar.scrolled .hamburger span {
    width: 25px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8.2px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8.2px) rotate(-45deg);
}

/* ====================================
   HERO SECTION
   ==================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #dbeafe 100%);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Langzame animatie voor groene accenten (shape-1 en shape-2 met veel meer verticale beweging) */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.5;
    }
    25% {
        transform: translate(60px, -400px) scale(1.15) rotate(5deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(-40px, 200px) scale(0.85) rotate(-5deg);
        opacity: 0.4;
    }
    75% {
        transform: translate(-70px, -350px) scale(1.1) rotate(3deg);
        opacity: 0.55;
    }
}

/* Aparte animatie voor gecentreerde shape */
@keyframes floatCenter {
    0%, 100% {
        transform: translate(-50%, -50%) translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.5;
    }
    25% {
        transform: translate(-50%, -50%) translate(100px, -80px) scale(1.2) rotate(8deg);
        opacity: 0.65;
    }
    50% {
        transform: translate(-50%, -50%) translate(-80px, -100px) scale(0.8) rotate(-8deg);
        opacity: 0.35;
    }
    75% {
        transform: translate(-50%, -50%) translate(-110px, -70px) scale(1.15) rotate(5deg);
        opacity: 0.6;
    }
}

.shape {
    position: absolute;
    border-radius: var(--radius-2xl);
    opacity: 0.5;
    filter: blur(60px);
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-light);
    top: -100px;
    right: -100px;
    animation: float 12s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: -150px;
    left: -150px;
    animation: float 11s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: 50%;
    left: 50%;
    animation: floatCenter 13s ease-in-out infinite;
}

.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.hero-trust {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.trust-item:hover {
    opacity: 1;
}

.trust-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    /* overflow: hidden; */
    /* box-shadow: var(--shadow-2xl); */
}

.storysetAttribute{
    display: block;
    text-align: center;
    color: #94a3b8a4;
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.floating-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
}

.hero-badge {
    position: absolute;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    animation: fadeInOnly 1s ease-out forwards, badgeFloat 4s ease-in-out infinite;
    z-index: 10;
}

.hero-badge i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.badge-1 {
    top: 5%;
    right: 2%;
    animation-delay: 0.5s, 1.5s;
    opacity: 0;
}

.badge-2 {
    bottom: 35%;
    left: 2%;
    animation-delay: 1s, 3s;
    opacity: 0;
}

.badge-3 {
    bottom: 9%;
    right: 2%;
    animation-delay: 1.5s, 4.5s;
    opacity: 0;
}

/* Badge cycling container - tijdelijk verborgen */
.hero-badges-mobile {
    display: none !important;
}

.hero-badges-mobile .hero-badge {
    position: absolute;
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    animation: badgeCycle 9s ease-in-out infinite;
}

/* Badge 1 - Start meteen */
.hero-badges-mobile .hero-badge:nth-child(1) {
    animation-delay: 0s;
}

/* Badge 2 - Start na 3 seconden */
.hero-badges-mobile .hero-badge:nth-child(2) {
    animation-delay: 3s;
}

/* Badge 3 - Start na 6 seconden */
.hero-badges-mobile .hero-badge:nth-child(3) {
    animation-delay: 6s;
}

/* Cycling animatie: fade in, stay, fade out */
@keyframes badgeCycle {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    5% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    30% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    35% {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.80rem;
    font-weight: 500;
}

.scroll-indicator span {
    opacity: 0.7;
    animation: scrollTextFloat 2.5s ease-in-out infinite;
}

@keyframes scrollTextFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* Verticale lijn container */
.scroll-line {
    width: 2px;
    height: 35px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

/* Geanimeerde lijn die naar beneden beweegt */
.scroll-line-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--primary-color) 50%,
        transparent 100%
    );
    animation: scrollLineMove 2.5s ease-in-out infinite;
}

@keyframes scrollLineMove {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(250%);
        opacity: 0;
    }
}

/* ====================================
   SECTIONS
   ==================================== */

.section {
    padding: var(--spacing-3xl) 0;
    width: 100%;
    overflow: hidden;
}

.section-dark {
    background: var(--gradient-dark);
    color: var(--white);
}

.section-dark .section-title,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.section-dark p {
    color: var(--light-dark);
}

.section-light {
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.15); /* Verbeterd contrast - groen ipv blauw */
    color: var(--primary-dark); /* Verbeterd contrast - was primary-color */
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700; /* Verbeterd contrast - was 600 */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-md);
}

.section-dark .section-label {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.section-title {
    margin-bottom: var(--spacing-md);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
}

.section-cta {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

/* ====================================
   TRUST BAR
   ==================================== */

.trust-bar {
    background: var(--white);
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--light-dark);
}

.trust-bar-text {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .trust-logos {
        gap: var(--spacing-lg);
    }
    
    .trust-logo {
        height: 50px;
    }
    
    .trust-logo img {
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .trust-logos {
        gap: var(--spacing-md);
    }
    
    .trust-logo {
        height: 40px;
    }
    
    .trust-logo img {
        max-width: 80px;
    }
}

.trust-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all var(--transition-base);
    filter: grayscale(100%) brightness(0);
    height: 60px;
}

.trust-logo:hover {
    opacity: 0.9;
    filter: grayscale(100%) brightness(0);
    transform: scale(1.05);
}

.trust-logo img {
    max-height: 100%;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ====================================
   SERVICES
   ==================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: var(--spacing-lg);
    width: 100%;
}

.service-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
}

.service-description {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 1rem;
}

/* ====================================
   PACKAGES
   ==================================== */

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--spacing-md);
    width: 100%;
    margin: 0 auto;
    max-width: 1400px;
}

/* Bredere container voor packages sectie */
.packages-preview .container,
.packages-full .container {
    max-width: 1400px;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-xl);
    position: relative;
    transition: all var(--transition-base);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Ensure text is dark in regular package cards */
.package-card .package-name,
.package-card .package-subtitle,
.package-card .package-features li,
.package-card .price-amount,
.package-card .price-period {
    color: var(--dark);
}

.package-card .package-subtitle,
.package-card .package-features li {
    color: var(--text-dark);
}

.package-featured {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.package-featured:hover {
    transform: translateY(-5px);
}

.package-featured .package-name,
.package-featured .package-subtitle,
.package-featured .package-features li,
.package-featured .price-amount,
.package-featured .price-period {
    color: var(--white);
}

/* Fix button colors in package cards on dark backgrounds */
.section-dark .package-card .btn-outline-light {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.section-dark .package-card .btn-outline-light:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Keep featured card buttons white */
.section-dark .package-featured .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.section-dark .package-featured .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.package-header {
    margin-bottom: var(--spacing-lg);
}

.package-name {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-xs);
}

.package-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
}

.package-featured .package-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.package-price {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--light-dark);
}

.package-featured .package-price {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    font-family: var(--font-heading);
}

.price-period {
    color: var(--text-light);
    margin-left: 0.5rem;
}

/* Ensure price period is visible in regular cards */
.package-card .price-period {
    color: var(--text-light);
}

.package-featured .price-period {
    color: rgba(255, 255, 255, 0.9);
}

.package-features {
    margin-bottom: var(--spacing-xl);
    flex-grow: 1;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-dark);
}

.package-features i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Ensure icons are visible in regular package cards */
.package-card .package-features i {
    color: var(--secondary-color);
}

.package-featured .package-features i {
    color: var(--white);
}

/* ====================================
   PORTFOLIO
   ==================================== */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: var(--spacing-xl);
    width: 100%;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.568), transparent);
    padding: var(--spacing-xl);
    transform: translateY(0);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.portfolio-title {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.portfolio-category {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.portfolio-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.portfolio-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* ====================================
   TESTIMONIALS
   ==================================== */

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 400px;
}

.testimonial-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all var(--transition-slow);
    pointer-events: none;
    z-index: 1;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 2;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-stars i {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xl);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark); /* Zorgt voor juist contrast nu het een <p> is */
}

.author-position {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xl);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--light-dark);
    cursor: pointer;
    transition: all var(--transition-base);
}

.dot.active,
.dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Modern Testimonials Grid */
.testimonials-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: var(--spacing-xl);
    width: 100%;
}

.testimonial-card-modern {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    border: 1px solid var(--light-dark);
    display: flex;
    flex-direction: column;
}

.testimonial-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.testimonial-quote-icon {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    font-size: 2.5rem;
    color: rgba(34, 197, 94, 0.1);
    line-height: 1;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    gap: var(--spacing-sm);
}

.testimonial-card-modern .testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0;
}

.testimonial-card-modern .testimonial-stars i {
    color: #fbbf24;
    font-size: 1.125rem;
}

.testimonial-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.1) 0%, 
        rgba(16, 185, 129, 0.1) 100%
    );
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.testimonial-verified i {
    font-size: 0.875rem;
}

.testimonial-card-modern .testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xl);
    font-style: normal;
    flex-grow: 1;
}

.testimonial-card-modern .testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--light-dark);
}

.testimonial-card-modern .author-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--light);
}

.testimonial-card-modern .author-info {
    flex: 1;
}

.testimonial-card-modern .author-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.125rem;
    color: var(--dark);
}

.testimonial-card-modern .author-position {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.author-project {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    background: var(--light);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

/* ====================================
   WHY US
   ==================================== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: var(--spacing-xl);
    width: 100%;
}

.why-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.why-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.why-description {
    color: var(--text-light);
    line-height: 1.7;
}

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

.cta-section {
    background: var(--gradient-dark);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(80px);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.cta-description {
    font-size: 1.25rem;
    color: var(--light-dark);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
}

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 500;
}

.cta-info-item i {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

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

.footer {
    background: var(--dark);
    color: var(--light-dark);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
    display: flex;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid var(--dark-lighter);
    width: 100%;
}

.footer-content > div:first-child {
    flex: 0 0 320px;
    max-width: 320px;
}

.footer-content > div:not(:first-child) {
    flex: 1;
    min-width: 0;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.footer-logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--text-lighter);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--dark-lighter);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 1.5px;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--text-lighter);
    transition: all var(--transition-base);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-lighter);
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-top: 0.25rem;
    width: 1.125rem;
    flex-shrink: 0;
    text-align: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-bottom p {
    color: var(--text-lighter);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-legal a {
    color: var(--text-lighter);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ====================================
   FLOATING CONTACT BUTTONS
   ==================================== */

.floating-contact-buttons {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: all 0.25s ease;
    text-decoration: none;
    border: none;
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    border-radius: var(--radius-full) var(--radius-full) 0 0;
    pointer-events: none;
}

.floating-btn-whatsapp {
    background: #25D366;
}

.floating-btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 6px 16px rgba(37, 211, 102, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.floating-btn-phone {
    background: var(--primary-color);
}

.floating-btn-phone:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 6px 16px rgba(34, 197, 94, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.floating-btn:active {
    transform: translateY(-1px) scale(1);
}

/* Tooltip voor desktop */
.floating-btn-tooltip {
    position: absolute;
    left: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.floating-btn-tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: var(--dark);
}

.floating-btn:hover .floating-btn-tooltip {
    opacity: 1;
    visibility: visible;
    left: 80px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-contact-buttons {
        bottom: 1rem;
        left: 1rem;
        gap: 0.75rem;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }
    
    .floating-contact-buttons.visible {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    
    .floating-btn {
        width: 56px;
        height: 56px;
        font-size: 1.35rem;
    }
    
    .floating-btn-tooltip {
        display: none; /* Verberg tooltip op mobiel */
    }
}

/* ====================================
   SCROLL TO TOP
   ==================================== */

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 
        0 4px 12px rgba(34, 197, 94, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.25s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.scroll-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    border-radius: var(--radius-full) var(--radius-full) 0 0;
    pointer-events: none;
}

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

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 6px 16px rgba(34, 197, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: var(--primary-dark);
}

.scroll-top:active {
    transform: translateY(-1px);
}

/* Progress Ring */
.scroll-progress-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    pointer-events: none;
}

.scroll-progress-ring-circle {
    transition: stroke-dashoffset 0.1s linear;
}

.scroll-progress-ring-progress {
    stroke-dasharray: 169.65; /* 2 * PI * radius (27) */
    stroke-dashoffset: 169.65;
    transition: stroke-dashoffset 0.1s linear;
    stroke-linecap: round;
}

.scroll-top i {
    position: relative;
    z-index: 1;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-2xl);
    padding: var(--spacing-lg);
    padding-bottom: calc(var(--spacing-lg) + env(safe-area-inset-bottom));
    transform: translateY(100%) translateZ(0);
    transition: transform var(--transition-base), opacity var(--transition-base);
    z-index: 9999;
    will-change: transform;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.cookie-banner.visible {
    transform: translateY(0) translateZ(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cookie-banner.hidden {
    display: none !important;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.cookie-content p {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin: 0;
    color: var(--text-dark);
}

.cookie-content i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

/* ====================================
   PAGE HEADER
   ==================================== */

.page-header {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 var(--spacing-sm);
}

.page-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-md);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-md);
    color: var(--dark);
}

.page-description {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ====================================
   SERVICE DETAIL
   ==================================== */

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.feature-list {
    margin-bottom: var(--spacing-xl);
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.feature-list i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.tag {
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
}

.service-cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.service-detail-image {
    position: relative;
}

.service-detail-image img {
    width: 100%;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.service-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-md);
    width: 90%;
}

.stat-card {
    flex: 1;
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.stat-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.stat-card h4 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.stat-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.tech-stack {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

.tech-stack h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.tech-icons span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
}

.tech-icons i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.service-features-grid {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.feature-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.uptime-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.uptime-badge i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.uptime-badge h4 {
    font-size: 1.5rem;
    color: var(--dark);
    margin: 0;
}

.uptime-badge p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.pricing-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.price-option {
    padding: var(--spacing-lg);
    background: var(--light);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.price-option.featured {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05);
}

.price-option:hover {
    transform: translateY(-3px);
}

.price-option.featured:hover {
    transform: scale(1.02) translateY(-3px);
}

.price-option h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.price-option.featured h4 {
    color: var(--white);
}

.price-option .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.price-option.featured .price {
    color: var(--white);
}

.price-option p:last-child {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.price-option.featured p:last-child {
    color: rgba(255, 255, 255, 0.9);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto var(--spacing-md);
}

.process-step h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
}

.process-step p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.seo-results {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

.seo-results h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    color: var(--dark);
}

.result-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) 0;
}

.result-item i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.result-item h5 {
    font-size: 1.5rem;
    color: var(--dark);
    margin: 0;
}

.result-item p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* ====================================
   PACKAGES PAGE STYLES
   ==================================== */

.packages-full {
    padding: var(--spacing-3xl) 0;
}

.packages-grid-full {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--spacing-md);
    width: 100%;
    margin: 0 auto;
}

.package-card-full {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    border: 2px solid var(--light-dark);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card-full:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.package-card-featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-2xl);
}

.package-description {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    background: var(--light);
    border-radius: var(--radius-lg);
}

.package-description p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.features-title {
    font-size: 1.125rem;
    margin: var(--spacing-lg) 0 var(--spacing-md);
    color: var(--dark);
}

.package-features-full {
    margin-bottom: var(--spacing-xl);
    flex-grow: 1;
}

.package-features-full li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--light-dark);
}

.package-features-full li:last-child {
    border-bottom: none;
}

.package-features-full i {
    color: var(--secondary-color);
    font-size: 1.125rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.package-timeline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: var(--spacing-md);
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    margin-top: auto;
    font-weight: 600;
    color: var(--primary-color);
}

.package-timeline i {
    font-size: 1.25rem;
}

/* ====================================
   COMPARISON TABLE
   ==================================== */

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: var(--spacing-xl);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-table thead {
    background: var(--gradient-dark);
    color: var(--white);
}

.comparison-table th {
    padding: var(--spacing-lg);
    text-align: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: var(--spacing-md) var(--spacing-lg);
    text-align: center;
    border-bottom: 1px solid var(--light-dark);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table tbody tr:hover {
    background: var(--light);
}

.featured-col {
    background: rgba(99, 102, 241, 0.05);
}

.comparison-table .featured-col {
    font-weight: 600;
}

.price-row {
    background: var(--light);
    font-size: 1.25rem;
}

.text-success {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.text-muted {
    color: var(--text-lighter);
    font-size: 1.25rem;
}

/* ====================================
   FAQ SECTION
   ==================================== */

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: var(--spacing-lg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--dark);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform var(--transition-base);
    font-size: 1.25rem;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

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

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

/* ====================================
   ADD-ONS SECTION
   ==================================== */

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: var(--spacing-lg);
    width: 100%;
}

.addon-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.addon-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.addon-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 2rem;
    color: var(--white);
}

.addon-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.addon-card p {
    color: var(--light-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.addon-price {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
}

/* ====================================
   PORTFOLIO PAGE STYLES
   ==================================== */

.portfolio-filter-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
    border-bottom: 2px solid var(--light-dark);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.portfolio-filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--light);
    color: var(--text-dark);
    border: 2px solid var(--light-dark);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.portfolio-filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(34, 197, 94, 0.2);
}

.portfolio-filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(34, 197, 94, 0.2);
}

.portfolio-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr));
    gap: var(--spacing-xl);
    width: 100%;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all var(--transition-base);
}

.portfolio-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
    display: flex;
    align-items: flex-start;
    padding: var(--spacing-xl);
    transform: translateY(0);
    transition: all var(--transition-base);
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 40%, transparent 100%);
}

.portfolio-content {
    width: 100%;
}

.portfolio-category {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
}

.portfolio-title {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.portfolio-excerpt {
    color: var(--light-dark);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
}

.portfolio-tags span {
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 500;
}

.portfolio-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.portfolio-link-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* ====================================
   MODERN PORTFOLIO CARDS
   ==================================== */

.portfolio-card-modern {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--light-dark);
}

.portfolio-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.portfolio-card-image {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: var(--light);
}

.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-card-modern:hover .portfolio-card-image img {
    transform: scale(1.08);
}

.portfolio-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.portfolio-card-modern:hover .portfolio-image-overlay {
    opacity: 1;
}

.portfolio-view-btn {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 3px 10px rgba(34, 197, 94, 0.25);
    transform: translateY(10px);
    transition: all 0.25s ease;
}

.portfolio-card-modern:hover .portfolio-view-btn {
    transform: translateY(0);
    background: var(--primary-dark);
}

.portfolio-card-content {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-card-header {
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.portfolio-card-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.1) 0%, 
        rgba(16, 185, 129, 0.1) 100%
    );
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.portfolio-card-category i {
    font-size: 0.9rem;
}

.portfolio-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.portfolio-card-description {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.portfolio-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--light-dark);
}

.portfolio-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-card-tags span {
    padding: 0.375rem 0.75rem;
    background: var(--light);
    color: var(--text-dark);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.portfolio-card-modern:hover .portfolio-card-tags span {
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary-color);
}

.portfolio-card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 1rem;
    transition: all 0.25s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(34, 197, 94, 0.2);
}

.portfolio-card-link:hover {
    transform: scale(1.05) rotate(45deg);
    box-shadow: 0 3px 10px rgba(34, 197, 94, 0.25);
    background: var(--primary-dark);
}

/* ====================================
   STATS SECTION
   ==================================== */

.stats-section {
    background: var(--gradient-dark);
    padding: var(--spacing-3xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: var(--spacing-xl);
    width: 100%;
}

.stat-item {
    text-align: center;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.stat-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
}

.stat-item p {
    color: var(--light-dark);
    font-size: 1.125rem;
    margin: 0;
}

/* ====================================
   ABOUT PAGE STYLES
   ==================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-content {
    padding-right: var(--spacing-lg);
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: var(--spacing-xl);
    width: 100%;
}

.mv-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
}

.mv-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 2rem;
    color: var(--white);
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.mv-card p {
    line-height: 1.7;
}

.features-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr));
    gap: var(--spacing-xl);
    width: 100%;
}

.feature-list-item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.feature-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.feature-content p {
    line-height: 1.7;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 0;
}

.process-timeline::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    width: 2px;
    height: var(--timeline-progress, 0%);
    background: linear-gradient(180deg, var(--secondary-color), var(--primary-color));
    transition: height 0.3s ease-out;
    z-index: 1;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.timeline-item {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
    position: relative;
    z-index: 10;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 0 0 10px rgba(99, 102, 241, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.timeline-item.active .timeline-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0.3);
    transform: scale(1.1);
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.timeline-item.active .timeline-content {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(34, 197, 94, 0.3);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.timeline-content p {
    color: var(--light-dark);
    line-height: 1.7;
}

/* Process Grid (Homepage) */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 1100px;
    margin: 0 auto;
}

.process-card {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.process-number {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.process-card .process-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin: 0 auto var(--spacing-lg);
}

.process-card h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.process-card p {
    color: var(--light-dark);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
    gap: var(--spacing-lg);
    width: 100%;
}

.tech-item {
    background: var(--light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.tech-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.tech-item i {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    transition: color var(--transition-base);
}

.tech-item:hover i {
    color: var(--white);
}

.tech-item h4 {
    font-size: 1rem;
    margin: 0;
}

/* ====================================
   CONTACT PAGE STYLES
   ==================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
}

.contact-info-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-lg);
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-info-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    margin: 0;
    color: var(--text-light);
}

.contact-info-content a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.contact-form {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-label.required::after {
    content: '*';
    color: var(--primary-color);
    margin-left: 0.25rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--light-dark);
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-input.error,
.form-textarea.error {
    border-color: #ef4444;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.contact-map {
    background: var(--light);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.social-links-contact {
    margin-top: var(--spacing-xl);
}

.social-links-contact h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

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

/* ====================================
   BREAKPOINT: > 900px (Desktop)
   ==================================== */

/* Tablet: 2 kolommen voor packages */
@media (min-width: 901px) and (max-width: 1200px) {
    .packages-grid,
    .packages-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 901px) {
    /* Hero content blijft centered */
    .hero-container {
        display: flex;
        justify-content: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    /* Badges tijdelijk verborgen */
    .hero-badges-mobile {
        display: none !important;
    }
    
    /* Scroll indicator zichtbaar */
    .scroll-indicator {
        display: flex;
    }
    
    /* Buttons horizontal */
    .hero-buttons {
        display: flex;
        flex-direction: row;
        gap: var(--spacing-md);
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ====================================
   BREAKPOINT: ≤ 900px (Tablet & Kleiner)
   ==================================== */

@media (max-width: 900px) {
    
    /* Logo groter op mobiel - zowel scrolled als niet-scrolled */
    .logo {
        font-size: 3rem;
        gap: 0.6rem;
    }
    
    .navbar.scrolled .logo {
        font-size: 2.5rem;
        gap: 0.5rem;
    }
    
    .logo-image {
        height: 65px;
    }
    
    .navbar.scrolled .logo-image {
        height: 50px;
    }
    
    /* Hero content blijft centered */
    .hero-container {
        display: flex;
        justify-content: center;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    /* Badge cycling animation blijft actief op mobiel */
    
    /* Scroll indicator blijft zichtbaar */
    .scroll-indicator {
        display: flex;
    }
    
    /* Buttons verticaal gestacked */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Extra padding bovenaan */
    .hero {
        padding-top: 100px;
    }
    
    /* Hero title groter op mobiel/tablet */
    .hero-title,
    h1 {
        font-size: clamp(3rem, 6.5vw, 5rem) !important;
    }
    
    /* Floating shapes zichtbaar houden maar kleiner maken */
    .floating-shapes {
        display: block !important;
    }
    
    .shape-1 {
        width: 300px;
        height: 300px;
    }
    
    .shape-2 {
        width: 250px;
        height: 250px;
    }
    
    .shape-3 {
        width: 200px;
        height: 200px;
    }
    
    /* Packages grid aanpassingen */
    .packages-grid,
    .packages-grid-full {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .package-featured {
        transform: scale(1);
    }
    
    .package-featured:hover {
        transform: scale(1.02) translateY(-10px);
    }
    
    /* Other layout adjustments */
    .service-detail-grid,
    .about-grid,
    .contact-grid {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-xl);
    }
    
    .service-detail-grid.reverse {
        direction: ltr;
    }
    
    .about-content {
        padding-right: 0;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .features-list-grid {
        grid-template-columns: 1fr;
    }
    
    /* ====================================
       SERVICE DETAIL PAGE - MOBILE FIXES
       ==================================== */
    
    /* Verberg afbeeldingen op kleine schermen */
    .service-detail-image img {
        display: none !important;
    }
    
    /* Afbeelding komt onder content op mobiel */
    .service-detail-image {
        order: 2;
        position: relative;
        margin-top: 0;
    }
    
    .service-detail-content {
        order: 1;
    }
    
    /* Stat cards en badges: geen absolute positioning op mobiel */
    .service-stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        margin-top: var(--spacing-lg);
        flex-direction: row;
        gap: var(--spacing-md);
    }
    
    .service-stats .stat-card {
        flex: 1;
    }
    
    .tech-stack {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: var(--spacing-lg);
    }
    
    .service-features-grid {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: var(--spacing-lg);
        grid-template-columns: 1fr 1fr;
    }
    
    .uptime-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: var(--spacing-lg);
    }
    
    .seo-results {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: var(--spacing-lg);
    }
    
    /* Extra ruimte voor service sections */
    .service-detail {
        padding-bottom: var(--spacing-2xl);
    }
    
    /* ====================================
       NAVIGATION - Hamburger Menu vanaf 900px
       ==================================== */
    
    /* Hamburger menu actief */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-2xl);
        padding: 6rem var(--spacing-lg) var(--spacing-lg);
        transition: right var(--transition-base);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }
    
    .hamburger {
        display: flex;
    }
}

/* ====================================
   BREAKPOINT: ≤ 768px (Mobile)
   ==================================== */

@media (max-width: 768px) {
    /* Logo responsive styling voor kleinere mobiel - beide groter */
    .logo {
        font-size: 2.5rem;
        gap: 0.5rem;
    }
    
    .navbar.scrolled .logo {
        font-size: 2.1rem;
        gap: 0.35rem;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .navbar.scrolled .logo-image {
        height: 45px;
    }
    
    /* Scroll indicator verbergen op mobile */
    .scroll-indicator {
        display: none !important;
    }
    
    /* Floating shapes nog kleiner voor tablets */
    .shape-1 {
        width: 250px;
        height: 250px;
    }
    
    .shape-2 {
        width: 200px;
        height: 200px;
    }
    
    .shape-3 {
        width: 150px;
        height: 150px;
    }
    
    /* Hero title groter op tablet/mobiel */
    .hero-title,
    h1 {
        font-size: clamp(2.8rem, 6.5vw, 4.5rem) !important;
    }
    
    /* Extra hero content padding (XXL) */
    .hero-content {
        padding-top: var(--spacing-2xl);
    }
    
    /* Badge animaties met delays - handled by badgeCycle animation */
    
    /* Full width buttons */
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Grid layouts naar single column */
    .services-grid,
    .portfolio-grid,
    .portfolio-grid-full,
    .why-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    /* Modern Portfolio Cards - Mobile */
    .portfolio-card-image {
        height: 220px;
    }
    
    .portfolio-card-content {
        padding: var(--spacing-lg);
    }
    
    .portfolio-card-title {
        font-size: 1.25rem;
    }
    
    .portfolio-card-description {
        font-size: 0.875rem;
    }
    
    .portfolio-card-footer {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: flex-start;
    }
    
    .portfolio-card-link {
        align-self: flex-end;
    }
    
    /* Modern Testimonials - Mobile */
    .testimonials-grid-modern {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .testimonial-card-modern {
        padding: var(--spacing-lg);
    }
    
    .testimonial-quote-icon {
        font-size: 2rem;
        top: var(--spacing-md);
        right: var(--spacing-md);
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .testimonial-card-modern .testimonial-text {
        font-size: 0.9375rem;
    }
    
    /* Testimonials slider fixes voor mobiel */
    .testimonials-slider {
        min-height: 420px;
    }
    
    .testimonial-card {
        padding: var(--spacing-lg);
    }
    
    .testimonial-text {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }
    
    .testimonial-dots {
        margin-top: var(--spacing-md);
        padding-bottom: var(--spacing-sm);
    }
    
    /* CTA buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Footer */
    .footer-content {
        flex-wrap: wrap;
        gap: var(--spacing-lg);
    }
    
    .footer-content > div:first-child {
        flex: 1 1 100%;
    }
    
    .footer-content > div:not(:first-child) {
        flex: 1 1 calc(33.333% - var(--spacing-lg));
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Other elements */
    .pricing-simple {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before,
    .process-timeline::after {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Comparison table adjustments */
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: var(--spacing-sm);
    }
}

/* ====================================
   BREAKPOINT: ≤ 480px (Klein Mobile)
   ==================================== */

@media (max-width: 480px) {
    :root {
        --spacing-3xl: 3rem;
    }
    
    /* ====================================
       0. NAVIGATION - Extra kleine schermen
       ==================================== */
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-content > div {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
    
    .logo {
        font-size: 2.1rem;
        gap: 0.5rem;
    }
    
    .navbar.scrolled .logo {
        font-size: 1.8rem;
        gap: 0.35rem;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .navbar.scrolled .logo-image {
        height: 39px;
    }
    
    /* ====================================
       1. HERO SECTION - Verkleinde Titels
       ==================================== */
    
    /* Floating shapes extra klein voor mobiel */
    .shape-1 {
        width: 200px;
        height: 200px;
    }
    
    .shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .shape-3 {
        width: 120px;
        height: 120px;
    }
    
    .hero-title,
    h1 {
        font-size: clamp(2.7rem, 7.5vw, 3.9rem) !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    /* Verberg trust items op kleine schermen */
    .hero-trust {
        display: none;
    }
    
    /* Push hero content meer naar boven */
    .hero-content {
        padding-top: 0;
        margin-top: -1rem;
    }
    
    .hero-badge {
        font-size: 0.8rem !important;
        padding: 0.625rem 1rem;
    }
    
    .hero-badge i {
        font-size: 0.9rem;
    }
    
    /* Badge cycling blijft actief op kleinere schermen */
    
    /* Testimonials slider - extra hoogte voor kleine schermen */
    .testimonials-slider {
        min-height: 440px;
    }
    
    .testimonial-card {
        padding: var(--spacing-md);
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
    
    /* ====================================
       2. SECTION HEADERS - Betere Leesbaarheid
       ==================================== */
    
    .section-title,
    .page-title,
    h2 {
        font-size: clamp(1.5rem, 4vw, 2rem) !important;
        line-height: 1.3 !important;
    }
    
    .section-header {
        margin-bottom: var(--spacing-xl);
    }
    
    /* ====================================
       3. TRUST BAR - Extra Spacing
       ==================================== */
    
    .hero-trust {
        padding-bottom: 1.875rem;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }
    
    .trust-item {
        font-size: 0.875rem;
    }
    
    .trust-logos {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .trust-logo {
        font-size: 0.875rem;
    }
    
    /* ====================================
       4. PACKAGE CARDS - Betere Leesbaarheid
       ==================================== */
    
    .package-name {
        font-size: 1.5rem !important;
    }
    
    .price-amount {
        font-size: 2rem !important;
    }
    
    .package-features li,
    .package-features-full li {
        font-size: 0.875rem !important;
        line-height: 1.6 !important;
        padding: 0.5rem 0 !important;
    }
    
    .package-description p {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    /* ====================================
       5. TAP TARGETS - Touch-Friendly (min 44px)
       ==================================== */
    
    /* Navigation links */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        /* padding: 0.5rem 0; */
    }
    
    /* Footer links */
    .footer-links a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        padding: 0.375rem 0;
    }
    
    /* Social links */
    .social-link {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Service links */
    .service-link {
        padding: 0.75rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    /* ====================================
       6. BUTTONS - Betere Sizing & Padding
       ==================================== */
    
    .btn {
        font-size: 0.9rem;
        padding: 0.875rem 1.25rem;
        min-height: 44px;
    }
    
    .btn-lg {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        min-height: 48px;
    }
    
    .btn-sm {
        font-size: 0.8rem;
        padding: 0.625rem 1rem;
        min-height: 40px;
    }
    
    /* ====================================
       7. SERVICE CARDS - Compactere Layout
       ==================================== */
    
    .service-card {
        padding: var(--spacing-md);
    }
    
    .service-title {
        font-size: 1.25rem !important;
    }
    
    .service-description {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
    
    /* ====================================
       8. COMPARISON TABLE - Horizontale Scroll
       ==================================== */
    
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* Smooth iOS scrolling */
        margin: 0 -1rem; /* Extend to edges */
        padding: 0 1rem;
    }
    
    .comparison-table {
        min-width: 600px; /* Force horizontal scroll */
        font-size: 0.8rem;
    }
    
    .comparison-table th:first-child,
    .comparison-table td:first-child {
        position: sticky;
        left: 0;
        background: var(--white);
        z-index: 10;
        box-shadow: 2px 0 4px rgba(0, 0, 0, 0.05);
    }
    
    .comparison-table thead th:first-child {
        background: var(--dark);
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: var(--spacing-sm);
        white-space: nowrap;
    }
    
    .comparison-table td:first-child {
        white-space: normal; /* Allow text wrap in first column */
        min-width: 120px;
    }
    
    /* ====================================
       ADDITIONAL IMPROVEMENTS
       ==================================== */
    
    .scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .scroll-progress-ring {
        transform: translate(-50%, -50%) rotate(-90deg) scale(0.833); /* 50/60 = 0.833 */
    }
    
    .portfolio-filters {
        flex-direction: column;
    }
    
    .portfolio-filter-btn {
        width: 100%;
        min-height: 44px;
    }
    
    .stat-card,
    .service-stats {
        flex-direction: column;
    }
    
    .hero-badge {
        position: static;
        margin-bottom: var(--spacing-md);
        display: inline-flex;
    }
    
    .hero-image-wrapper {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .packages-grid-full {
        grid-template-columns: 1fr;
    }
    
    /* Contact form improvements */
    .form-input,
    .form-textarea,
    .form-select {
        font-size: 16px; /* Prevent zoom on iOS */
        min-height: 44px;
    }
    
    /* FAQ items */
    .faq-question {
        padding: var(--spacing-md);
        min-height: 44px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    /* Addon cards */
    .addon-card h3 {
        font-size: 1.125rem;
    }
    
    .addon-card p {
        font-size: 0.875rem;
        line-height: 1.6;
    }
}

/* ===================================
   Legal Pages (Privacy Policy & Algemene Voorwaarden)
   =================================== */

.legal-hero {
    min-height: auto !important;
    padding: calc(var(--spacing-3xl) * 2.5) 0 calc(var(--spacing-3xl) * 1.5);
    background: linear-gradient(135deg, #e8f5e9 0%, var(--white) 100%) !important;
    overflow: visible;
    padding-top: 180px;
    position: relative;
}

/* Verberg hero-background en floating-shapes op legal pagina's */
.legal-hero .hero-background,
.legal-hero .floating-shapes {
    display: none !important;
}

.legal-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-hero .hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.legal-hero .hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    font-weight: 500;
}

.legal-content {
    padding: var(--spacing-3xl) 0;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-intro {
    background: #e8f5e9;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-2xl);
    border-left: 4px solid var(--primary-color);
}

.legal-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    font-weight: 400;
}

.legal-section {
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.legal-section h2 i {
    font-size: 1.625rem;
}

.legal-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.legal-section p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin: var(--spacing-md) 0;
}

.legal-section ul li {
    padding-left: var(--spacing-lg);
    position: relative;
    margin-bottom: var(--spacing-sm);
    line-height: 1.75;
    color: var(--text-light);
    font-size: 1.0625rem;
    font-weight: 400;
}

.legal-section ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.legal-section a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.legal-section strong {
    color: var(--text-dark);
    font-weight: 700;
}

.legal-section em {
    font-style: italic;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 400;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-hero {
        padding: calc(var(--spacing-3xl) * 1.8) 0 var(--spacing-2xl) !important;
        padding-top: 150px !important;
    }

    .legal-hero .hero-title {
        font-size: clamp(2rem, 6vw, 2.75rem);
        font-weight: 700;
    }
    
    .legal-hero .hero-subtitle {
        font-size: 1rem;
        font-weight: 500;
    }

    .legal-intro {
        padding: var(--spacing-lg);
    }

    .legal-intro p {
        font-size: 1.0625rem;
        font-weight: 400;
    }

    .legal-section h2 {
        font-size: 1.625rem;
        font-weight: 700;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }

    .legal-section h3 {
        font-size: 1.375rem;
        font-weight: 600;
    }
    
    .legal-section p {
        font-size: 1rem;
        font-weight: 400;
    }
    
    .legal-section ul li {
        font-size: 1rem;
        font-weight: 400;
    }
}

@media (max-width: 480px) {
    .legal-hero {
        padding: calc(var(--spacing-3xl) * 1.5) 0 var(--spacing-xl) !important;
        padding-top: 140px !important;
    }
    
    .legal-hero .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        font-weight: 700;
    }
    
    .legal-hero .hero-subtitle {
        font-size: 0.9375rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .legal-section h3 {
        font-size: 1.25rem;
        font-weight: 600;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 0.9375rem;
        font-weight: 400;
    }
}
