/* ============================================
   Wilson Group — Premium Corporate Design System
   Ultra-Dark Theme · Glassmorphism · Microanimations
   ============================================ */

/* --- Design Tokens --- */
:root {
    /* Palette — strict black/white/grey */
    --bg-primary: #000000;
    --bg-secondary: #060606;
    --bg-tertiary: #0c0c0c;
    --bg-elevated: #111111;

    --glass-bg: rgba(255, 255, 255, 0.025);
    --glass-bg-hover: rgba(255, 255, 255, 0.06);
    --glass-bg-strong: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.18);
    --glass-border-active: rgba(255, 255, 255, 0.3);

    --text-primary: #ffffff;
    --text-secondary: #9a9a9a;
    --text-tertiary: #555555;
    --text-muted: #333333;

    --accent: #ffffff;
    --glow-white: rgba(255, 255, 255, 0.06);
    --glow-strong: rgba(255, 255, 255, 0.12);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    /* Radii */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 100px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.25s var(--ease-in-out);
    --transition-base: 0.5s var(--ease-out);
    --transition-slow: 0.9s var(--ease-out);
    --transition-glacial: 1.4s var(--ease-out);

    /* Layout */
    --container-max: 1200px;
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    background: var(--bg-primary);
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
img { max-width: 100%; display: block; object-fit: cover; }
ul { list-style: none; }
button { cursor: pointer; }
::selection { background: rgba(255,255,255,0.2); color: #fff; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

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

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== ANIMATED BACKGROUND CANVAS ===== */
#bg-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 100000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: opacity 1s ease, visibility 1s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    height: 200px;
    width: auto;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.9);
    animation: preloaderLogoFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

@keyframes preloaderLogoFadeIn {
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

.preloader-line {
    width: 120px;
    height: 2px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.preloader-line::after {
    content: '';
    position: absolute;
    left: -40%;
    top: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderFadeIn {
    to { opacity: 1; }
}

@keyframes preloaderSlide {
    0% { left: -40%; }
    100% { left: 100%; }
}

/* ===== GLASSMORPHISM SYSTEM ===== */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(24px) saturate(120%);
    -webkit-backdrop-filter: blur(24px) saturate(120%);
    border-radius: var(--radius-md);
    padding: 36px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

/* Top shine effect */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

/* Inner glow on hover */
.glass-card::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-6px);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,255,255,0.05),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.glass-card:hover::before,
.glass-card:hover::after {
    opacity: 1;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.03em;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

.btn-primary::before {
    background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.1), transparent 70%);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(255,255,255,0.15), 0 0 0 1px rgba(255,255,255,0.3);
}

.btn-primary:hover::before { opacity: 1; }

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

.btn-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-glass:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

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

.btn i {
    font-size: 12px;
    transition: transform var(--transition-fast);
}

.btn:hover i {
    transform: translateX(3px);
}

/* ===== LAYOUT SECTIONS ===== */
.section {
    padding: 140px 0;
    position: relative;
    z-index: 1;
}

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

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    background: var(--glass-bg);
}

.section-title {
    font-size: clamp(34px, 5vw, 56px);
    margin-bottom: 24px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 17px;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all var(--transition-base);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(24px) saturate(120%);
    -webkit-backdrop-filter: blur(24px) saturate(120%);
    border-bottom: 1px solid var(--glass-border);
}

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

.nav-brand {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    z-index: 1001;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    letter-spacing: 0.02em;
    position: relative;
    padding: 4px 0;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 22px;
    cursor: pointer;
    z-index: 1001;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.nav-toggle:hover {
    background: rgba(255,255,255,0.05);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

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

.mobile-menu .nav-link {
    font-size: 28px;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition-base);
}

.mobile-menu.active .nav-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .nav-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu .nav-link::after { display: none; }

/* ===== FULLSCREEN HERO ===== */
.hero-fs {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: var(--nav-height);
    padding-bottom: 120px;
    overflow: hidden;
}

/* Ambient gradient orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    top: -20%;
    right: -10%;
    background: radial-gradient(circle, rgba(255,255,255,0.04), transparent 70%);
    animation: orbFloat1 20s ease-in-out infinite;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    bottom: -15%;
    left: -5%;
    background: radial-gradient(circle, rgba(255,255,255,0.03), transparent 70%);
    animation: orbFloat2 25s ease-in-out infinite;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(255,255,255,0.025), transparent 70%);
    animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-40px, 30px); }
    66% { transform: translate(20px, -20px); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -25px); }
    66% { transform: translate(-20px, 15px); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translateX(-50%) translate(0, 0); }
    50% { transform: translateX(-50%) translate(15px, -15px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    padding: 0 24px;
}

.hero-title {
    font-size: clamp(48px, 9vw, 100px);
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 0.95;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, #ffffff 20%, rgba(255,255,255,0.5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 22px);
    color: var(--text-secondary);
    margin-bottom: 44px;
    font-weight: 400;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.4;
    transition: opacity var(--transition-fast);
    z-index: 10;
    pointer-events: auto;
}

.scroll-indicator:hover { opacity: 0.8; }

.scroll-indicator span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.12);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -48px;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, #fff);
    animation: scrollDrop 2.5s ease-in-out infinite;
}

@keyframes scrollDrop {
    0% { top: -48px; opacity: 0; }
    30% { opacity: 1; }
    100% { top: 48px; opacity: 0; }
}

/* ===== GRID SYSTEMS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }

/* ===== FEATURE CARDS ===== */
.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    background: rgba(255,255,255,0.015);
    font-size: 24px;
    transition: all var(--transition-base);
}

.glass-card:hover .feature-icon {
    border-color: var(--glass-border-hover);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 0 20px rgba(255,255,255,0.05);
}

/* ===== STATUS BADGE ===== */
.status-badge {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
}

.status-badge.active {
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
}

.status-badge.pending {
    border: 1px solid var(--glass-border);
    color: var(--text-tertiary);
}

/* ===== TAG CHIPS ===== */
.tag-chip {
    font-size: 12px;
    background: rgba(255,255,255,0.04);
    padding: 6px 14px;
    border-radius: var(--radius-xs);
    color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.04);
}

/* ===== TIMELINE ===== */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--glass-border), rgba(255,255,255,0.02));
}

.timeline-item {
    position: relative;
    padding: 0 0 56px 32px;
}

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
    z-index: 2;
}

.timeline-dot.filled {
    background: var(--text-primary);
    box-shadow: 0 0 12px rgba(255,255,255,0.2);
}

.timeline-dot.hollow {
    background: transparent;
    border-color: var(--text-tertiary);
}

.timeline-phase {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.timeline-phase.future {
    color: var(--text-tertiary);
}

.timeline-title {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

/* ===== STATS COUNTER ===== */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== FORM SYSTEM ===== */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-input,
.form-textarea {
    padding: 16px 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 15px;
    outline: none;
    transition: all var(--transition-fast);
    width: 100%;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--glass-border-active);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.03);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

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

/* ===== CONTACT INFO ===== */
.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-primary);
    flex-shrink: 0;
    background: var(--glass-bg);
}

.contact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-tertiary);
    margin-bottom: 4px;
    display: block;
}

.contact-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
}

/* ===== FOUNDER CARD ===== */
.founder-portrait {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-portrait::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.founder-portrait i {
    font-size: 80px;
    color: rgba(255,255,255,0.08);
}

.founder-portrait-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    text-align: center;
    z-index: 2;
}

.founder-quote {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-primary);
    font-style: italic;
    position: relative;
    padding-left: 24px;
    border-left: 2px solid var(--glass-border);
    margin-top: 32px;
}

/* ===== SERVICE LIST ITEMS ===== */
.service-row {
    padding: 28px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.015);
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all var(--transition-base);
}

.service-row:hover {
    background: rgba(255,255,255,0.035);
    border-color: var(--glass-border-hover);
    transform: translateX(8px);
}

.service-row i {
    font-size: 22px;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}

/* ===== CHECK LIST ===== */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li {
    color: var(--text-secondary);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list li i {
    color: var(--text-primary);
    font-size: 10px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 100px 0 40px;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 72px;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    display: block;
}

.footer-desc {
    font-size: 14px;
    max-width: 300px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
}

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

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 16px;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.15);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
    font-size: 13px;
    color: var(--text-tertiary);
}

.footer-bottom a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 560px;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 10000;
    visibility: hidden;
    transition: all var(--transition-base);
    box-shadow: 0 24px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
}

.cookie-banner.show {
    bottom: 32px;
    visibility: visible;
}

.cookie-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--text-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all var(--transition-glacial);
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all var(--transition-glacial);
}

.animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all var(--transition-glacial);
}

.animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: all var(--transition-glacial);
}

.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }

/* ===== DIVIDER ===== */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    margin: 0;
    border: none;
}

/* ===== IMAGE SIZING ===== */
.nav-logo-img { height: 140px; width: auto; object-fit: contain; }
.company-brand-logo { height: 48px; width: auto; object-fit: contain; filter: drop-shadow(0 0 8px rgba(255,255,255,0.15)); }

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-glass {
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

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

/* ===== LEGAL PAGES ===== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 24px;
    margin: 48px 0 16px;
    font-weight: 600;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content ul li {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    position: relative;
    padding-left: 12px;
}

.legal-content ul li::before {
    content: '—';
    position: absolute;
    left: -16px;
    color: var(--text-tertiary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; align-items: center; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 68px;
    }

    .section { padding: 100px 0; }
    .section-header { margin-bottom: 56px; }

    .hero-title { letter-spacing: -0.03em; }

    .grid-2, .grid-3, .grid-auto { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .footer-bottom p { justify-content: center; }

    .cookie-banner { flex-direction: column; text-align: center; }

    .stats-grid { gap: 48px; }

    .glass-card { padding: 28px; }

    .cta-glass { padding: 56px 28px; }

    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
    .section { padding: 80px 0; }
    .container { padding: 0 16px; }
    .hero-subtitle { font-size: 15px; }
    .stats-grid { gap: 36px; }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .animate-up, .animate-left, .animate-right, .animate-scale {
        opacity: 1;
        transform: none;
    }
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-40 { gap: 40px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
