:root {
    /* Couleurs principales */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #ec4899;
    --secondary-dark: #db2777;
    --accent: #8b5cf6;
    --accent-light: #a78bfa;
    
    /* Backgrounds */
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-tertiary: #1a1a24;
    --bg-card: #16162a;
    --bg-elevated: #1e1e32;
    
    /* Texte */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-tertiary: #71717a;
    
    /* Borders & Dividers */
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(99, 102, 241, 0.3);
    
    /* Effects */
    --glow-primary: rgba(99, 102, 241, 0.4);
    --glow-secondary: rgba(236, 72, 153, 0.4);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Spacing */
    --section-padding: 10rem;
    --container-padding: 4rem;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: inherit;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

::selection {
    background: var(--primary);
    color: white;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: all var(--transition-fast);
    opacity: 0;
    mix-blend-mode: difference;
}

.cursor.active {
    opacity: 1;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    opacity: 0;
    box-shadow: 0 0 10px var(--glow-primary);
}

.cursor-dot.active {
    opacity: 1;
}

.cursor.hover {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    backdrop-filter: blur(5px);
}

@media (hover: none) and (pointer: coarse) {
    .cursor,
    .cursor-dot {
        display: none;
    }
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(ellipse at 15% 25%, rgba(99, 102, 241, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 85% 75%, rgba(236, 72, 153, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.05) rotate(2deg);
        opacity: 0.9;
    }
}

.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' /%3E%3C/svg%3E");
    animation: grainMove 8s steps(10) infinite;
    pointer-events: none;
}

@keyframes grainMove {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2.5rem;
}

.loading-screen.hidden {
    animation: loadingFadeOut 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loadingFadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.loader {
    width: 70px;
    height: 70px;
    border: 4px solid rgba(99, 102, 241, 0.1);
    border-top-color: var(--primary);
    border-right-color: var(--secondary);
    border-radius: 50%;
    animation: loaderSpin 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
    position: relative;
}

.loader::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid transparent;
    border-bottom-color: var(--accent);
    border-radius: 50%;
    animation: loaderSpin 0.8s linear infinite reverse;
}

@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

.loading-text {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: loadingPulse 2s ease-in-out infinite;
}

@keyframes loadingPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% 100%;
    z-index: 10000;
    box-shadow: 0 0 20px var(--glow-primary);
    animation: gradientSlide 3s linear infinite;
}

@keyframes gradientSlide {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: all var(--transition-base);
}

header.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(25px) saturate(180%);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -1px;
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-base);
}

.logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    position: relative;
    transition: color var(--transition-base);
    padding: 0.5rem 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: translateX(-50%);
    transition: width var(--transition-base);
    border-radius: 2px;
}

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

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a.active::before {
    width: 100%;
}

.cta-nav {
    padding: 0.8rem 1.8rem !important;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    color: white !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--glow-primary);
    position: relative;
    overflow: hidden;
}

.cta-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.cta-nav:hover::before {
    width: 300px;  /* Augmente la taille du cercle */
    height: 300px;  /* Augmente la taille du cercle */
    opacity: 0;  /* Fait disparaître le cercle */
}

.cta-nav:hover {
    transform: translateY(-3px);  /* Légère translation du bouton */
    box-shadow: 0 8px 30px var(--glow-primary);
}



/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: shapeFloat 25s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary), transparent);
    top: -10%;
    left: -5%;
}

.shape-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--secondary), transparent);
    bottom: -10%;
    right: -5%;
    animation-delay: 3s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent), transparent);
    top: 40%;
    right: 15%;
    animation-delay: 6s;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(60px, -80px) rotate(120deg) scale(1.1);
    }
    66% {
        transform: translate(-50px, 60px) rotate(240deg) scale(0.95);
    }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(99, 102, 241, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(236, 72, 153, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(139, 92, 246, 0.3), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(99, 102, 241, 0.2), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(236, 72, 153, 0.2), transparent);
    background-size: 250% 250%;
    background-position: 0% 0%;
    animation: particlesFloat 25s ease infinite;
}

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

.hero-content {
    max-width: 1100px;
    text-align: center;
    z-index: 1;
    position: relative;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 1.8rem;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
}

.label-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--glow-primary);
}

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

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 6.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -3px;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.4s;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 5s ease infinite;
    display: inline-block;
    position: relative;
}

.gradient-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(20px);
    opacity: 0.5;
}

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

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto 3.5rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.6s;
}

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

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.8s;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    position: relative;
    padding: 1.2rem 2.8rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: transform var(--transition-base);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 8px 30px var(--glow-primary);
}

.btn-primary::before {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0);
    border-radius: 12px;
}

.btn-primary:hover::before {
    transform: scale(1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--glow-primary);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.2);
}

.btn-icon {
    font-size: 1.3rem;
    transition: transform var(--transition-base);
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
}

@keyframes fadeIn {
    to { opacity: 0.7; }
}

.mouse-scroll {
    animation: mouseFloat 2.5s ease-in-out infinite;
}

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

.mouse {
    width: 32px;
    height: 52px;
    border: 2px solid rgba(99, 102, 241, 0.4);
    border-radius: 16px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.wheel {
    width: 4px;
    height: 12px;
    background: var(--primary);
    border-radius: 2px;
    animation: wheelScroll 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--glow-primary);
}

@keyframes wheelScroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(22px);
    }
}

.scroll-text {
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 3px;
    font-weight: 600;
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    padding: var(--section-padding) var(--container-padding);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

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

.stats-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
}

.stats-glow-1 {
    width: 700px;
    height: 700px;
    background: var(--primary);
    top: -300px;
    left: -200px;
}

.stats-glow-2 {
    width: 600px;
    height: 600px;
    background: var(--secondary);
    bottom: -300px;
    right: -200px;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(26, 26, 36, 0.4);
    border: 1px solid var(--border);
    border-radius: 24px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.stat-item:hover::before,
.stat-item:hover::after {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-15px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.stat-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.15), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.stat-item:hover .stat-glow {
    opacity: 1;
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 30px var(--glow-primary));
    animation: iconFloat 3s ease-in-out infinite;
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    font-family: 'Space Mono', monospace;
    letter-spacing: -3px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.stat-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: var(--section-padding) var(--container-padding);
    position: relative;
}

.section-header {
    max-width: 850px;
    margin: 0 auto 7rem;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1.8rem;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
}

.label-icon {
    font-size: 1.1rem;
    animation: iconSpin 3s linear infinite;
}

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

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-card-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary), transparent);
    top: -200px;
    right: -200px;
    opacity: 0;
    filter: blur(80px);
    transition: opacity 0.6s ease;
}

.service-card:hover .service-card-glow {
    opacity: 0.15;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-20px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.25);
}

.service-number {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(99, 102, 241, 0.03);
    line-height: 1;
    font-family: 'Space Mono', monospace;
    transition: all var(--transition-base);
}

.service-card:hover .service-number {
    color: rgba(99, 102, 241, 0.08);
    transform: scale(1.1);
}

.service-icon {
    width: 90px;
    height: 90px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 2.5rem;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-icon span {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.5));
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(-5deg);
}

.gradient-1 {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.25);
}

.gradient-2 {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(236, 72, 153, 0.05));
    border: 1px solid rgba(236, 72, 153, 0.25);
}

.gradient-3 {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.25);
}

.gradient-4 {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.service-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all var(--transition-base);
    font-size: 1.05rem;
}

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

.link-arrow {
    transition: transform var(--transition-base);
    font-size: 1.3rem;
}

.service-link:hover .link-arrow {
    transform: translateX(8px);
}

/* ============================================
   SHOWCASE SECTION
   ============================================ */
.showcase {
    padding: var(--section-padding) var(--container-padding);
    background: var(--bg-secondary);
}

.showcase-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.showcase-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.showcase-item:hover {
    transform: translateY(-15px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.showcase-image {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(236, 72, 153, 0.15));
    position: relative;
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.15);
}

.showcase-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
}

.placeholder-icon {
    font-size: 5rem;
    opacity: 0.4;
    filter: drop-shadow(0 0 20px var(--glow-primary));
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.95), rgba(236, 72, 153, 0.95));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    backdrop-filter: blur(10px);
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
}

.overlay-icon {
    font-size: 4rem;
    animation: overlayBounce 2s ease-in-out infinite;
}

@keyframes overlayBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.overlay-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.showcase-content {
    padding: 2.8rem;
}

.showcase-tag {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.showcase-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.showcase-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.showcase-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.5rem 1.2rem;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all var(--transition-base);
}

.tag:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    color: var(--primary);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--section-padding) var(--container-padding);
    position: relative;
    overflow: hidden;
}

.testimonials-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.testimonials-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.08;
}

.testimonials-blur-1 {
    width: 800px;
    height: 800px;
    background: var(--primary);
    top: -400px;
    right: -400px;
}

.testimonials-blur-2 {
    width: 700px;
    height: 700px;
    background: var(--secondary);
    bottom: -350px;
    left: -350px;
}

.testimonials-slider {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 5rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
    font-size: 10rem;
    font-weight: 900;
    color: rgba(99, 102, 241, 0.08);
    line-height: 1;
    margin-bottom: -4rem;
    font-family: Georgia, serif;
}

.testimonial-stars {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.star {
    color: #fbbf24;
    font-size: 2rem;
    animation: starPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }

@keyframes starPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.25); 
        opacity: 0.8; 
    }
}

.testimonial-text {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 3.5rem;
    color: var(--text-primary);
    font-style: italic;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 2.5rem;
    position: relative;
    box-shadow: 0 8px 30px var(--glow-primary);
}

.author-avatar span {
    position: relative;
    z-index: 1;
}

.avatar-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    border-top-color: transparent;
    border-right-color: transparent;
    animation: ringRotate 3s linear infinite;
}

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

.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    color: #22c55e;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.1);
}

.badge-check {
    font-size: 1.4rem;
    animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--section-padding) var(--container-padding);
    background: var(--bg-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    animation: ctaFloat 25s ease-in-out infinite;
}

.cta-orb-1 {
    width: 700px;
    height: 700px;
    background: var(--primary);
    top: -300px;
    left: -200px;
}

.cta-orb-2 {
    width: 600px;
    height: 600px;
    background: var(--secondary);
    bottom: -300px;
    right: -200px;
    animation-delay: 6s;
}

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

.cta-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 900;
    margin-bottom: 2.5rem;
    letter-spacing: -3px;
    line-height: 1.2;
}

.cta-section p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-size: 1.05rem;
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.feature-item:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-3px);
}

.feature-check {
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: 900;
    box-shadow: 0 4px 15px var(--glow-primary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 8rem;
        --container-padding: 3rem;
    }
    
    nav {
        padding: 0 2rem;
    }
    
    .nav-links {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 6rem;
        --container-padding: 1.5rem;
    }
    
    nav {
        padding: 0 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .testimonial {
        padding: 3rem 2rem;
    }
    
    .testimonial-text {
        font-size: 1.3rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .cursor,
    .cursor-dot {
        display: none;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ============================================
   ANIMATIONS PERFORMANCE
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}