/* ===================================
   CSS Variables & Design System
   =================================== */

/* Dark Mode (Default) */
:root {
    /* Colors - Dark Mode (Teal/Blue Theme) */
    --color-bg: #0a0f14;
    --color-bg-elevated: #0d1520;
    --color-bg-card: #111c2a;
    --color-bg-card-hover: #162435;

    --color-text-primary: #ffffff;
    --color-text-secondary: #aabcd6;
    --color-text-muted: #71849e;

    --color-primary: #00C9FF;
    --color-primary-light: #38d9ff;
    --color-secondary: #0EA5E9;
    --color-accent: #1E3A8A;

    --gradient-primary: linear-gradient(135deg, #00C9FF 0%, #0EA5E9 50%, #1E3A8A 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 201, 255, 0.15), rgba(30, 58, 138, 0.15));

    /* Logo visibility */
    --logo-dark-display: block;
    --logo-light-display: none;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;
    --font-size-6xl: 4.5rem;

    /* Effects */
    --border-radius-sm: 0.5rem;
    --border-radius-md: 0.75rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    --border-radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(0, 201, 255, 0.3);

    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Light Mode */
@media (prefers-color-scheme: light) {
    :root {
        /* Colors - Light Mode (Pure white, no blue tint) */
        --color-bg: #ffffff;
        --color-bg-elevated: #fafafa;
        --color-bg-card: #ffffff;
        --color-bg-card-hover: #f5f5f5;

        /* Neutral grays instead of blue-tinted slate */
        --color-text-primary: #171717;
        --color-text-secondary: #525252;
        --color-text-muted: #6b6b6b;

        /* Primary teal colors */
        --color-primary: #0891b2;
        --color-primary-light: #22d3ee;
        --color-secondary: #0891b2;
        --color-accent: #0e7490;

        --gradient-primary: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
        --gradient-glow: linear-gradient(135deg, rgba(8, 145, 178, 0.05), rgba(6, 182, 212, 0.05));

        /* Logo visibility */
        --logo-dark-display: none;
        --logo-light-display: block;

        /* Effects - Light Mode (softer shadows) */
        --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
        --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.06);
        --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.08);
        --shadow-glow: 0 0 20px rgba(0, 0, 0, 0.05);
    }

    /* Light mode navbar - pure white */
    .navbar {
        background: #ffffff !important;
        border-bottom: 1px solid #e5e5e5 !important;
        backdrop-filter: none !important;
    }

    /* Light mode - hide gradient orbs completely */
    .hero-bg {
        display: none !important;
    }

    /* Light mode cards with neutral borders */
    .floating-card {
        background: #ffffff;
        border: 1px solid #e5e5e5;
        box-shadow: var(--shadow-md);
    }

    /* Light mode feature cards */
    .feature-card {
        border: 1px solid #e5e5e5;
    }

    /* Light mode lang switcher border */
    .lang-switcher {
        border-left: 1px solid #e5e5e5;
    }

    /* Light mode buttons */
    .btn-secondary {
        border-color: #d4d4d4;
        color: var(--color-text-primary);
    }

    /* Light mode badges - subtle neutral with teal accent */
    .section-badge,
    .hero-badge {
        background: rgba(8, 145, 178, 0.08);
        border: 1px solid rgba(8, 145, 178, 0.15);
    }
}

/* ===================================
   Reset & Base Styles
   =================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

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

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

/* ===================================
   Utility Classes
   =================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

/* ===================================
   Button Styles
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-size: var(--font-size-sm);
    font-weight: 500;
    border-radius: var(--border-radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(0, 201, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text-secondary);
}

.btn-ghost:hover {
    color: var(--color-text-primary);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: var(--font-size-base);
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

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

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: rgba(0, 15, 25, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-xl);
    font-weight: 700;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links a:not(.btn) {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    transition: color var(--transition-base);
}

.nav-links a:not(.btn):hover {
    color: var(--color-text-primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

/* Mobile CTA - hidden on desktop, shown on mobile */
.mobile-cta {
    display: none;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: all var(--transition-base);
}

/* Logo Image */
.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-dark {
    display: var(--logo-dark-display);
}

.logo-light {
    display: var(--logo-light-display);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-left: var(--space-md);
    padding-left: var(--space-md);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
}

.lang-btn:hover {
    color: var(--color-text-secondary);
}

.lang-btn.active {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: rgba(0, 201, 255, 0.1);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--space-4xl)) 0 var(--space-4xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 201, 255, 0.4) 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.3) 0%, transparent 70%);
    top: 50%;
    right: -150px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.4) 0%, transparent 70%);
    bottom: -100px;
    left: 30%;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 10px) scale(1.02);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--gradient-glow);
    border: 1px solid rgba(0, 201, 255, 0.3);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-sm);
    color: var(--color-primary-light);
    margin-bottom: var(--space-xl);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: clamp(var(--font-size-4xl), 8vw, var(--font-size-6xl));
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-xl);
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.8;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    display: none;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    right: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    left: 0;
    animation-delay: -2s;
}

.card-3 {
    top: 70%;
    right: 10%;
    animation-delay: -4s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.card-icon {
    font-size: var(--font-size-2xl);
}

.card-title {
    display: block;
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.card-subtitle {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* ===================================
   Features Section
   =================================== */
.features {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: var(--gradient-glow);
    border: 1px solid rgba(0, 201, 255, 0.2);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-sm);
    color: var(--color-primary-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
}

.section-title {
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-4xl));
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    padding: var(--space-xl);
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-xl);
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--color-bg-card-hover);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--shadow-glow);
}

.feature-card.featured {
    grid-column: span 2;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 201, 255, 0.1);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--space-lg);
}

.feature-icon {
    font-size: var(--font-size-2xl);
}

.feature-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.feature-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ===================================
   How It Works Section
   =================================== */
.how-it-works {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-elevated);
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-2xl);
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-xl);
    margin-bottom: var(--space-md);
}

.step-number {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
}

.step-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.step-content p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.step-visual {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-glow);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--border-radius-lg);
}

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

.step-connector {
    display: flex;
    justify-content: center;
    padding: var(--space-sm) 0;
}

.step-connector svg {
    width: 100px;
    height: 40px;
    opacity: 0.5;
}

/* ===================================
   Benefits Section
   =================================== */
.benefits {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    gap: var(--space-4xl);
    align-items: center;
    text-align: center;
}

.benefits-content .section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.benefits-content .section-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.benefits-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-glow);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--border-radius-md);
    font-size: var(--font-size-xl);
}

.benefit-content strong {
    display: block;
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xs);
}

.benefit-content p {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
}

.benefits-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-card-stack {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 300px;
}

.benefit-card {
    position: absolute;
    width: 100%;
    padding: var(--space-lg);
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-base);
}

.bc-1 {
    bottom: 0;
    z-index: 3;
    background: linear-gradient(135deg, var(--color-bg-card) 0%, rgba(0, 201, 255, 0.1) 100%);
    border-color: rgba(99, 102, 241, 0.3);
}

.bc-2 {
    bottom: 60px;
    z-index: 2;
    transform: scale(0.95);
    opacity: 0.9;
}

.bc-3 {
    bottom: 120px;
    z-index: 1;
    transform: scale(0.9);
    opacity: 0.8;
}

.bc-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
}

.bc-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
}

.bc-match {
    padding: var(--space-sm) var(--space-md);
    background: var(--gradient-primary);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

/* ===================================
   CTA Section
   =================================== */
.cta {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb-cta-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 201, 255, 0.3) 0%, transparent 70%);
    top: -150px;
    left: -150px;
}

.orb-cta-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-3xl);
    background: var(--color-bg-card);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-glow);
}

.cta-content h2 {
    font-size: clamp(var(--font-size-2xl), 4vw, var(--font-size-4xl));
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.cta-content p {
    color: var(--color-text-secondary);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: var(--space-4xl) 0 var(--space-xl);
    background: var(--color-bg-elevated);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: var(--space-lg);
}

.footer-brand p {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
}

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

.footer-column h4 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
    color: var(--color-text-muted);
}

.footer-column a {
    display: block;
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    padding: var(--space-sm) 0;
    transition: color var(--transition-base);
}

.footer-column a:hover {
    color: var(--color-text-primary);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

/* ===================================
   Legal Pages (Privacy Policy & Terms)
   =================================== */
.legal-hero {
    position: relative;
    padding: calc(80px + var(--space-4xl)) 0 var(--space-3xl);
    text-align: center;
    overflow: hidden;
}

.legal-title {
    font-size: clamp(var(--font-size-3xl), 6vw, var(--font-size-5xl));
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.legal-subtitle {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
}

.legal-content {
    padding: var(--space-3xl) 0 var(--space-4xl);
    background: var(--color-bg);
}

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

.legal-section {
    margin-bottom: var(--space-3xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.legal-section h2 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-section h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--color-text-primary);
}

.legal-section p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

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

.legal-section ul li {
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.legal-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.legal-section ul li strong {
    color: var(--color-text-primary);
}

.legal-section .contact-info {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-lg);
}

.legal-section .contact-info p {
    margin-bottom: var(--space-sm);
}

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

/* ===================================
   Responsive Styles
   =================================== */
@media (min-width: 1200px) {
    .hero-visual {
        display: block;
    }

    /* Removed left-align overrides to keep hero centered as requested */
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .benefits-content .section-title,
    .benefits-content .section-description {
        text-align: center;
    }

    .feature-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--color-bg-card);
        padding: var(--space-lg);
        gap: var(--space-md);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        display: flex;
        align-items: center;
    }

    .nav-links a:not(.btn) {
        padding: var(--space-sm) 0;
        text-align: center;
    }

    .nav-links .btn {
        width: auto;
        max-width: 200px;
        text-align: center;
    }

    .lang-switcher {
        justify-content: center;
        margin-top: var(--space-sm);
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        width: 100%;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-cta {
        display: inline-flex;
        padding: var(--space-sm) var(--space-md);
        font-size: var(--font-size-sm);
    }

    .hero {
        padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .stat-divider {
        display: none;
    }

    /* Hide floating cards on mobile to prevent overlap with text */
    .hero-visual {
        display: none;
    }

    .step {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-number {
        order: -1;
    }

    .step-visual {
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-large {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}