/* Metamodern Design System */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    /* Metamodern Color Palette - Vibrant Gradients */
    --neon-pink: #ff006e;
    --neon-cyan: #00f5ff;
    --neon-yellow: #ffbe0b;
    --neon-purple: #8338ec;
    --neon-orange: #fb5607;
    --electric-blue: #3a86ff;
    
    /* Background Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #14141f;
    --bg-tertiary: #1e1e2e;
    --bg-card: rgba(30, 30, 46, 0.6);
    
    /* Text Colors - Enhanced Contrast */
    --text-primary: #ffffff;
    --text-secondary: #e0e0f0;
    --text-muted: #a0a0c0;
    
    /* Brutalist Borders */
    --border-thick: 4px;
    --border-medium: 3px;
    --border-thin: 2px;
    
    /* Shadows & Glows */
    --shadow-brutal: 8px 8px 0px 0px;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.3);
    --glow-pink: 0 0 30px rgba(255, 0, 110, 0.6), 0 0 60px rgba(255, 0, 110, 0.3);
    --glow-cyan: 0 0 30px rgba(0, 245, 255, 0.6), 0 0 60px rgba(0, 245, 255, 0.3);
    --glow-yellow: 0 0 30px rgba(255, 190, 11, 0.6), 0 0 60px rgba(255, 190, 11, 0.3);
    --glow-purple: 0 0 30px rgba(131, 56, 236, 0.6), 0 0 60px rgba(131, 56, 236, 0.3);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 50%, var(--electric-blue) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--neon-cyan) 0%, var(--electric-blue) 100%);
    --gradient-accent: linear-gradient(135deg, var(--neon-yellow) 0%, var(--neon-orange) 100%);
    --gradient-text: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan), var(--neon-yellow));
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(131, 56, 236, 0.1) 0%, transparent 50%);
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* Brutalist Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 1.5rem 0;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: var(--border-thick) solid var(--neon-pink);
    box-shadow: 0 4px 0 0 var(--neon-cyan);
}

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

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    transform: rotate(-2deg);
}

.logo:hover {
    transform: rotate(2deg) scale(1.1);
    filter: drop-shadow(var(--glow-pink));
}

/* Navigation */
.desktop-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: var(--border-thin) solid transparent;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    z-index: -1;
}

.nav-link:hover {
    color: var(--text-primary);
    border-color: var(--neon-pink);
    transform: translateY(-3px);
    box-shadow: var(--shadow-brutal) var(--neon-cyan);
}

.nav-link:hover::before {
    opacity: 0.2;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 8px;
    background: transparent;
    border: var(--border-thick) solid var(--neon-pink);
    cursor: pointer;
    padding: 12px;
    z-index: 10001;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    box-shadow: var(--shadow-brutal) var(--neon-cyan);
    transform: rotate(5deg);
}

.menu-toggle span {
    width: 28px;
    height: 4px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    display: block;
}

.menu-toggle.active {
    transform: rotate(90deg);
}

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

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

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

/* Fullscreen Menu - Metamodern */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    background-image: var(--gradient-primary);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3.5rem;
    color: var(--text-primary);
    cursor: pointer;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--border-thick) solid var(--text-primary);
    background: var(--bg-card);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    transition: all 0.3s ease;
    font-weight: 300;
}

.menu-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: var(--shadow-brutal) var(--neon-yellow);
    background: var(--neon-pink);
}

.fullscreen-nav {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
}

.fullscreen-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -2px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(50px) rotate(-5deg);
    text-shadow: 4px 4px 0px var(--neon-cyan), -4px -4px 0px var(--neon-pink);
}

.fullscreen-menu.active .fullscreen-link {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
    transition-delay: calc(var(--i) * 0.1s);
}

.fullscreen-link:hover {
    transform: scale(1.1) rotate(2deg);
    text-shadow: 6px 6px 0px var(--neon-cyan), -6px -6px 0px var(--neon-pink), 0 0 30px var(--neon-yellow);
}

/* Hero Section - Metamodern */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 10rem 0 6rem;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 0, 110, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 245, 255, 0.15) 0%, transparent 50%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.abstract-shape {
    position: absolute;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 25s infinite ease-in-out;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    top: -300px;
    left: -300px;
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--gradient-secondary);
    bottom: -250px;
    right: -250px;
    animation-delay: 8s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: var(--gradient-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 16s;
}

@keyframes float {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    33% { 
        transform: translate(100px, -100px) scale(1.2) rotate(120deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    66% { 
        transform: translate(-80px, 80px) scale(0.8) rotate(240deg);
        border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
    }
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-text-wrapper {
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 2.5rem;
    letter-spacing: -3px;
}

.title-line {
    display: block;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleReveal 0.8s ease forwards;
    opacity: 0;
    filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.5));
    transform: translateX(-50px);
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
    transform: rotate(-1deg);
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
    transform: rotate(1deg);
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
    transform: rotate(-0.5deg);
}

.title-line.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(var(--glow-pink));
    transform: scale(1.05);
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateX(-50px) translateY(30px) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0) rotate(0deg);
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.8s both;
    max-width: 90%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
}

.btn {
    padding: 1.25rem 3rem;
    border: var(--border-thick) solid;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transform: rotate(-1deg);
}

.btn:hover {
    transform: rotate(1deg) translateY(-5px);
}

.btn-neon {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-color: var(--neon-pink);
    box-shadow: var(--shadow-brutal) var(--neon-cyan);
}

.btn-neon:hover {
    box-shadow: var(--shadow-brutal) var(--neon-yellow), var(--glow-pink);
    transform: rotate(2deg) translateY(-5px) scale(1.05);
}

.btn-outline {
    background: transparent;
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-brutal) var(--neon-purple);
}

.btn-outline:hover {
    background: var(--gradient-secondary);
    color: var(--text-primary);
    box-shadow: var(--shadow-brutal) var(--neon-pink), var(--glow-cyan);
    transform: rotate(-2deg) translateY(-5px) scale(1.05);
}

/* Hero Visual - Metamodern Shapes */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s ease 0.5s both;
}

.circular-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-circle {
    position: absolute;
    width: 220px;
    height: 220px;
    background: var(--gradient-primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    animation: centralPulse 4s ease-in-out infinite;
    box-shadow: var(--glow-pink), var(--shadow-brutal) var(--neon-cyan);
    transform: rotate(15deg);
}

.central-circle:hover {
    transform: rotate(45deg) scale(1.1);
}

.inner-circle {
    width: 140px;
    height: 140px;
    background: var(--gradient-secondary);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation: innerRotate 10s linear infinite;
    box-shadow: var(--glow-cyan);
}

.pulse-ring {
    position: absolute;
    width: 220px;
    height: 220px;
    border: var(--border-thick) solid var(--neon-pink);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0.6;
    animation: pulseRing 3s ease-out infinite;
}

.orbit {
    position: absolute;
    border: var(--border-medium) solid;
    opacity: 0.5;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.orbit-1 {
    width: 320px;
    height: 320px;
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.4);
    animation: orbitRotate 20s linear infinite;
    transform: rotate(20deg);
}

.orbit-2 {
    width: 420px;
    height: 420px;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.4);
    animation: orbitRotate 25s linear infinite reverse;
    transform: rotate(-15deg);
}

.orbit-3 {
    width: 520px;
    height: 520px;
    border-color: var(--neon-yellow);
    box-shadow: 0 0 30px rgba(255, 190, 11, 0.4);
    animation: orbitRotate 30s linear infinite;
    transform: rotate(10deg);
}

.orbit-circle {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.circle-1 {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    box-shadow: var(--glow-pink);
    animation: circleFloat 4s ease-in-out infinite;
}

.circle-2 {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    box-shadow: var(--glow-cyan);
    animation: circleFloat 5s ease-in-out infinite 0.5s;
}

.circle-3 {
    width: 35px;
    height: 35px;
    background: var(--gradient-accent);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    box-shadow: var(--glow-yellow);
    animation: circleFloat 4.5s ease-in-out infinite 1s;
}

.floating-circle {
    position: absolute;
    opacity: 0.7;
}

.float-1 {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    top: 10%;
    left: 20%;
    animation: floatMove 8s ease-in-out infinite;
    box-shadow: var(--glow-pink);
}

.float-2 {
    width: 100px;
    height: 100px;
    background: var(--gradient-secondary);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    bottom: 15%;
    right: 25%;
    animation: floatMove 10s ease-in-out infinite 1s;
    box-shadow: var(--glow-cyan);
}

.float-3 {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    top: 50%;
    left: 10%;
    animation: floatMove 9s ease-in-out infinite 2s;
    box-shadow: var(--glow-yellow);
}

@keyframes orbitRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes centralPulse {
    0%, 100% { 
        transform: rotate(15deg) scale(1);
        box-shadow: var(--glow-pink), var(--shadow-brutal) var(--neon-cyan);
    }
    50% { 
        transform: rotate(25deg) scale(1.15);
        box-shadow: var(--glow-pink), var(--shadow-brutal) var(--neon-yellow);
    }
}

@keyframes innerRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseRing {
    0% {
        transform: scale(1) rotate(15deg);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6) rotate(15deg);
        opacity: 0;
    }
}

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

@keyframes floatMove {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% { 
        transform: translate(30px, -30px) scale(1.2) rotate(90deg);
    }
    50% { 
        transform: translate(-20px, -40px) scale(0.8) rotate(180deg);
    }
    75% { 
        transform: translate(-30px, 15px) scale(1.1) rotate(270deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 10;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 0, 110, 0.5);
}

.scroll-line {
    width: 3px;
    height: 50px;
    background: var(--gradient-primary);
    animation: scrollPulse 2s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

@keyframes scrollPulse {
    0%, 100% { 
        opacity: 0.4; 
        transform: scaleY(0.6);
    }
    50% { 
        opacity: 1; 
        transform: scaleY(1);
    }
}

/* Section Styles - Brutalist */
section {
    padding: 8rem 0;
    position: relative;
}

.section-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 0.95;
    transform: rotate(-1deg);
    filter: drop-shadow(4px 4px 0px var(--neon-cyan));
}

.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

/* Stats Section - Brutalist Cards */
.stats-section {
    background: var(--bg-secondary);
    border-top: var(--border-thick) solid var(--neon-pink);
    border-bottom: var(--border-thick) solid var(--neon-cyan);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.05;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 3rem 2.5rem;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: var(--border-thick) solid var(--neon-purple);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    transform: rotate(-1deg);
}

.stat-card:nth-child(even) {
    transform: rotate(1deg);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transition: left 0.6s ease;
    z-index: -1;
}

.stat-card:hover {
    border-color: var(--neon-pink);
    box-shadow: var(--shadow-brutal) var(--neon-cyan), var(--glow-pink);
    transform: rotate(0deg) translateY(-10px) scale(1.05);
    z-index: 10;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(4rem, 8vw, 6.5rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1;
    filter: drop-shadow(var(--glow-pink));
}

.stat-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Services Section */
.services-section {
    background: var(--bg-primary);
}

.tabs-container {
    max-width: 1300px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: var(--border-thick) solid var(--neon-purple);
    padding-bottom: 1.5rem;
    position: relative;
}

.tabs-nav::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30%;
    height: 4px;
    background: var(--gradient-primary);
}

.tab-btn {
    padding: 1.25rem 2.5rem;
    background: transparent;
    border: var(--border-thick) solid var(--neon-purple);
    color: var(--text-secondary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transform: rotate(-1deg);
}

.tab-btn:nth-child(even) {
    transform: rotate(1deg);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--text-primary);
    border-color: var(--neon-pink);
    background: var(--gradient-primary);
    background-size: 200% 200%;
    box-shadow: var(--shadow-brutal) var(--neon-cyan);
    transform: rotate(0deg) translateY(-5px);
    z-index: 10;
}

.tab-btn.active::after,
.tab-btn:hover::after {
    width: 100%;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.6s ease;
}

.tab-panel.active {
    display: block;
}

.tab-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tab-image {
    position: relative;
    overflow: hidden;
    border: var(--border-thick) solid var(--neon-cyan);
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
    transform: rotate(2deg);
    transition: all 0.4s ease;
}

.tab-image:hover {
    transform: rotate(-2deg) scale(1.05);
    box-shadow: var(--shadow-brutal) var(--neon-pink), var(--glow-cyan);
}

.tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.tab-image:hover img {
    transform: scale(1.15);
    filter: brightness(1.1) contrast(1.2);
}

.tab-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
    transform: rotate(-1deg);
}

.tab-text p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 1.15rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.tab-features {
    list-style: none;
}

.tab-features li {
    color: var(--text-primary);
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    border-bottom: var(--border-thin) solid var(--neon-purple);
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.tab-features li:hover {
    padding-left: 3rem;
    color: var(--neon-cyan);
}

.tab-features li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--neon-pink);
    font-weight: bold;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.tab-features li:hover::before {
    transform: translateX(5px);
}

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

/* Process Section */
.process-section {
    background: var(--bg-secondary);
    border-top: var(--border-thick) solid var(--neon-yellow);
    border-bottom: var(--border-thick) solid var(--neon-pink);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0.05;
    pointer-events: none;
}

.process-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
    opacity: 0.6;
    transition: all 0.4s ease;
    padding: 2rem;
    background: var(--bg-card);
    border: var(--border-thick) solid transparent;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.process-step:nth-child(odd) {
    flex-direction: row;
    transform: rotate(-1deg);
    border-color: var(--neon-pink);
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
    transform: rotate(1deg);
    border-color: var(--neon-cyan);
}

.process-step.active {
    opacity: 1;
    transform: rotate(0deg) scale(1.02);
    box-shadow: var(--shadow-brutal) var(--neon-yellow), var(--glow-pink);
    z-index: 10;
}

.step-circle {
    width: 120px;
    height: 120px;
    border: var(--border-thick) solid var(--neon-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    flex-shrink: 0;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: var(--glow-pink);
    transform: rotate(15deg);
}

.process-step.active .step-circle {
    animation: pulse 2.5s infinite;
    transform: rotate(45deg);
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: var(--glow-pink), var(--shadow-brutal) var(--neon-cyan);
        transform: rotate(45deg) scale(1);
    }
    50% { 
        box-shadow: var(--glow-pink), var(--shadow-brutal) var(--neon-yellow);
        transform: rotate(45deg) scale(1.1);
    }
}

.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: 2px 2px 0px var(--neon-cyan);
    transform: rotate(-45deg);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.1rem;
}

.process-connector {
    width: 4px;
    height: 80px;
    background: var(--gradient-primary);
    margin: 0 auto;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.process-connector::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--gradient-primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: var(--glow-pink);
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Industries Section */
.industries-section {
    background: var(--bg-primary);
}

.industries-slider-wrapper {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
}

.industries-slider {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 3rem 0;
    scrollbar-width: none;
    cursor: grab;
}

.industries-slider:active {
    cursor: grabbing;
}

.industries-slider::-webkit-scrollbar {
    display: none;
}

.industry-slide {
    min-width: 100%;
    scroll-snap-align: start;
}

.industry-card {
    position: relative;
    height: 550px;
    overflow: hidden;
    border: var(--border-thick) solid var(--neon-purple);
    transition: all 0.4s ease;
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 40px 100%, 0 calc(100% - 40px));
    transform: rotate(-1deg);
}

.industry-card:hover {
    border-color: var(--neon-pink);
    box-shadow: var(--shadow-brutal) var(--neon-cyan), var(--glow-pink);
    transform: rotate(1deg) scale(1.02);
    z-index: 10;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.85) contrast(1.1);
}

.industry-card:hover img {
    transform: scale(1.15);
    filter: brightness(1) contrast(1.2);
}

.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(10, 10, 15, 0.95));
}

.industry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3.5rem;
    z-index: 2;
}

.industry-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    filter: drop-shadow(var(--glow-cyan));
    line-height: 1.1;
}

.industry-content p {
    color: var(--text-primary);
    line-height: 1.9;
    font-size: 1.15rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border: var(--border-thick) solid var(--neon-pink);
    background: var(--bg-card);
    color: var(--neon-pink);
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    z-index: 10;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-brutal) var(--neon-cyan), var(--glow-pink);
    transform: translateY(-50%) scale(1.1) rotate(5deg);
}

.slider-prev {
    left: -90px;
}

.slider-next {
    right: -90px;
}

/* About Section */
.about-section {
    background: var(--bg-secondary);
    border-top: var(--border-thick) solid var(--neon-cyan);
    border-bottom: var(--border-thick) solid var(--neon-purple);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    border: var(--border-thick) solid var(--neon-pink);
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 35px) 0, 100% 35px, 100% 100%, 35px 100%, 0 calc(100% - 35px));
    transform: rotate(2deg);
    transition: all 0.4s ease;
}

.about-image:hover {
    transform: rotate(-2deg) scale(1.05);
    box-shadow: var(--shadow-brutal) var(--neon-yellow), var(--glow-pink);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.about-image:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.15rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.about-text p {
    margin-bottom: 2rem;
}

/* Contact Section */
.contact-section {
    background: var(--bg-primary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-item {
    padding: 2.5rem;
    background: var(--bg-card);
    border: var(--border-thick) solid var(--neon-purple);
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
    transform: rotate(-1deg);
    transition: all 0.4s ease;
}

.contact-item:nth-child(even) {
    transform: rotate(1deg);
}

.contact-item:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: var(--shadow-brutal) var(--neon-cyan), var(--glow-pink);
    border-color: var(--neon-pink);
}

.contact-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.1rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.contact-item a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--neon-pink);
    text-shadow: var(--glow-pink);
    transform: translateX(5px);
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 4rem;
    border: var(--border-thick) solid var(--neon-cyan);
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    transform: rotate(1deg);
    transition: all 0.4s ease;
}

.contact-form-wrapper:hover {
    transform: rotate(0deg);
    box-shadow: var(--shadow-brutal) var(--neon-pink), var(--glow-cyan);
}

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

.form-group input,
.form-group textarea,
.form-group select,
.form-select {
    width: 100%;
    padding: 1.25rem;
    background: var(--bg-tertiary);
    border: var(--border-thick) solid var(--neon-purple);
    color: var(--text-primary);
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s ease;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.form-select {
    cursor: pointer;
}

.form-select option {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    padding: 0.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.form-select:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: var(--shadow-brutal) var(--neon-cyan), var(--glow-pink);
    background: var(--bg-secondary);
    transform: translateY(-3px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    font-weight: 500;
    opacity: 0.8;
}

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

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: var(--border-thick) solid var(--neon-pink);
    padding: 5rem 0 3rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

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

.footer-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.footer-section a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-section a:hover {
    color: var(--neon-pink);
    text-shadow: var(--glow-pink);
    transform: translateX(5px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: var(--border-thin) solid var(--neon-purple);
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-top: var(--border-thick) solid var(--neon-pink);
    padding: 2rem;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.7;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.cookie-content a {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-content a:hover {
    color: var(--neon-pink);
    text-shadow: var(--glow-pink);
}

.cookie-btn {
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: var(--border-thick) solid var(--neon-pink);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    box-shadow: var(--shadow-brutal) var(--neon-cyan);
}

.cookie-btn:hover {
    box-shadow: var(--shadow-brutal) var(--neon-yellow), var(--glow-pink);
    transform: translateY(-5px) scale(1.05);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Mobile Responsive */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .tab-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .slider-prev {
        left: 1rem;
    }
    
    .slider-next {
        right: 1rem;
    }
    
    .section-title {
        transform: rotate(0deg);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1.25rem 0;
    }
    
    .hero-section {
        padding: 8rem 0 4rem;
        min-height: auto;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .central-circle {
        width: 180px;
        height: 180px;
    }
    
    .inner-circle {
        width: 110px;
        height: 110px;
    }
    
    .pulse-ring {
        width: 180px;
        height: 180px;
    }
    
    .orbit-1 {
        width: 250px;
        height: 250px;
    }
    
    .orbit-2 {
        width: 330px;
        height: 330px;
    }
    
    .orbit-3 {
        width: 410px;
        height: 410px;
    }
    
    .float-1,
    .float-2,
    .float-3 {
        width: 50px;
        height: 50px;
    }
    
    section {
        padding: 5rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs-nav {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .process-step {
        flex-direction: column !important;
        text-align: center;
    }
    
    .process-connector {
        width: 80px;
        height: 4px;
        transform: rotate(90deg);
    }
    
    .slider-btn {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .fullscreen-link {
        font-size: 2.5rem;
    }
    
    .stat-card,
    .contact-item,
    .tab-btn {
        transform: rotate(0deg) !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .contact-form-wrapper {
        padding: 2.5rem 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* Section Transitions - Unique Designs */
.section-transition {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    z-index: 1;
}

/* Wave Transition */
.wave-transition {
    height: 150px;
    margin-top: -1px;
}

.wave-transition svg {
    width: 100%;
    height: 100%;
    display: block;
    animation: waveMove 8s ease-in-out infinite;
}

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

/* Diagonal Split Transition */
.diagonal-transition {
    height: 100px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.diagonal-split {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--neon-pink) 0%, 
        transparent 25%,
        transparent 75%,
        var(--neon-cyan) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
    animation: diagonalShift 6s ease-in-out infinite;
}

.diagonal-split::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(-135deg, 
        var(--neon-purple) 0%, 
        transparent 25%,
        transparent 75%,
        var(--neon-yellow) 100%);
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
    animation: diagonalShift 6s ease-in-out infinite reverse;
}

@keyframes diagonalShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(30px) translateY(-20px); }
}

/* Blob Transition */
.blob-transition {
    height: 200px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.blob-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: blobFloat 12s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    top: -200px;
    left: 10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: var(--gradient-secondary);
    top: -150px;
    right: 20%;
    animation-delay: 4s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-accent);
    bottom: -150px;
    left: 50%;
    animation-delay: 8s;
}

@keyframes blobFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    }
    33% { 
        transform: translate(50px, -50px) scale(1.2);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    66% { 
        transform: translate(-30px, 30px) scale(0.8);
        border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
    }
}

/* Glass Morphism Transition */
.glass-transition {
    height: 150px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.glass-morph-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 0, 110, 0.1) 0%, 
        rgba(0, 245, 255, 0.1) 50%,
        rgba(131, 56, 236, 0.1) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    animation: glassMorph 10s ease-in-out infinite;
}

@keyframes glassMorph {
    0%, 100% { 
        clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
        opacity: 0.8;
    }
    50% { 
        clip-path: polygon(0 0, 100% 0, 100% 50%, 0 80%);
        opacity: 1;
    }
}

/* 3D Wave Transition */
.wave-3d-transition {
    height: 180px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.wave-3d-container {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.wave-3d {
    position: absolute;
    width: 100%;
    height: 60px;
    background: var(--gradient-primary);
    opacity: 0.7;
    transform-origin: center;
    animation: wave3D 4s ease-in-out infinite;
}

.wave-3d-1 {
    top: 0;
    animation-delay: 0s;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}

.wave-3d-2 {
    top: 60px;
    animation-delay: 1.3s;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 80%);
}

.wave-3d-3 {
    top: 120px;
    animation-delay: 2.6s;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
}

@keyframes wave3D {
    0%, 100% { 
        transform: translateY(0) rotateX(0deg);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-20px) rotateX(15deg);
        opacity: 1;
    }
}

/* Gradient Mesh Transition */
.mesh-transition {
    height: 200px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.gradient-mesh {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 110, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 245, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(131, 56, 236, 0.2) 0%, transparent 70%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    animation: meshMove 15s ease-in-out infinite;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
}

@keyframes meshMove {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(50px, -30px) scale(1.1);
        opacity: 1;
    }
}

/* Glass Cards Section - Glassmorphism */
.glass-cards-section {
    background: var(--bg-primary);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.glass-cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 0, 110, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 245, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.glass-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.glass-card {
    position: relative;
    height: 350px;
    perspective: 1000px;
}

.glass-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: var(--border-thin) solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    transform-style: preserve-3d;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.glass-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.glass-card:hover .glass-card-inner {
    transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 0, 110, 0.5);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 0, 110, 0.3),
        inset 0 0 40px rgba(0, 245, 255, 0.1);
}

.glass-card:hover .glass-card-inner::before {
    opacity: 0.1;
}

.glass-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.5));
}

.glass-card:nth-child(2) .glass-card-icon {
    animation-delay: 0.5s;
    filter: drop-shadow(0 0 20px rgba(0, 245, 255, 0.5));
}

.glass-card:nth-child(3) .glass-card-icon {
    animation-delay: 1s;
    filter: drop-shadow(0 0 20px rgba(255, 190, 11, 0.5));
}

.glass-card:nth-child(4) .glass-card-icon {
    animation-delay: 1.5s;
    filter: drop-shadow(0 0 20px rgba(131, 56, 236, 0.5));
}

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

.glass-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.glass-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.glass-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.glass-card:hover .glass-card-glow {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Parallax Gradient Section */
.parallax-gradient-section {
    position: relative;
    min-height: 90vh;
    padding: 8rem 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(255, 0, 110, 0.2) 0%, transparent 50%),
        linear-gradient(225deg, rgba(0, 245, 255, 0.2) 0%, transparent 50%),
        linear-gradient(45deg, rgba(131, 56, 236, 0.15) 0%, transparent 50%);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    animation: parallaxBgMove 20s ease-in-out infinite;
}

@keyframes parallaxBgMove {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    33% { 
        transform: translate(50px, -50px) scale(1.1);
        opacity: 1;
    }
    66% { 
        transform: translate(-30px, 30px) scale(0.9);
        opacity: 0.9;
    }
}

.parallax-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.parallax-text {
    animation: fadeInUp 1s ease;
}

.parallax-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.95;
    margin-bottom: 2.5rem;
    letter-spacing: -3px;
    filter: drop-shadow(0 0 30px rgba(255, 0, 110, 0.5));
    transform: rotate(-1deg);
}

.parallax-description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 3.5rem;
    max-width: 90%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.parallax-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.parallax-stat {
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: var(--border-thin) solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    transform: rotate(-1deg);
    transition: all 0.4s ease;
}

.parallax-stat:nth-child(even) {
    transform: rotate(1deg);
}

.parallax-stat:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 0, 110, 0.3);
    border-color: rgba(255, 0, 110, 0.5);
}

.parallax-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.parallax-stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.parallax-visual {
    position: relative;
    height: 500px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    border-radius: 20px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: var(--border-thin) solid rgba(255, 255, 255, 0.1);
    animation: floatElement 8s ease-in-out infinite;
}

.float-el-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.3), rgba(131, 56, 236, 0.3));
    top: 10%;
    left: 10%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation-delay: 0s;
}

.float-el-2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.3), rgba(58, 134, 255, 0.3));
    top: 50%;
    right: 20%;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation-delay: 2s;
}

.float-el-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 190, 11, 0.3), rgba(251, 86, 7, 0.3));
    bottom: 20%;
    left: 30%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 4s;
}

.float-el-4 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.3), rgba(255, 0, 110, 0.3));
    top: 30%;
    left: 50%;
    border-radius: 50%;
    animation-delay: 6s;
}

@keyframes floatElement {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% { 
        transform: translate(30px, -30px) rotate(90deg) scale(1.1);
    }
    50% { 
        transform: translate(-20px, -40px) rotate(180deg) scale(0.9);
    }
    75% { 
        transform: translate(-30px, 20px) rotate(270deg) scale(1.05);
    }
}

/* Interactive 3D Section */
.interactive-3d-section {
    background: var(--bg-secondary);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.interactive-3d-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 245, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.interactive-3d-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.interactive-card {
    position: relative;
    height: 400px;
    perspective: 1200px;
    cursor: pointer;
}

.interactive-card-front,
.interactive-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: var(--border-thick) solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    clip-path: polygon(0 0, calc(100% - 35px) 0, 100% 35px, 100% 100%, 35px 100%, 0 calc(100% - 35px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.interactive-card-front {
    transform: rotateY(0deg);
}

.interactive-card-back {
    transform: rotateY(180deg);
    background: rgba(255, 0, 110, 0.1);
    border-color: rgba(255, 0, 110, 0.3);
}

.interactive-card:hover .interactive-card-front {
    transform: rotateY(-180deg);
}

.interactive-card:hover .interactive-card-back {
    transform: rotateY(0deg);
}

.card-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1;
    opacity: 0.3;
}

.interactive-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.2;
}

.interactive-card p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.1rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.card-back-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--neon-pink);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.card-back-content ul {
    list-style: none;
}

.card-back-content li {
    color: var(--text-primary);
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.8;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.card-back-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-weight: bold;
}

/* Enhanced Glassmorphism Effects */
.stat-card,
.contact-item,
.contact-form-wrapper {
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    background: rgba(30, 30, 46, 0.4);
}

.tab-content-wrapper,
.about-image {
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-content {
        gap: 7rem;
    }
    
    .hero-visual {
        height: 600px;
    }
}

/* Mobile Responsive for New Sections */
@media (max-width: 1024px) {
    .parallax-content {
        grid-template-columns: 1fr;
    }
    
    .parallax-visual {
        height: 300px;
    }
    
    .interactive-3d-grid {
        grid-template-columns: 1fr;
    }
    
    .glass-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-transition {
        height: 80px;
    }
    
    .wave-transition {
        height: 100px;
    }
    
    .blob-transition {
        height: 120px;
    }
    
    .glass-transition {
        height: 100px;
    }
    
    .wave-3d-transition {
        height: 120px;
    }
    
    .mesh-transition {
        height: 120px;
    }
    
    .glass-card {
        height: 300px;
    }
    
    .parallax-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .interactive-card {
        height: 350px;
    }
}

/* Policy Pages Styles */
.policy-section {
    padding: 12rem 0 8rem;
    min-height: 80vh;
    background: var(--bg-primary);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: var(--border-thick) solid var(--neon-purple);
    padding: 4rem clamp(2rem, 5vw, 5rem);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    box-shadow: var(--shadow-brutal) var(--neon-cyan), var(--glow-purple);
}

.policy-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-align: center;
}

.policy-date {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 3rem;
    font-weight: 500;
}

.policy-text {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.1rem;
}

.policy-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-primary);
    margin: 3rem 0 1.5rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.policy-text h2:first-child {
    margin-top: 0;
}

.policy-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--neon-cyan);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.policy-text p {
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.policy-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
    list-style: none;
}

.policy-text ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.policy-text ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-weight: 700;
}

.policy-text a {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.policy-text a:hover {
    color: var(--neon-pink);
    border-bottom-color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

.thanks-section {
    padding: 12rem 0 8rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--neon-cyan);
    margin-bottom: 2rem;
    text-shadow: 0 0 30px var(--neon-cyan);
    font-weight: 700;
}

.thanks-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.thanks-message {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.thanks-message a {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-message a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}
