:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #10b981;
    --secondary-dark: #059669;
    --accent-color: #f59e0b;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-accent: #f3f4f6;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,0 1000,300 1000,1000 0,700"/><polygon fill="rgba(255,255,255,0.05)" points="0,200 1000,0 1000,400 0,600"/></svg>') no-repeat center center;
    background-size: cover;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.company-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* New Logo Styling */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.brand-text {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}

.brand-text .samen {
    color: #1d4ed8;
}

.brand-text .vergelijken {
    color: white;
}

.brand-text .be-suffix {
    background: linear-gradient(135deg, #f59e0b 0%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.company-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    line-height: 1.5;
}

.btn-primary {
    background-color: var(--bg-primary);
    color: var(--primary-color);
    border-color: var(--bg-primary);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-primary);
    border-color: var(--bg-primary);
}

.btn-secondary:hover {
    background-color: var(--bg-primary);
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

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

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background-color: var(--bg-secondary);
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(59,130,246,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    z-index: 1;
}

.mission-section .container {
    position: relative;
    z-index: 2;
}

.mission-header {
    text-align: center;
    margin-bottom: 4rem;
}

.mission-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-header p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.mission-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.mission-card {
    background: var(--bg-primary);
    border-radius: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    opacity: 0;
    width: 100%;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: 24px 24px 0 0;
}

.mission-card.slide-left {
    transform: translateX(-100px);
}

.mission-card.slide-right {
    transform: translateX(100px);
}

.mission-card.animate {
    opacity: 1;
    transform: translateX(0);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    min-height: 200px;
}

.mission-card.slide-right .mission-content {
    flex-direction: row-reverse;
}

.mission-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.mission-icon {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.3);
    transition: all 0.4s ease;
}

.mission-card:hover .mission-icon {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.4);
}

.mission-icon svg {
    stroke: currentColor;
    width: 48px;
    height: 48px;
}

.mission-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent);
    z-index: 1;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

.mission-text {
    flex: 1;
}

.mission-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.mission-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.mission-benefit {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary-color);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-benefit {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 1.2rem;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: var(--bg-primary);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.mission-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02), rgba(16, 185, 129, 0.02));
    z-index: 1;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Facts Section */
.facts-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.facts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="10" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="80" cy="30" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="40" cy="80" r="2.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="70" r="1.2" fill="rgba(255,255,255,0.07)"/></svg>') repeat;
    z-index: 1;
}

.facts-section .container {
    position: relative;
    z-index: 2;
}

.facts-header {
    text-align: center;
    margin-bottom: 4rem;
}

.facts-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #f0f9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.facts-header p {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.fact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.fact-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 20px 20px 0 0;
}

.fact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.fact-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fact-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.fact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.fact-icon svg {
    width: 48px;
    height: 48px;
    stroke: currentColor;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.fact-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.fact-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.fact-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: auto;
    flex-grow: 1;
}

.fact-highlight {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.fact-card:hover .fact-highlight {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.facts-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.facts-cta-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.facts-cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.facts-cta .btn {
    position: relative;
    overflow: hidden;
}

.facts-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.facts-cta .btn:hover::before {
    left: 100%;
}

/* Advice Section */
.advice-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

.advice-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(16, 185, 129, 0.02) 100%);
    z-index: 1;
}

.advice-section .container {
    position: relative;
    z-index: 3;
}

/* Electric Thunder Animations */
.electric-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.electric-bolt {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, #ffa500 50%, #ffff00 70%, transparent 100%);
    opacity: 0;
    animation: thunderStrike 4s infinite;
}

.electric-bolt:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 2.5s;
}

.electric-bolt:nth-child(2) {
    left: 30%;
    animation-delay: 1.2s;
    animation-duration: 2.8s;
}

.electric-bolt:nth-child(3) {
    left: 60%;
    animation-delay: 2.3s;
    animation-duration: 2.2s;
}

.electric-bolt:nth-child(4) {
    left: 85%;
    animation-delay: 1.6s;
    animation-duration: 2.7s;
}

@keyframes thunderStrike {
    0% {
        transform: translateY(-120px) scaleY(0.3);
        opacity: 0;
    }
    2% {
        transform: translateY(-100px) scaleY(0.6);
        opacity: 0.7;
        box-shadow: 0 0 8px #ffa500;
    }
    8% {
        transform: translateY(-60px) scaleY(0.9);
        opacity: 1;
        box-shadow: 0 0 15px #ffa500, 0 0 30px rgba(255, 165, 0, 0.3);
    }
    16% {
        transform: translateY(0px) scaleY(1);
        opacity: 1;
        box-shadow: 0 0 20px #ffff00, 0 0 40px rgba(255, 255, 0, 0.4);
    }
    20% {
        opacity: 0.4;
    }
    22% {
        opacity: 1;
        box-shadow: 0 0 18px #ffa500;
    }
    25% {
        opacity: 0.3;
    }
    27% {
        opacity: 0.9;
    }
    32% {
        transform: translateY(50px) scaleY(1.1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(200px) scaleY(1.2);
        opacity: 0.5;
    }
    75% {
        transform: translateY(500px) scaleY(1);
        opacity: 0.3;
    }
    100% {
        transform: translateY(100vh) scaleY(0.2);
        opacity: 0;
    }
}

/* Floating Geometric Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: float 8s infinite linear;
}

.shape-circle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 8px solid var(--secondary-color);
}

.shape-square {
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    transform: rotate(45deg);
}

.floating-shape:nth-child(1) {
    left: 5%;
    animation: float-diagonal-1 8s infinite ease-in-out;
}

.floating-shape:nth-child(2) {
    left: 15%;
    animation: float-horizontal-1 10s infinite ease-in-out;
}

.floating-shape:nth-child(3) {
    left: 25%;
    animation: float-bounce-1 12s infinite ease-in-out;
}

.floating-shape:nth-child(4) {
    left: 35%;
    animation: float-diagonal-2 9s infinite ease-in-out;
}

.floating-shape:nth-child(5) {
    left: 45%;
    animation: float-spiral 11s infinite ease-in-out;
}

.floating-shape:nth-child(6) {
    left: 55%;
    animation: float-zigzag 13s infinite ease-in-out;
}

.floating-shape:nth-child(7) {
    left: 65%;
    animation: float-bounce-2 7s infinite ease-in-out;
}

.floating-shape:nth-child(8) {
    left: 75%;
    animation: float-horizontal-2 14s infinite ease-in-out;
}

.floating-shape:nth-child(9) {
    left: 85%;
    animation: float-diagonal-3 10s infinite ease-in-out;
}

.floating-shape:nth-child(10) {
    left: 95%;
    animation: float-orbit 15s infinite ease-in-out;
}

.floating-shape:nth-child(11) {
    left: 8%;
    animation: float-bounce-2 9s infinite ease-in-out;
}

.floating-shape:nth-child(12) {
    left: 18%;
    animation: float-spiral 6s infinite ease-in-out;
}

.floating-shape:nth-child(13) {
    left: 28%;
    animation: float-diagonal-1 11s infinite ease-in-out;
}

.floating-shape:nth-child(14) {
    left: 38%;
    animation: float-zigzag 8s infinite ease-in-out;
}

.floating-shape:nth-child(15) {
    left: 48%;
    animation: float-horizontal-1 13s infinite ease-in-out;
}

.floating-shape:nth-child(16) {
    left: 58%;
    animation: float-bounce-1 7s infinite ease-in-out;
}

.floating-shape:nth-child(17) {
    left: 68%;
    animation: float-diagonal-2 12s infinite ease-in-out;
}

.floating-shape:nth-child(18) {
    left: 78%;
    animation: float-horizontal-2 10s infinite ease-in-out;
}

.floating-shape:nth-child(19) {
    left: 88%;
    animation: float-diagonal-3 14s infinite ease-in-out;
}

.floating-shape:nth-child(20) {
    left: 98%;
    animation: float-orbit 9s infinite ease-in-out;
}

@keyframes float-diagonal-1 {
    0% { transform: translate(0, 100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.15; }
    25% { transform: translate(100px, 75vh) rotate(90deg); }
    50% { transform: translate(-50px, 50vh) rotate(180deg); }
    75% { transform: translate(80px, 25vh) rotate(270deg); }
    90% { opacity: 0.15; }
    100% { transform: translate(-30px, -100px) rotate(360deg); opacity: 0; }
}

@keyframes float-horizontal-1 {
    0% { transform: translate(-200px, 80vh) rotate(0deg); opacity: 0; }
    15% { opacity: 0.12; }
    30% { transform: translate(200px, 70vh) rotate(120deg); }
    60% { transform: translate(-100px, 60vh) rotate(240deg); }
    85% { opacity: 0.12; }
    100% { transform: translate(300px, 50vh) rotate(360deg); opacity: 0; }
}

@keyframes float-bounce-1 {
    0% { transform: translate(0, 100vh) scale(1) rotate(0deg); opacity: 0; }
    20% { transform: translate(30px, 60vh) scale(1.2) rotate(72deg); opacity: 0.18; }
    40% { transform: translate(-20px, 80vh) scale(0.8) rotate(144deg); }
    60% { transform: translate(50px, 40vh) scale(1.1) rotate(216deg); }
    80% { transform: translate(-40px, 20vh) scale(0.9) rotate(288deg); opacity: 0.18; }
    100% { transform: translate(20px, -100px) scale(1) rotate(360deg); opacity: 0; }
}

@keyframes float-diagonal-2 {
    0% { transform: translate(100px, 100vh) rotate(0deg); opacity: 0; }
    12% { opacity: 0.14; }
    30% { transform: translate(-80px, 70vh) rotate(108deg); }
    55% { transform: translate(120px, 45vh) rotate(198deg); }
    80% { transform: translate(-60px, 15vh) rotate(288deg); opacity: 0.14; }
    100% { transform: translate(90px, -120px) rotate(360deg); opacity: 0; }
}

@keyframes float-spiral {
    0% { transform: translate(0, 100vh) rotate(0deg) scale(1); opacity: 0; }
    15% { opacity: 0.16; }
    25% { transform: translate(60px, 75vh) rotate(90deg) scale(1.1); }
    50% { transform: translate(0, 50vh) rotate(180deg) scale(0.9); }
    75% { transform: translate(-60px, 25vh) rotate(270deg) scale(1.1); }
    90% { opacity: 0.16; }
    100% { transform: translate(0, -100px) rotate(360deg) scale(1); opacity: 0; }
}

@keyframes float-zigzag {
    0% { transform: translate(0, 100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.13; }
    20% { transform: translate(80px, 80vh) rotate(45deg); }
    35% { transform: translate(-70px, 65vh) rotate(135deg); }
    50% { transform: translate(90px, 50vh) rotate(225deg); }
    65% { transform: translate(-80px, 35vh) rotate(315deg); }
    80% { transform: translate(70px, 20vh) rotate(405deg); }
    90% { opacity: 0.13; }
    100% { transform: translate(-60px, -100px) rotate(450deg); opacity: 0; }
}

@keyframes float-bounce-2 {
    0% { transform: translate(0, 100vh) scale(0.8) rotate(0deg); opacity: 0; }
    18% { transform: translate(-40px, 70vh) scale(1.3) rotate(64deg); opacity: 0.17; }
    36% { transform: translate(60px, 85vh) scale(0.7) rotate(128deg); }
    54% { transform: translate(-30px, 55vh) scale(1.2) rotate(192deg); }
    72% { transform: translate(45px, 25vh) scale(0.9) rotate(256deg); }
    90% { transform: translate(-35px, 10vh) scale(1.1) rotate(320deg); opacity: 0.17; }
    100% { transform: translate(25px, -100px) scale(1) rotate(360deg); opacity: 0; }
}

@keyframes float-horizontal-2 {
    0% { transform: translate(300px, 90vh) rotate(0deg); opacity: 0; }
    14% { opacity: 0.11; }
    28% { transform: translate(-150px, 75vh) rotate(100deg); }
    42% { transform: translate(200px, 85vh) rotate(200deg); }
    56% { transform: translate(-100px, 65vh) rotate(300deg); }
    70% { transform: translate(250px, 45vh) rotate(400deg); }
    84% { transform: translate(-180px, 25vh) rotate(500deg); opacity: 0.11; }
    100% { transform: translate(150px, -100px) rotate(560deg); opacity: 0; }
}

@keyframes float-diagonal-3 {
    0% { transform: translate(-50px, 100vh) rotate(0deg); opacity: 0; }
    16% { opacity: 0.15; }
    32% { transform: translate(70px, 68vh) rotate(115deg); }
    48% { transform: translate(-90px, 52vh) rotate(230deg); }
    64% { transform: translate(110px, 36vh) rotate(345deg); }
    80% { transform: translate(-70px, 20vh) rotate(460deg); opacity: 0.15; }
    100% { transform: translate(50px, -100px) rotate(575deg); opacity: 0; }
}

@keyframes float-orbit {
    0% { transform: translate(0, 100vh) rotate(0deg) scale(1); opacity: 0; }
    12% { opacity: 0.14; }
    25% { transform: translate(40px, 75vh) rotate(90deg) scale(1.2); }
    37% { transform: translate(0, 50vh) rotate(180deg) scale(0.8); }
    50% { transform: translate(-40px, 25vh) rotate(270deg) scale(1.1); }
    62% { transform: translate(0, 50vh) rotate(360deg) scale(0.9); }
    75% { transform: translate(40px, 75vh) rotate(450deg) scale(1.2); }
    88% { opacity: 0.14; }
    100% { transform: translate(0, -100px) rotate(540deg) scale(1); opacity: 0; }
}

.advice-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.advice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.advice-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
}

.advice-card:hover {
    transform: translateY(-3px);
}

.advice-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
}

.advice-icon svg {
    width: 48px;
    height: 48px;
    stroke: currentColor;
}

.advice-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.cta-message {
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-content svg {
    color: white;
    stroke: currentColor;
    flex-shrink: 0;
}

.cta-message p {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

/* Navigation */
.nav {
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

/* Navigation Logo Component */
.nav-logo-container {
    text-decoration: none;
}

.nav .logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image-nav {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.brand-text-nav {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}

.brand-text-nav .samen {
    color: #1d4ed8;
}

.brand-text-nav .vergelijken {
    color: #6b7280;
}

.brand-text-nav .be-suffix {
    background: linear-gradient(135deg, #f59e0b 0%, #2563eb 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid transparent;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(29, 78, 216, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover {
    color: #1d4ed8;
    background: rgba(29, 78, 216, 0.05);
    border-color: rgba(29, 78, 216, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(29, 78, 216, 0.15);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

/* Standalone hamburger menu (for pages without navigation) */
body > .hamburger-menu {
    position: fixed;
    top: 20px;
    right: 20px;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu.active .hamburger-line:nth-child(1),
.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger-menu.active .hamburger-line:nth-child(3),
.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar-content {
    padding: 2rem 1.5rem;
}

.mobile-menu-header {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image-mobile {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-text-mobile {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}

.brand-text-mobile .samen {
    color: #1d4ed8;
}

.brand-text-mobile .vergelijken {
    color: #6b7280;
}

.brand-text-mobile .be-suffix {
    background: linear-gradient(135deg, #f59e0b 0%, #2563eb 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    padding: 1rem 0;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #1d4ed8;
    background: rgba(29, 78, 216, 0.05);
    margin: 0 -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.mobile-nav-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 0;
}

/* Mobile Sidebar Overlay */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Navigation Page Title */
.nav-page-title {
    display: flex;
    align-items: center;
}

.nav-page-title h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.02em;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: float 8s ease-in-out infinite reverse;
}

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

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.contact-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 245, 255, 0.3);
}

.contact-header p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Subtle Background Effects */
.contact-header::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(0, 245, 255, 0.1), rgba(14, 165, 233, 0.1));
    transform: rotate(45deg);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

.contact-header::after {
    content: '';
    position: absolute;
    bottom: 30%;
    left: 10%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(0, 245, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 6s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Form */
.contact-form-container {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(0, 245, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--bg-primary);
    position: relative;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(0, 245, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.15);
    background-color: rgba(0, 245, 255, 0.02);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    line-height: 1.5;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    line-height: 1.5;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.link {
    color: var(--primary-color);
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

/* Modern Form Enhancements */
.form-header {
    margin-bottom: 3.5rem;
    text-align: center;
}

.modern-form .form-header {
    margin-bottom: 3.5rem;
    text-align: center;
}

.modern-form .form-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.modern-form .form-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
}

.modern-form .form-group {
    margin-bottom: 2rem;
}

.modern-form .form-group:not(.checkbox-group) {
    margin-bottom: 2rem;
}

.modern-form input::placeholder,
.modern-form textarea::placeholder {
    color: var(--text-tertiary);
    opacity: 0.7;
}

.modern-form select option {
    padding: 8px;
}

.modern-form .checkbox-group {
    margin-bottom: 1rem;
}

.modern-form .checkbox-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

.modern-form .form-actions {
    margin-top: 2rem;
    text-align: center;
}

.modern-form .form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    font-style: italic;
}

.modern-form .btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    min-width: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 245, 255, 0.3);
}

.modern-form .btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 245, 255, 0.5);
    background: linear-gradient(135deg, #00d4ff 0%, #0284c7 100%);
    border-color: rgba(0, 212, 255, 0.4);
}

.modern-form .btn-large:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 245, 255, 0.4);
}

.modern-form .btn-large:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.modern-form .btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.modern-form .spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    border: 2px solid transparent;
}

.form-message.success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.3);
}

.form-message.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
}

/* Enhanced Benefits List */
.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 0.75rem;
}

.benefits-list li:hover {
    background: rgba(0, 245, 255, 0.05);
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.2);
}

/* Trust Card */
.trust-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.trust-card h3 {
    color: white;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    background: rgba(255, 255, 255, 0.9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.trust-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Responsive adjustments for modern form */
@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-header p {
        font-size: 1.1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modern-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .trust-items {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .trust-item {
        padding: 0.5rem 0;
    }
}

/* Legal Pages Styles */
.legal-section {
    padding: 100px 0 60px;
    background: var(--bg-primary);
    min-height: calc(100vh - 140px);
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 245, 255, 0.1);
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-header p {
    font-size: 1.1rem;
    color: var(--text-tertiary);
    font-style: italic;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-intro {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(14, 165, 233, 0.05));
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid rgba(0, 245, 255, 0.1);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.legal-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.legal-intro p {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.legal-intro p:last-child {
    margin-bottom: 0;
}

.legal-section-content {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(0, 245, 255, 0.08);
    transition: all 0.3s ease;
}

.legal-section-content:hover {
    border-color: rgba(0, 245, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.legal-section-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
}

.legal-section-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    text-align: justify;
}

.legal-section-content p:last-child {
    margin-bottom: 0;
}

.legal-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Cookie Table Styles */
.cookie-table {
    background: rgba(0, 245, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 245, 255, 0.2);
    margin: 2rem 0;
}

.cookie-table-header {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.15), rgba(14, 165, 233, 0.15));
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 1rem;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
}

.cookie-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
}

.cookie-table-row:last-child {
    border-bottom: none;
}

.cookie-col {
    color: var(--text-secondary);
    line-height: 1.6;
}

.cookie-table-header .cookie-col {
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .cookie-table-header,
    .cookie-table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .cookie-table-header .cookie-col,
    .cookie-table-row .cookie-col {
        padding: 0.5rem 0;
    }
    
    .cookie-table-header .cookie-col {
        background: rgba(0, 245, 255, 0.1);
        padding: 0.8rem;
        margin: -0.5rem -1rem 0.5rem -1rem;
        font-size: 0.9rem;
    }
}

.legal-contact {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.08), rgba(14, 165, 233, 0.08));
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid rgba(0, 245, 255, 0.2);
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.legal-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.legal-contact h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.legal-contact p {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.legal-contact ul {
    list-style: none;
    padding: 0;
}

.legal-contact ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.legal-contact ul li strong {
    color: var(--text-primary);
    min-width: 140px;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.legal-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
}

/* Active footer link styling */
.footer-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-section {
        padding: 80px 20px 40px;
    }
    
    .legal-header h1 {
        font-size: 2.2rem;
    }
    
    .legal-intro,
    .legal-section-content,
    .legal-contact {
        padding: 1.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .legal-section-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-contact ul li {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .legal-contact ul li strong {
        min-width: auto;
        margin-bottom: 0.25rem;
    }
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 3px solid rgba(0, 245, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.contact-card:hover {
    border-color: rgba(0, 245, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 245, 255, 0.15);
    transform: translateY(-2px);
}

.contact-details-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 3px solid rgba(0, 245, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-details-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.contact-details-card:hover {
    border-color: rgba(0, 245, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 245, 255, 0.2);
    transform: translateY(-2px);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.contact-details-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.contact-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 0;
}

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: white;
    padding: 2rem 0 1rem 0;
    margin-top: auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide desktop navigation */
    .desktop-nav {
        display: none;
    }
    
    /* Show hamburger menu */
    .hamburger-menu {
        display: flex;
    }

    /* Ensure navigation container has proper flex layout */
    .nav .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .hero {
        padding: 2rem 0;
        min-height: 100vh;
    }

    .hero-content {
        padding: 0 1rem;
        max-width: 100%;
    }

    .company-branding {
        margin-bottom: 2rem;
    }

    .hero .logo-container {
        gap: 0.75rem;
        flex-direction: column;
        text-align: center;
    }

    .hero .logo-image {
        width: 60px;
        height: 60px;
    }

    .hero .brand-text {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
        word-wrap: break-word;
        hyphens: none;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .mission-content {
        flex-direction: column !important;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }

    .mission-grid,
    .facts-grid {
        gap: 2rem;
    }

    .mission-card.slide-left,
    .mission-card.slide-right {
        transform: translateY(30px);
    }
    }
    
    .mission-card.animate {
        transform: translateY(0);
    }
    
    .mission-icon {
        width: 100px;
        height: 100px;
    }
    
    .mission-card h3 {
        font-size: 1.5rem;
    }
    
    .mission-header h2 {
        font-size: 2.2rem;
    }
    
    .mission-header p {
        font-size: 1.2rem;
    }
    
    .facts-header h2 {
        font-size: 2.2rem;
    }
    
    .facts-header p {
        font-size: 1.2rem;
    }
    
    .fact-card {
        min-height: 350px;
    }
    
    .fact-number {
        font-size: 3rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero {
        padding: 1rem 0;
    }

    .hero-content {
        padding: 0 0.75rem;
    }

    .logo-image {
        width: 50px;
        height: 50px;
    }

    .brand-text {
        font-size: 1.6rem;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
        padding: 0 0.25rem;
        word-wrap: break-word;
        hyphens: none;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .btn {
        max-width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .nav-page-title h1 {
        font-size: 1.2rem;
    }

    .fact-number {
        font-size: 2.5rem;
    }

    .facts-header h2 {
        font-size: 2rem;
    }
    
    .facts-cta {
        padding: 2rem 1rem;
    }
    
    .facts-cta-content h3 {
        font-size: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .mission-section h2,
    .advice-section h2,
    .contact-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .company-name {
        font-size: 1.3rem;
    }
    
    .company-branding {
        margin-bottom: 2rem;
    }
    
    .mission-header h2 {
        font-size: 1.8rem;
    }
    
    .mission-header p {
        font-size: 1.1rem;
    }
    
    .mission-content {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .mission-icon {
        width: 80px;
        height: 80px;
    }
    
    .mission-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .mission-card h3 {
        font-size: 1.3rem;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .facts-header h2 {
        font-size: 1.8rem;
    }
    
    .facts-header p {
        font-size: 1.1rem;
    }
    
    .fact-card {
        min-height: 300px;
    }
    
    .fact-number {
        font-size: 2.5rem;
    }
    
    .fact-card h3 {
        font-size: 1.2rem;
    }
    
    .facts-cta-content h3 {
        font-size: 1.3rem;
    }
    
    .mission-card,
    .contact-form-container,
    .contact-card {
        padding: 1.5rem;
    }
    
    .section {
        padding: 40px 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

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

.mission-card,
.fact-card,
.advice-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ===================== */
/* New Mobile Drawer Nav */
/* ===================== */
.drawer-toggle-btn { --btn-size:44px; position:fixed; top:16px; right:16px; width:var(--btn-size); height:var(--btn-size); border:none; background:none; border-radius:12px; display:flex; align-items:center; justify-content:center; cursor:pointer; padding:0; transition:background .25s ease, box-shadow .25s ease, transform .2s; -webkit-tap-highlight-color:transparent; z-index:1100; }
.drawer-toggle-btn:hover { background:rgba(255,255,255,0.18); box-shadow:0 4px 14px -6px rgba(0,0,0,0.18); }
.drawer-toggle-btn[aria-expanded="true"] { background:none; }
.drawer-toggle-btn:active { transform:scale(.95); }
.drawer-toggle-btn:focus-visible { outline:2px solid #2563eb; outline-offset:3px; }
.drawer-toggle-btn:active { transform:translateY(1px); }
.drawer-toggle-btn .bars { position:relative; width:22px; height:18px; }
.drawer-toggle-btn .bar { position:absolute; left:0; width:100%; height:2.5px; background:#1f2937; border-radius:2px; transition:transform .4s cubic-bezier(.68,-0.55,.265,1.55),opacity .3s ease,top .4s; }
.drawer-toggle-btn .bar:nth-child(1){ top:0; }
.drawer-toggle-btn .bar:nth-child(2){ top:50%; transform:translateY(-50%); }
.drawer-toggle-btn .bar:nth-child(3){ bottom:0; }
.drawer-toggle-btn[aria-expanded="true"] .bar:nth-child(1){ top:50%; transform:translateY(-50%) rotate(45deg); }
.drawer-toggle-btn[aria-expanded="true"] .bar:nth-child(2){ opacity:0; }
.drawer-toggle-btn[aria-expanded="true"] .bar:nth-child(3){ top:50%; transform:translateY(-50%) rotate(-45deg); bottom:auto; }

#drawerBackdrop[hidden]{ display:none; }
#drawerBackdrop { position:fixed; inset:0; background:rgba(17,24,39,0.45); backdrop-filter:blur(2px); opacity:0; visibility:hidden; transition:opacity .25s ease,visibility .25s ease; z-index:998; }
#drawerBackdrop.visible { opacity:1; visibility:visible; }

#site-drawer { position:fixed; top:0; right:0; height:100vh; width:320px; max-width:85%; background:#ffffff; box-shadow:-4px 0 24px -4px rgba(0,0,0,0.15); transform:translateX(100%); transition:transform .45s cubic-bezier(.68,-0.55,.265,1.2); z-index:999; display:flex; flex-direction:column; border-left:1px solid rgba(0,0,0,0.06); }
#site-drawer.open { transform:translateX(0); }
#site-drawer.animate-in { transform:translateX(0); }

.drawer-header { display:flex; align-items:center; justify-content:space-between; padding:1rem 1.25rem; border-bottom:1px solid rgba(0,0,0,0.06); }
.drawer-brand { display:flex; align-items:center; gap:.75rem; text-decoration:none; }
.drawer-brand img { width:40px; height:40px; object-fit:contain; }
.drawer-brand .brand-text-mobile { font-size:1.15rem; font-weight:700; line-height:1; display:flex; align-items:center; gap:.25rem; }
.drawer-close-btn { --btn-size:40px; width:var(--btn-size); height:var(--btn-size); border:none; background:#f3f4f6; border-radius:10px; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:background .25s, box-shadow .25s; }
.drawer-close-btn:hover { background:#e5e7eb; box-shadow:0 2px 6px -2px rgba(0,0,0,0.15); }
.drawer-close-btn:active { transform:translateY(1px); }
.drawer-close-btn svg { width:18px; height:18px; stroke:#1f2937; }

.drawer-nav { padding:1rem 0 .5rem; flex:1; overflow-y:auto; }
.drawer-section-label { font-size:.7rem; letter-spacing:.08em; font-weight:600; text-transform:uppercase; color:#6b7280; padding:0 1.25rem .25rem; }
.drawer-links { list-style:none; margin:0; padding:0; }
.drawer-link { position:relative; display:flex; align-items:center; gap:.75rem; padding:.875rem 1.25rem; font-size:1rem; font-weight:500; text-decoration:none; color:#1f2937; transition:background .25s, color .25s; }
.drawer-link:hover { background:linear-gradient(90deg, rgba(29,78,216,0.08), rgba(29,78,216,0)); color:#1d4ed8; }
.drawer-link.active { background:linear-gradient(90deg, rgba(29,78,216,0.12), rgba(29,78,216,0)); color:#1d4ed8; }
.drawer-separator { height:1px; margin:.5rem 0; background:linear-gradient(to right, rgba(0,0,0,0.06), rgba(0,0,0,0)); }

.drawer-footer { padding:1rem 1.25rem 1.25rem; border-top:1px solid rgba(0,0,0,0.06); display:flex; flex-direction:column; gap:.75rem; }
.drawer-meta { font-size:.7rem; color:#6b7280; line-height:1.3; }

body.drawer-open { overflow:hidden; }

@media (max-width: 900px){ .hamburger-menu, .mobile-sidebar, .mobile-sidebar-overlay { display:none !important; } .drawer-toggle-btn { display:flex; } }
@media (min-width: 901px){ .drawer-toggle-btn, #site-drawer, #drawerBackdrop { display:none; } }
