/* ===================================
   MINDOVA LANDING PAGE - 2025 DESIGN
   =================================== */

/* Import Inter Tight Font */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* CSS Custom Properties */
:root {
    /* Easing Functions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-expo: cubic-bezier(0.7, 0, 0.84, 0);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-dramatic: cubic-bezier(0.87, 0, 0.13, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-liquid: cubic-bezier(0.23, 1, 0.32, 1);
    
    /* Colors */
    --primary-500: #5A3DEB;
    --primary-400: #775FEE;
    --primary-300: #9681F2;
    --primary-600: #4B32C9;
    --primary-100: #D4CBFA;
    --primary-50: #EDE9FD;
    --accent-indigo: #4f46e5;
    --accent-pink: #ec4899;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #FAFAFA;
}

/* Base Styles */
.landing-page {
    font-family: 'Inter Tight', sans-serif;
    overflow-x: hidden;
    background-color: var(--bg-light);
}

/* ===================================
   ANIMATED MESH GRADIENT BACKGROUND
   =================================== */
.mesh-gradient {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #5A3DEB 0%, #4f46e5 50%, #ec4899 100%);
}

.mesh-gradient::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(90,61,235,0.3) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(79,70,229,0.2) 0%, transparent 50%);
    animation: meshMove 20s ease-in-out infinite;
}

.mesh-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    mix-blend-mode: overlay;
}

@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, 2%) rotate(1deg); }
    50% { transform: translate(-1%, 3%) rotate(-1deg); }
    75% { transform: translate(3%, -2%) rotate(0.5deg); }
}

/* ===================================
   FLOATING ORBS
   =================================== */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), rgba(90,61,235,0.2));
    top: 10%;
    right: 10%;
    animation: floatOrb1 10s ease-in-out infinite;
}

.orb-2 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 40% 40%, rgba(79,70,229,0.3), rgba(236,72,153,0.15));
    top: 40%;
    right: 25%;
    animation: floatOrb2 8s ease-in-out infinite;
}

.orb-3 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 50% 50%, rgba(212,203,250,0.5), rgba(90,61,235,0.2));
    top: 60%;
    right: 5%;
    animation: floatOrb3 12s ease-in-out infinite;
}

.orb-4 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 50% 50%, rgba(236,72,153,0.3), rgba(79,70,229,0.1));
    top: 25%;
    right: 35%;
    animation: floatOrb4 6s ease-in-out infinite;
}

.orb-5 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.6), rgba(212,203,250,0.3));
    top: 70%;
    right: 20%;
    animation: floatOrb5 7s ease-in-out infinite;
}

@keyframes floatOrb1 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

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

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

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

@keyframes floatOrb5 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.1); }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Animated World Map Background */
.hero-map-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.4;
    overflow: hidden;
}

.hero-map-background svg {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
}



/* Hero Title High Contrast */
.hero-title {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-title-accent {
    color: #A5B4FC;
    text-shadow: 0 2px 10px rgba(90, 61, 235, 0.4), 0 0 30px rgba(90, 61, 235, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #D4CBFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animated Headline */
.headline-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px);
    animation: headlineReveal 0.8s var(--ease-out-expo) forwards;
}

.headline-word:nth-child(1) { animation-delay: 0.4s; }
.headline-word:nth-child(2) { animation-delay: 0.5s; }
.headline-word:nth-child(3) { animation-delay: 0.6s; }
.headline-word:nth-child(4) { animation-delay: 0.7s; }

@keyframes headlineReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subheadline Animation */
.hero-subheadline {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeRise 0.6s var(--ease-out-expo) 0.8s forwards;
}

@keyframes fadeRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Buttons */
.hero-cta {
    opacity: 0;
    transform: scale(0.8);
    animation: scalePop 0.5s var(--ease-elastic) 1s forwards;
}

.hero-cta-secondary {
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeSlide 0.4s var(--ease-out-expo) 1.1s forwards;
}

@keyframes scalePop {
    0% { opacity: 0; transform: scale(0.5); }
    70% { transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes fadeSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Stats Animation */
.stat-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeRise 0.4s var(--ease-out-expo) forwards;
}

.stat-item:nth-child(1) { animation-delay: 1.2s; }
.stat-item:nth-child(2) { animation-delay: 1.3s; }
.stat-item:nth-child(3) { animation-delay: 1.4s; }

/* ===================================
   GLASSMORPHISM NAVBAR
   =================================== */
.landing-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(90, 61, 235, 0.1);
    transition: all 0.3s var(--ease-smooth);
}

.landing-navbar.scrolled {
    height: 64px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Logo Animation */
.navbar-logo {
    opacity: 0;
    transform: scale(0.8);
    animation: logoReveal 0.6s var(--ease-out-expo) forwards;
}

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

/* Nav Link Underline Effect */
.nav-link {
    position: relative;
    color: var(--text-dark);
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-500);
    transition: all 0.25s var(--ease-out-expo);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-500);
}

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

/* Primary Button Glow */
.btn-glow {
    position: relative;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-indigo) 100%);
    transition: all 0.3s var(--ease-smooth);
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-pink));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}

.btn-glow:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 40px rgba(90, 61, 235, 0.4);
}

.btn-glow:hover::before {
    opacity: 0.5;
}

/* ===================================
   LOGO ECOSYSTEM SECTION
   =================================== */
.logo-track {
    display: flex;
    gap: 80px;
    animation: scrollLogos 30s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-item {
    flex-shrink: 0;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s var(--ease-smooth);
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-5px) scale(1.1);
}

/* Edge Fades */
.logo-fade-left,
.logo-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    pointer-events: none;
    z-index: 10;
}

.logo-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.logo-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */
.step-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s var(--ease-out-expo);
    transform-style: preserve-3d;
}

.step-card:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateZ(20px);
    box-shadow: 
        0 30px 60px rgba(90, 61, 235, 0.15),
        0 0 0 1px rgba(90, 61, 235, 0.1);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 6rem;
    font-weight: 800;
    color: var(--primary-500);
    opacity: 0.08;
    line-height: 1;
    transition: all 0.4s ease;
}

.step-card:hover .step-number {
    opacity: 0.15;
    transform: translateY(-5px);
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-50), white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s var(--ease-elastic);
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-500), var(--accent-indigo));
}

.step-card:hover .step-icon svg {
    color: white;
}

/* Connecting Lines */
.step-connector {
    position: absolute;
    top: 50%;
    right: -40px;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-200), transparent);
    transform: translateY(-50%);
}

/* ===================================
   FEATURES SECTION
   =================================== */
.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s var(--ease-out-expo);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(90, 61, 235, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(90, 61, 235, 0.15);
    border-color: rgba(90, 61, 235, 0.3);
}

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

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-50), white);
    border: 1px solid rgba(90, 61, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s var(--ease-elastic);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-500), var(--accent-indigo));
    border-color: transparent;
}

.feature-card:hover .feature-icon-wrapper svg {
    color: white;
}

/* Featured Card Glow */
.featured-card {
    position: relative;
}

.featured-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-indigo), var(--accent-pink));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.featured-card:hover::after {
    opacity: 0.3;
    filter: blur(20px);
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.5s var(--ease-out-expo);
}

.testimonial-card.active {
    transform: scale(1.05);
    box-shadow: 0 40px 80px rgba(90, 61, 235, 0.15);
}

.quote-mark {
    font-size: 8rem;
    line-height: 1;
    color: var(--primary-500);
    opacity: 0.1;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: Georgia, serif;
}

.avatar-glow {
    position: relative;
}

.avatar-glow::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-pink));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}

.testimonial-card:hover .avatar-glow::before {
    opacity: 0.5;
}

/* ===================================
   STATS SECTION
   =================================== */
.stat-card-modern {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s var(--ease-out-expo);
    overflow: hidden;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-indigo));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out-expo);
}

.stat-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(90, 61, 235, 0.12);
}

.stat-card-modern:hover::before {
    transform: scaleX(1);
}

.stat-value-large {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-indigo));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* Animated Background Gradient for Stats */
.stat-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(90, 61, 235, 0.03) 0%, 
        rgba(79, 70, 229, 0.03) 50%, 
        rgba(236, 72, 153, 0.03) 100%);
    background-size: 200% 200%;
    animation: gradientShift 20s ease infinite;
    pointer-events: none;
}

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

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cta-gradient-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #5A3DEB 0%, #4f46e5 50%, #ec4899 100%);
}

.cta-gradient-bg::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0,0,0,0.1) 0%, transparent 50%);
    animation: ctaMeshMove 25s ease-in-out infinite;
}

@keyframes ctaMeshMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(3%, -2%) rotate(2deg); }
    66% { transform: translate(-2%, 3%) rotate(-1deg); }
}

/* Rising Particles */
.rising-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    bottom: 0;
    animation: rise 15s linear infinite;
}

@keyframes rise {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* CTA Button Magnetic Effect */
.btn-magnetic {
    position: relative;
    background: white;
    color: var(--primary-500);
    transition: all 0.3s var(--ease-elastic);
}

.btn-magnetic:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    position: relative;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    transition: all 0.3s var(--ease-smooth);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* ===================================
   FOOTER
   =================================== */
.landing-footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    position: relative;
}

.landing-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.footer-link {
    color: #9ca3af;
    transition: all 0.2s ease;
    position: relative;
}

.footer-link:hover {
    color: white;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-400);
    transition: width 0.25s var(--ease-out-expo);
}

.footer-link:hover::after {
    width: 100%;
}

/* Social Icon 3D Flip */
.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.4s var(--ease-smooth);
}

.social-icon:hover {
    transform: rotateY(360deg) scale(1.1);
    background: var(--primary-500);
    color: white;
}

/* Newsletter Input */
.newsletter-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-400);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(90, 61, 235, 0.2);
}

.newsletter-input::placeholder {
    color: #6b7280;
}

/* ===================================
   SCROLL REVEAL ANIMATIONS
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s var(--ease-out-expo);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.7s var(--ease-out-expo);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.7s var(--ease-out-expo);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.7s var(--ease-elastic);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--ease-out-expo);
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(2) { transition-delay: 100ms; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(3) { transition-delay: 200ms; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(4) { transition-delay: 300ms; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(5) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(6) { transition-delay: 500ms; opacity: 1; transform: translateY(0); }

/* ===================================
   COUNTER ANIMATION
   =================================== */
.counter-value {
    font-variant-numeric: tabular-nums;
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */
@media (max-width: 1024px) {
    .floating-orb {
        opacity: 0.5;
    }
    
    .orb-1 { width: 200px; height: 200px; }
    .orb-2 { width: 120px; height: 120px; }
    .orb-3 { width: 80px; height: 80px; }
}

@media (max-width: 768px) {
    .floating-orb {
        display: none;
    }
    
    .headline-word {
        font-size: 2.5rem !important;
    }
    
    .stat-value-large {
        font-size: 2.5rem;
    }
    
    .step-card:hover {
        transform: translateY(-5px);
    }
}

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

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-balance {
    text-wrap: balance;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-500), var(--accent-indigo));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-glow {
    box-shadow: 0 0 40px rgba(90, 61, 235, 0.2);
}
