/* ============================================
   FlorStore Landing V4 - Full Features Edition
   Based on V3 with enhanced advantages focus
   ============================================ */

:root {
    --bg: #000;
    --bg-card: #0a0a0a;
    --bg-light: #111;
    --text: #fff;
    --text-dim: #555;
    --accent: #ff2d75;
    --accent-2: #7928ca;
    --accent-3: #00d4ff;
    --gradient: linear-gradient(135deg, #ff2d75 0%, #7928ca 50%, #00d4ff 100%);
    --gradient-soft: linear-gradient(135deg, rgba(255, 45, 117, 0.1) 0%, rgba(121, 40, 202, 0.1) 100%);
    
    --font: 'Outfit', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 80px); }

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg); z-index: 10000;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.preloader.done { animation: preloaderExit 1.5s var(--ease) forwards; }
@keyframes preloaderExit { 0% { clip-path: inset(0 0 0 0); } 100% { clip-path: inset(0 0 100% 0); } }

.flash-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.flash { position: absolute; width: 100%; height: 100%; opacity: 0; }
.flash-1 { background: radial-gradient(circle at 30% 40%, rgba(255, 45, 117, 0.8) 0%, transparent 50%); animation: flash1 3s ease-in-out infinite; }
.flash-2 { background: radial-gradient(circle at 70% 60%, rgba(121, 40, 202, 0.8) 0%, transparent 50%); animation: flash2 3s ease-in-out infinite 1s; }
.flash-3 { background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.6) 0%, transparent 40%); animation: flash3 2s ease-in-out infinite 0.5s; }
@keyframes flash1 { 0%, 100% { opacity: 0; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.2); } }
@keyframes flash2 { 0%, 100% { opacity: 0; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.3); } }
@keyframes flash3 { 0%, 100% { opacity: 0; transform: scale(1); } 25% { opacity: 0.8; transform: scale(1.5); } 50% { opacity: 0; transform: scale(2); } }

.stripes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; pointer-events: none; }
.stripe { position: absolute; height: 2px; background: var(--gradient); opacity: 0.5; animation: stripeMove 2s ease-in-out infinite; }
.stripe:nth-child(1) { top: 10%; width: 30%; left: -30%; animation-delay: 0s; }
.stripe:nth-child(2) { top: 25%; width: 50%; left: -50%; animation-delay: 0.2s; }
.stripe:nth-child(3) { top: 40%; width: 40%; left: -40%; animation-delay: 0.4s; }
.stripe:nth-child(4) { top: 55%; width: 60%; left: -60%; animation-delay: 0.6s; }
.stripe:nth-child(5) { top: 70%; width: 35%; left: -35%; animation-delay: 0.8s; }
.stripe:nth-child(6) { top: 85%; width: 45%; left: -45%; animation-delay: 1s; }
@keyframes stripeMove { 0% { transform: translateX(0); opacity: 0; } 10% { opacity: 0.8; } 90% { opacity: 0.8; } 100% { transform: translateX(calc(100vw + 100%)); opacity: 0; } }

.cards-3d { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 400px; height: 400px; perspective: 1000px; }
.card-3d { position: absolute; width: 80px; height: 80px; background: var(--gradient); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: 0 20px 60px rgba(255, 45, 117, 0.4); animation: cardOrbit 4s ease-in-out infinite; transform-style: preserve-3d; }
.card-3d.c1 { animation-delay: 0s; } .card-3d.c2 { animation-delay: 1s; } .card-3d.c3 { animation-delay: 2s; } .card-3d.c4 { animation-delay: 3s; }
@keyframes cardOrbit { 0% { transform: rotateY(0deg) translateZ(150px) rotateY(0deg); opacity: 0.3; } 25% { transform: rotateY(90deg) translateZ(150px) rotateY(-90deg); opacity: 1; } 50% { transform: rotateY(180deg) translateZ(150px) rotateY(-180deg); opacity: 0.3; } 75% { transform: rotateY(270deg) translateZ(150px) rotateY(-270deg); opacity: 1; } 100% { transform: rotateY(360deg) translateZ(150px) rotateY(-360deg); opacity: 0.3; } }

.letter-container { position: relative; z-index: 10; }
.letter-wrapper { display: flex; gap: 5px; }
.letter { font-size: clamp(4rem, 12vw, 10rem); font-weight: 900; color: transparent; -webkit-text-stroke: 2px var(--text); position: relative; animation: letterPulse 0.5s ease-in-out infinite alternate; }
.letter::before { content: attr(data-letter); position: absolute; top: 0; left: 0; color: var(--text); clip-path: inset(0 100% 0 0); animation: letterFill 3s ease-in-out infinite; }
.letter::after { content: attr(data-letter); position: absolute; top: 4px; left: 4px; color: var(--accent); opacity: 0; animation: letterGhost 2s ease-in-out infinite; filter: blur(2px); }
.letter:nth-child(1) { animation-delay: 0s; } .letter:nth-child(2) { animation-delay: 0.1s; } .letter:nth-child(3) { animation-delay: 0.2s; }
.letter:nth-child(4) { animation-delay: 0.3s; } .letter:nth-child(5) { animation-delay: 0.4s; } .letter:nth-child(6) { animation-delay: 0.5s; }
.letter:nth-child(7) { animation-delay: 0.6s; } .letter:nth-child(8) { animation-delay: 0.7s; } .letter:nth-child(9) { animation-delay: 0.8s; }
@keyframes letterPulse { 0% { transform: translateY(0) scale(1); opacity: 0.3; } 100% { transform: translateY(-10px) scale(1.05); opacity: 1; } }
@keyframes letterFill { 0%, 10% { clip-path: inset(0 100% 0 0); } 30%, 40% { clip-path: inset(0 0 0 0); } 60%, 70% { clip-path: inset(0 0 0 100%); } 90%, 100% { clip-path: inset(0 100% 0 0); } }
@keyframes letterGhost { 0%, 20% { opacity: 0; } 30% { opacity: 0.8; transform: translate(-5px, -5px); } 40% { opacity: 0; } 50% { opacity: 0.6; } 60%, 100% { opacity: 0; } }

.preloader-progress { position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 15px; z-index: 10; }
.progress-track { width: 200px; height: 3px; background: rgba(255, 255, 255, 0.1); border-radius: 3px; overflow: hidden; }
.progress-fill { width: 0%; height: 100%; background: var(--gradient); border-radius: 3px; transition: width 0.1s ease; box-shadow: 0 0 20px var(--accent); }
.progress-text { font-size: 1rem; font-weight: 600; color: var(--text-dim); }
.progress-num { color: var(--text); font-size: 1.2rem; }
#burst-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 5; }

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content { opacity: 0; transform: translateY(50px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.main-content.visible { opacity: 1; transform: translateY(0); }

/* Navigation */
.nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 20px 0; transition: all 0.5s var(--ease); }
.nav.scrolled { background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(20px); padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.nav-inner { max-width: 1400px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 80px); display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-3d { width: 44px; height: 44px; position: relative; transform-style: preserve-3d; transition: transform 0.6s var(--ease); }
.logo:hover .logo-3d { transform: rotateY(180deg); }
.logo-face { position: absolute; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; border-radius: 12px; backface-visibility: hidden; }
.logo-face.front { background: var(--gradient); }
.logo-face.back { background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.1); transform: rotateY(180deg); font-size: 1.5rem; }
.logo-text { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; }

.nav-links { display: flex; gap: 40px; }
.nav-link { position: relative; font-size: 0.9rem; font-weight: 500; color: var(--text-dim); transition: color 0.3s; }
.nav-link:hover { color: var(--text); }
.link-line { position: absolute; bottom: -4px; left: 0; width: 100%; height: 2px; background: var(--gradient); transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease); }
.nav-link:hover .link-line { transform: scaleX(1); transform-origin: left; }

.nav-btn { position: relative; padding: 12px 28px; font-weight: 600; font-size: 0.9rem; border-radius: 100px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.2); transition: border-color 0.3s; }
.nav-btn:hover { border-color: transparent; }
.btn-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--gradient); transform: translateY(100%); transition: transform 0.4s var(--ease); }
.nav-btn:hover .btn-bg { transform: translateY(0); }
.btn-text { position: relative; z-index: 1; }


/* ============================================
   HERO SECTION
   ============================================ */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: clamp(120px, 15vh, 180px) clamp(24px, 5vw, 80px) 80px; position: relative; overflow: hidden; }

.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; overflow: hidden; }
.gradient-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; animation: orbFloat 10s ease-in-out infinite; }
.orb-1 { width: 600px; height: 600px; background: var(--accent); top: -20%; right: -10%; }
.orb-2 { width: 400px; height: 400px; background: var(--accent-2); bottom: -10%; left: -5%; animation-delay: 3s; }
.orb-3 { width: 300px; height: 300px; background: var(--accent-3); top: 50%; left: 30%; animation-delay: 6s; }
@keyframes orbFloat { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(30px, -30px) scale(1.1); } 66% { transform: translate(-20px, 20px) scale(0.9); } }

.grid-lines { position: absolute; top: 0; left: 0; width: 100%; height: 100%; 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: 60px 60px; mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%); }

.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 100px; margin-bottom: 30px; opacity: 0; animation: fadeUp 1s var(--ease) 0.2s forwards; }
.badge-pulse { width: 8px; height: 8px; background: #00ff88; border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); } 50% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); } }
.badge-text { font-size: 0.85rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-title { font-size: clamp(3rem, 8vw, 6rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 24px; }
.title-line { display: block; overflow: hidden; }
.word-3d { display: inline-block; position: relative; opacity: 0; animation: wordSlide 1s var(--ease) forwards; }
.title-line:nth-child(1) .word-3d { animation-delay: 0.3s; }
.title-line:nth-child(2) .word-3d:nth-child(1) { animation-delay: 0.4s; }
.title-line:nth-child(2) .word-3d:nth-child(2) { animation-delay: 0.5s; }
@keyframes wordSlide { from { opacity: 0; transform: translateY(100%) rotateX(-20deg); } to { opacity: 1; transform: translateY(0) rotateX(0deg); } }
.word-front { position: relative; z-index: 1; }
.word-shadow { position: absolute; top: 4px; left: 4px; color: transparent; -webkit-text-stroke: 1px rgba(255, 45, 117, 0.3); z-index: 0; }
.word-3d.accent .word-front { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.word-3d.accent .word-shadow { -webkit-text-stroke: 1px rgba(0, 212, 255, 0.3); }

.hero-desc { font-size: 1.2rem; color: var(--text-dim); max-width: 500px; margin-bottom: 40px; opacity: 0; animation: fadeUp 1s var(--ease) 0.6s forwards; }

.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; opacity: 0; animation: fadeUp 1s var(--ease) 0.7s forwards; }
.btn-primary { position: relative; padding: 18px 36px; background: var(--gradient); border-radius: 100px; font-weight: 600; font-size: 1rem; overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(255, 45, 117, 0.4); }
.btn-shine { position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); animation: shine 3s ease-in-out infinite; }
@keyframes shine { 0%, 100% { left: -100%; } 50% { left: 100%; } }
.btn-content { position: relative; display: flex; align-items: center; gap: 10px; }
.btn-content svg { width: 20px; height: 20px; transition: transform 0.3s var(--ease); }
.btn-primary:hover .btn-content svg { transform: translateX(5px); }

.btn-play { display: flex; align-items: center; gap: 12px; padding: 18px 24px; font-weight: 600; color: var(--text-dim); transition: color 0.3s; }
.btn-play:hover { color: var(--text); }
.play-circle { width: 50px; height: 50px; border: 2px solid currentColor; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease); }
.btn-play:hover .play-circle { background: var(--accent); border-color: var(--accent); transform: scale(1.1); }
.play-icon { font-size: 0.8rem; margin-left: 3px; }

/* Hero Showcase */
.hero-showcase { position: relative; z-index: 1; height: 600px; perspective: 1500px; opacity: 0; animation: fadeUp 1.2s var(--ease) 0.5s forwards; }
.showcase-scene { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; }
.showcase-card { position: absolute; border-radius: 24px; overflow: hidden; box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5); transition: all 0.8s var(--ease); }
.showcase-card img { width: 100%; height: 100%; object-fit: cover; }
.card-main { width: 80%; height: 70%; top: 15%; left: 10%; z-index: 3; transform: rotateY(-10deg) rotateX(5deg); }
.card-main:hover { transform: rotateY(0deg) rotateX(0deg) scale(1.02); }
.card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(255, 45, 117, 0.2) 0%, transparent 50%); }
.card-shine { position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent); transform: skewX(-20deg); animation: cardShine 4s ease-in-out infinite; }
@keyframes cardShine { 0%, 100% { left: -100%; } 50% { left: 150%; } }
.card-float-1 { width: 35%; height: 40%; top: 0; left: -5%; z-index: 2; transform: rotateY(15deg) rotateX(-10deg) translateZ(-50px); opacity: 0.8; }
.card-float-2 { width: 35%; height: 40%; bottom: 5%; right: -5%; z-index: 2; transform: rotateY(-15deg) rotateX(10deg) translateZ(-50px); opacity: 0.8; }
.card-glow { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255, 45, 117, 0.3) 0%, transparent 70%); opacity: 0; transition: opacity 0.5s; }
.showcase-card:hover .card-glow { opacity: 1; }

.stat-bubble { position: absolute; padding: 16px 20px; background: rgba(10, 10, 10, 0.9); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; display: flex; flex-direction: column; align-items: center; gap: 4px; z-index: 10; animation: bubbleFloat 5s ease-in-out infinite; }
.bubble-1 { top: 5%; right: 5%; } .bubble-2 { bottom: 20%; left: 0; animation-delay: 1.5s; } .bubble-3 { top: 40%; right: -5%; animation-delay: 3s; }
@keyframes bubbleFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.bubble-icon { font-size: 1.5rem; }
.bubble-value { font-size: 1.5rem; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bubble-label { font-size: 0.75rem; color: var(--text-dim); }

.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--text-dim); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; opacity: 0; animation: fadeUp 1s var(--ease) 1s forwards; }
.scroll-mouse { width: 24px; height: 40px; border: 2px solid var(--text-dim); border-radius: 12px; position: relative; }
.scroll-wheel { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--accent); border-radius: 2px; animation: scrollWheel 2s ease-in-out infinite; }
@keyframes scrollWheel { 0%, 100% { top: 8px; opacity: 1; } 50% { top: 20px; opacity: 0; } }


/* ============================================
   MARQUEE SECTION
   ============================================ */
.marquee-section { padding: 40px 0; background: var(--bg-card); border-top: 1px solid rgba(255, 255, 255, 0.05); border-bottom: 1px solid rgba(255, 255, 255, 0.05); overflow: hidden; }
.marquee-wrapper { display: flex; flex-direction: column; gap: 20px; }
.marquee-track { display: flex; width: fit-content; }
.track-1 { animation: marqueeLeft 25s linear infinite; }
.track-2 { animation: marqueeRight 25s linear infinite; }
@keyframes marqueeLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marqueeRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.marquee-content { display: flex; align-items: center; gap: 40px; padding-right: 40px; }
.marquee-content span { font-size: clamp(1.5rem, 4vw, 3rem); font-weight: 700; white-space: nowrap; transition: color 0.3s; }
.marquee-content span:not(.sep):hover { color: var(--accent); }
.marquee-content .sep { font-size: 1rem; color: var(--accent); }

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-tag { display: inline-block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 16px; }
.section-title { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; letter-spacing: -0.03em; }
.title-reveal { display: inline-block; opacity: 0; transform: translateY(30px); transition: all 0.8s var(--ease); }
.title-reveal.visible { opacity: 1; transform: translateY(0); }
.title-reveal.highlight { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-left: 15px; }
.section-desc { font-size: 1.1rem; color: var(--text-dim); max-width: 700px; margin: 20px auto 0; }

/* ============================================
   ADVANTAGES SECTION
   ============================================ */
.advantages { padding: clamp(100px, 15vh, 180px) 0; }
.advantages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.advantage-card { position: relative; padding: 40px 32px; background: var(--bg-card); border-radius: 24px; overflow: hidden; transition: transform 0.5s var(--ease); }
.advantage-card:hover { transform: translateY(-10px); }
.advantage-card.large { grid-column: span 2; }
.card-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 45, 117, 0.1) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s; }
.advantage-card:hover .card-bg { opacity: 1; }
.card-border { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 24px; border: 1px solid transparent; background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box, var(--gradient) border-box; opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.advantage-card:hover .card-border { opacity: 1; }
.card-content { position: relative; z-index: 1; }
.card-icon { position: relative; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 20px; }
.icon-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; background: var(--gradient); border-radius: 50%; filter: blur(30px); opacity: 0.3; }
.advantage-card h3, .feature-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.advantage-card p, .feature-card p { font-size: 0.95rem; color: var(--text-dim); line-height: 1.6; margin-bottom: 20px; }
.card-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.card-tags span { padding: 6px 14px; background: rgba(255, 45, 117, 0.1); border: 1px solid rgba(255, 45, 117, 0.2); border-radius: 100px; font-size: 0.8rem; color: var(--accent); }


/* ============================================
   FEATURES SECTION
   ============================================ */
.features { padding: clamp(100px, 15vh, 180px) 0; background: var(--bg-light); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { position: relative; padding: 40px 32px; background: var(--bg-card); border-radius: 24px; overflow: hidden; transition: transform 0.5s var(--ease); }
.feature-card:hover { transform: translateY(-10px); }
.feature-card.featured { grid-column: span 2; background: linear-gradient(135deg, rgba(255, 45, 117, 0.1) 0%, rgba(121, 40, 202, 0.05) 100%); }
.feature-card .card-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 45, 117, 0.1) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s; }
.feature-card:hover .card-bg { opacity: 1; }
.feature-card .card-border { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 24px; border: 1px solid transparent; background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box, var(--gradient) border-box; opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.feature-card:hover .card-border { opacity: 1; }

/* ============================================
   ORDER STATUSES SECTION
   ============================================ */
.statuses-section { padding: clamp(80px, 12vh, 140px) 0; }
.statuses-timeline { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.status-item { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 20px 24px; background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; min-width: 140px; transition: all 0.3s var(--ease); }
.status-item:hover { transform: translateY(-5px); border-color: var(--accent); }
.status-item.highlight { background: var(--gradient-soft); border-color: var(--accent); }
.status-icon { font-size: 1.8rem; }
.status-name { font-weight: 600; font-size: 0.9rem; }
.status-desc { font-size: 0.75rem; color: var(--text-dim); text-align: center; }

/* ============================================
   STATS SECTION
   ============================================ */
.stats { padding: 80px 0; background: var(--bg-card); border-top: 1px solid rgba(255, 255, 255, 0.05); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat-card { text-align: center; }
.stat-number { font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.stat-label { font-size: 1rem; color: var(--text-dim); margin: 10px 0 20px; }
.stat-bar { height: 4px; background: rgba(255, 255, 255, 0.1); border-radius: 2px; overflow: hidden; }
.bar-fill { width: 0; height: 100%; background: var(--gradient); border-radius: 2px; transition: width 1.5s var(--ease); }
.bar-fill.animated { width: var(--width); }


/* ============================================
   MODULES SECTION
   ============================================ */
.modules { padding: clamp(100px, 15vh, 180px) 0; background: var(--bg-light); }
.modules-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn { padding: 12px 28px; background: transparent; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 100px; color: var(--text-dim); font-family: inherit; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: all 0.3s var(--ease); }
.tab-btn:hover { border-color: var(--accent); color: var(--text); }
.tab-btn.active { background: var(--gradient); border-color: transparent; color: var(--text); }
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.5s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.modules-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.module-card { padding: 28px; background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; transition: all 0.3s var(--ease); }
.module-card:hover { border-color: var(--accent); transform: translateY(-5px); }
.module-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.module-card h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.module-card p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.5; }

/* ============================================
   SPECIAL FEATURE SECTION
   ============================================ */
.special-feature { padding: clamp(100px, 15vh, 180px) 0; }
.special-feature-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.special-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 20px; letter-spacing: -0.02em; }
.special-desc { font-size: 1.1rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 30px; }
.special-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.special-list li { display: flex; align-items: center; gap: 12px; font-size: 1rem; }
.special-list .check { color: var(--accent); font-weight: 700; }
.feature-mockup { background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; overflow: hidden; }
.mockup-header { display: flex; gap: 8px; padding: 16px 20px; background: rgba(255, 255, 255, 0.03); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.mockup-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); }
.mockup-dot:first-child { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }
.mockup-content { padding: 40px; }
.mockup-card { background: var(--gradient-soft); border: 1px solid rgba(255, 45, 117, 0.2); border-radius: 16px; padding: 30px; text-align: center; }
.mockup-icon { font-size: 3rem; display: block; margin-bottom: 16px; }
.mockup-title { font-size: 1.3rem; font-weight: 700; display: block; margin-bottom: 20px; }
.mockup-budget { display: flex; justify-content: center; gap: 12px; margin-bottom: 16px; font-size: 0.95rem; }
.budget-range { color: var(--accent); font-weight: 600; }
.mockup-status { display: inline-block; padding: 8px 16px; background: rgba(255, 255, 255, 0.05); border-radius: 100px; font-size: 0.85rem; color: var(--text-dim); }


/* ============================================
   SEARCH FEATURE SECTION
   ============================================ */
.search-feature { padding: clamp(80px, 12vh, 140px) 0; background: var(--bg-light); }
.search-demo { max-width: 700px; margin: 0 auto; }
.search-box { display: flex; align-items: center; gap: 16px; padding: 20px 28px; background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; margin-bottom: 24px; }
.search-icon { font-size: 1.5rem; }
.search-box input { flex: 1; background: transparent; border: none; font-size: 1.1rem; color: var(--text); font-family: inherit; }
.search-box input::placeholder { color: var(--text-dim); }
.search-box input:focus { outline: none; }
.search-options { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.search-option { display: flex; align-items: center; gap: 8px; padding: 10px 18px; background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 100px; font-size: 0.85rem; color: var(--text-dim); transition: all 0.3s var(--ease); cursor: pointer; }
.search-option:hover { border-color: var(--accent); color: var(--text); }
.option-icon { font-size: 1rem; }

/* ============================================
   ROLES SECTION
   ============================================ */
.roles-section { padding: clamp(100px, 15vh, 180px) 0; }
.roles-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.role-card { padding: 30px 20px; background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 20px; text-align: center; transition: all 0.3s var(--ease); }
.role-card:hover { border-color: var(--accent); transform: translateY(-5px); }
.role-icon { font-size: 2.5rem; display: block; margin-bottom: 16px; }
.role-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.role-card p { font-size: 0.8rem; color: var(--text-dim); }

/* ============================================
   QUICKSTART SECTION
   ============================================ */
.quickstart { padding: clamp(80px, 12vh, 140px) 0; background: var(--bg-light); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card { padding: 40px 30px; background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 20px; text-align: center; transition: all 0.3s var(--ease); }
.step-card:hover { border-color: var(--accent); }
.step-number { font-size: 4rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; opacity: 0.3; line-height: 1; display: block; margin-bottom: 16px; }
.step-card h4 { font-size: 1.2rem; font-weight: 600; margin-bottom: 12px; }
.step-card p { font-size: 0.9rem; color: var(--text-dim); }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq { padding: clamp(80px, 12vh, 140px) 0; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.faq-item { padding: 30px; background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; transition: all 0.3s var(--ease); }
.faq-item:hover { border-color: var(--accent); }
.faq-item h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; }
.faq-item p { font-size: 0.95rem; color: var(--accent); }


/* ============================================
   CTA SECTION
   ============================================ */
.cta { position: relative; padding: clamp(120px, 20vh, 200px) 0; overflow: hidden; }
.cta-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.cta-gradient { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at center, rgba(255, 45, 117, 0.15) 0%, transparent 70%); }
#cta-particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 600px; margin: 0 auto; }
.cta-title { font-size: clamp(3rem, 8vw, 6rem); font-weight: 800; line-height: 1; letter-spacing: -0.04em; margin-bottom: 24px; }
.word-reveal { display: block; opacity: 0; transform: translateY(30px); transition: all 0.8s var(--ease); }
.word-reveal.visible { opacity: 1; transform: translateY(0); }
.cta-text { font-size: 1.2rem; color: var(--text-dim); margin-bottom: 40px; }
.cta-form { max-width: 450px; margin: 0 auto 20px; }
.form-field { display: flex; gap: 12px; padding: 8px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 100px; transition: all 0.3s var(--ease); }
.form-field:focus-within { border-color: var(--accent); box-shadow: 0 0 30px rgba(255, 45, 117, 0.2); }
.form-field input { flex: 1; padding: 14px 20px; background: transparent; border: none; font-size: 1rem; color: var(--text); font-family: inherit; }
.form-field input::placeholder { color: var(--text-dim); }
.form-field input:focus { outline: none; }
.form-field button { display: flex; align-items: center; gap: 8px; padding: 14px 28px; background: var(--gradient); border: none; border-radius: 100px; font-size: 1rem; font-weight: 600; color: var(--text); font-family: inherit; cursor: pointer; transition: all 0.3s var(--ease); }
.form-field button:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(255, 45, 117, 0.4); }
.cta-note { font-size: 0.9rem; color: var(--text-dim); font-style: italic; }

/* ============================================
   FOOTER
   ============================================ */
.footer { padding: 80px 0 40px; background: var(--bg); border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-top { display: flex; justify-content: space-between; gap: 60px; margin-bottom: 60px; }
.footer-brand { max-width: 300px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.95rem; color: var(--text-dim); line-height: 1.6; }
.footer-links { display: flex; gap: 80px; }
.footer-col h5 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 0.95rem; color: var(--text); margin-bottom: 12px; transition: all 0.3s var(--ease); position: relative; }
.footer-col a::before { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--accent); transition: width 0.3s var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-col a:hover::before { width: 100%; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 40px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-bottom p { font-size: 0.9rem; color: var(--text-dim); }
.social-links { display: flex; gap: 12px; }
.social-btn { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50%; font-size: 0.85rem; font-weight: 600; transition: all 0.3s var(--ease); }
.social-btn:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }


/* ============================================
   HERO SHOWCASE
   ============================================ */
.hero-showcase {
    position: relative;
    z-index: 1;
    height: 600px;
    perspective: 1500px;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease) 0.5s forwards;
}

.showcase-scene {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.showcase-card {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    transition: all 0.8s var(--ease);
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-main {
    width: 80%;
    height: 70%;
    top: 15%;
    left: 10%;
    z-index: 3;
    transform: rotateY(-10deg) rotateX(5deg);
}

.card-main:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 45, 117, 0.2) 0%, transparent 50%);
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-20deg);
    animation: cardShine 4s ease-in-out infinite;
}

@keyframes cardShine {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

.card-float-1 {
    width: 35%;
    height: 40%;
    top: 0;
    left: -5%;
    z-index: 2;
    transform: rotateY(15deg) rotateX(-10deg) translateZ(-50px);
    opacity: 0.8;
}

.card-float-2 {
    width: 35%;
    height: 40%;
    bottom: 5%;
    right: -5%;
    z-index: 2;
    transform: rotateY(-15deg) rotateX(10deg) translateZ(-50px);
    opacity: 0.8;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 45, 117, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.showcase-card:hover .card-glow {
    opacity: 1;
}

/* Stat Bubbles */
.stat-bubble {
    position: absolute;
    padding: 16px 20px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 10;
    animation: bubbleFloat 5s ease-in-out infinite;
}

.bubble-1 { top: 5%; right: 5%; animation-delay: 0s; }
.bubble-2 { bottom: 20%; left: 0; animation-delay: 1.5s; }
.bubble-3 { top: 40%; right: -5%; animation-delay: 3s; }

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.bubble-icon { font-size: 1.5rem; }

.bubble-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bubble-label {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ============================================
   MOBILE MENU BURGER
   ============================================ */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 1001;
}

.nav-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

.nav-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s var(--ease);
}

.mobile-menu.active .nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .nav-link:nth-child(4) { transition-delay: 0.25s; }

.mobile-menu .nav-btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s var(--ease) 0.3s;
}

.mobile-menu.active .nav-btn {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-showcase { height: 400px; margin-top: 40px; }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .advantage-card.large { grid-column: span 2; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card.featured { grid-column: span 2; }
    .roles-grid { grid-template-columns: repeat(3, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-btn { display: none; }
    .nav-burger { display: flex; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .special-feature-content { grid-template-columns: 1fr; gap: 40px; }
    .footer-top { flex-direction: column; }
    .footer-links { gap: 40px; flex-wrap: wrap; }
    
    /* Preloader mobile adjustments */
    .cards-3d { width: 280px; height: 280px; }
    .card-3d { width: 60px; height: 60px; border-radius: 12px; }
    @keyframes cardOrbit { 
        0% { transform: rotateY(0deg) translateZ(100px) rotateY(0deg); opacity: 0.3; } 
        25% { transform: rotateY(90deg) translateZ(100px) rotateY(-90deg); opacity: 1; } 
        50% { transform: rotateY(180deg) translateZ(100px) rotateY(-180deg); opacity: 0.3; } 
        75% { transform: rotateY(270deg) translateZ(100px) rotateY(-270deg); opacity: 1; } 
        100% { transform: rotateY(360deg) translateZ(100px) rotateY(-360deg); opacity: 0.3; } 
    }
    .letter { font-size: clamp(3rem, 10vw, 6rem); }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    
    /* Hero mobile */
    .hero { 
        min-height: auto;
        padding: clamp(100px, 12vh, 140px) 20px 60px; 
    }
    .hero-showcase { display: none; }
    .hero-badge { padding: 6px 12px; margin-bottom: 20px; }
    .badge-text { font-size: 0.75rem; }
    .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); margin-bottom: 16px; }
    .hero-desc { font-size: 1rem; margin-bottom: 30px; }
    .hero-actions { flex-direction: column; align-items: center; gap: 16px; }
    .btn-primary { width: 100%; max-width: 300px; text-align: center; justify-content: center; }
    .btn-play { width: 100%; max-width: 300px; justify-content: center; }
    .scroll-indicator { display: none; }
    
    /* Background orbs mobile */
    .gradient-orb { filter: blur(60px); opacity: 0.3; }
    .orb-1 { width: 300px; height: 300px; top: -10%; right: -20%; }
    .orb-2 { width: 200px; height: 200px; bottom: 0; left: -15%; }
    .orb-3 { width: 150px; height: 150px; }
    
    /* Marquee mobile */
    .marquee-section { padding: 30px 0; }
    .marquee-content span { font-size: clamp(1.2rem, 5vw, 2rem); }
    .marquee-content { gap: 24px; padding-right: 24px; }
    
    /* Section headers mobile */
    .section-header { margin-bottom: 40px; }
    .section-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
    .section-desc { font-size: 1rem; }
    .title-reveal.highlight { margin-left: 8px; }
    
    /* Advantages mobile */
    .advantages { padding: clamp(60px, 10vh, 100px) 0; }
    .advantages-grid { grid-template-columns: 1fr; gap: 16px; }
    .advantage-card.large { grid-column: span 1; }
    .advantage-card { padding: 28px 24px; }
    .advantage-card h3 { font-size: 1.2rem; }
    .advantage-card p { font-size: 0.9rem; }
    
    /* Features mobile */
    .features { padding: clamp(60px, 10vh, 100px) 0; }
    .features-grid { grid-template-columns: 1fr; gap: 16px; }
    .feature-card.featured { grid-column: span 1; }
    .feature-card { padding: 28px 24px; }
    .feature-card h3 { font-size: 1.2rem; }
    .feature-card p { font-size: 0.9rem; }
    
    /* Statuses mobile */
    .statuses-section { padding: clamp(60px, 10vh, 100px) 0; }
    .statuses-timeline { 
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px; 
    }
    .status-item { 
        min-width: auto; 
        padding: 16px 12px;
        border-radius: 12px;
    }
    .status-icon { font-size: 1.4rem; }
    .status-icon img { width: 24px; height: 24px; }
    .status-name { font-size: 0.8rem; }
    .status-desc { font-size: 0.7rem; }
    .status-item.highlight { grid-column: span 2; }
    
    /* Stats mobile */
    .stats { padding: 60px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-number { font-size: clamp(2rem, 8vw, 3rem); }
    .stat-label { font-size: 0.85rem; }
    
    /* Modules mobile */
    .modules { padding: clamp(60px, 10vh, 100px) 0; }
    .modules-tabs { 
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px; 
        margin-bottom: 30px;
    }
    .tab-btn { padding: 12px 16px; font-size: 0.85rem; }
    .modules-grid { grid-template-columns: 1fr; gap: 12px; }
    .module-card { padding: 20px; }
    .module-card h4 { font-size: 1rem; }
    .module-card p { font-size: 0.8rem; }
    
    /* Special feature mobile */
    .special-feature { padding: clamp(60px, 10vh, 100px) 0; }
    .special-feature-content { gap: 30px; }
    .special-title { font-size: clamp(1.6rem, 5vw, 2rem); }
    .special-desc { font-size: 1rem; }
    .special-list li { font-size: 0.9rem; }
    .feature-mockup { border-radius: 16px; }
    .mockup-content { padding: 24px; }
    .mockup-card { padding: 24px; border-radius: 12px; }
    .mockup-title { font-size: 1.1rem; }
    .mockup-budget { font-size: 0.85rem; }
    
    /* Search feature mobile */
    .search-feature { padding: clamp(60px, 10vh, 100px) 0; }
    .search-box { padding: 16px 20px; gap: 12px; }
    .search-box input { font-size: 0.95rem; }
    .search-options { gap: 8px; }
    .search-option { padding: 8px 14px; font-size: 0.8rem; }
    
    /* Roles mobile */
    .roles-section { padding: clamp(60px, 10vh, 100px) 0; }
    .roles-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .role-card { padding: 20px 16px; border-radius: 16px; }
    .role-icon { width: 44px; height: 44px; margin-bottom: 12px; }
    .role-icon img { width: 32px; height: 32px; }
    .role-card h4 { font-size: 0.9rem; }
    .role-card p { font-size: 0.75rem; }
    
    /* Quickstart mobile */
    .quickstart { padding: clamp(60px, 10vh, 100px) 0; }
    .steps-grid { grid-template-columns: 1fr; gap: 16px; }
    .step-card { padding: 28px 24px; border-radius: 16px; }
    .step-number { font-size: 3rem; }
    .step-card h4 { font-size: 1.1rem; }
    .step-card p { font-size: 0.85rem; }
    
    /* FAQ mobile */
    .faq { padding: clamp(60px, 10vh, 100px) 0; }
    .faq-grid { grid-template-columns: 1fr; gap: 12px; }
    .faq-item { padding: 24px 20px; border-radius: 12px; }
    .faq-item h4 { font-size: 1rem; }
    .faq-item p { font-size: 0.9rem; }
    
    /* CTA mobile */
    .cta { padding: clamp(80px, 15vh, 120px) 0; }
    .cta-title { font-size: clamp(2.5rem, 10vw, 4rem); }
    .cta-text { font-size: 1rem; margin-bottom: 30px; }
    .cta-btn { width: 100%; max-width: 280px; }
    .cta-note { font-size: 0.85rem; }
    
    /* Footer mobile */
    .footer { padding: 60px 0 30px; }
    .footer-top { gap: 40px; }
    .footer-brand { max-width: 100%; text-align: center; }
    .footer-brand .logo { justify-content: center; }
    .footer-links { 
        width: 100%;
        justify-content: space-between;
    }
    .footer-col { flex: 1; min-width: 100px; }
    .footer-col h5 { font-size: 0.8rem; margin-bottom: 16px; }
    .footer-col a { font-size: 0.85rem; margin-bottom: 10px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; padding-top: 30px; }
    .footer-bottom p { font-size: 0.85rem; }
    .social-btn { width: 40px; height: 40px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    
    /* Hero extra small */
    .hero { padding: 90px 16px 50px; }
    .hero-title { font-size: clamp(1.8rem, 9vw, 2.5rem); }
    .hero-desc { font-size: 0.95rem; }
    .btn-primary { padding: 16px 24px; font-size: 0.9rem; }
    .btn-play { padding: 14px 20px; }
    .play-circle { width: 44px; height: 44px; }
    
    /* Preloader extra small */
    .cards-3d { width: 220px; height: 220px; }
    .card-3d { width: 50px; height: 50px; border-radius: 10px; }
    .icon-wrapper img { width: 24px; height: 24px; }
    @keyframes cardOrbit { 
        0% { transform: rotateY(0deg) translateZ(80px) rotateY(0deg); opacity: 0.3; } 
        25% { transform: rotateY(90deg) translateZ(80px) rotateY(-90deg); opacity: 1; } 
        50% { transform: rotateY(180deg) translateZ(80px) rotateY(-180deg); opacity: 0.3; } 
        75% { transform: rotateY(270deg) translateZ(80px) rotateY(-270deg); opacity: 1; } 
        100% { transform: rotateY(360deg) translateZ(80px) rotateY(-360deg); opacity: 0.3; } 
    }
    .letter { font-size: clamp(2.5rem, 10vw, 4rem); -webkit-text-stroke: 1px var(--text); }
    .progress-track { width: 150px; }
    .preloader-progress { bottom: 40px; }
    
    /* Sections extra small */
    .section-title { font-size: clamp(1.5rem, 7vw, 2rem); }
    .section-tag { font-size: 0.75rem; letter-spacing: 0.15em; }
    
    /* Cards extra small */
    .advantage-card, .feature-card { padding: 24px 20px; border-radius: 20px; }
    .card-icon .icon-circle { width: 56px; height: 56px; }
    .svg-icon-lg { width: 32px; height: 32px; }
    
    /* Statuses extra small */
    .statuses-timeline { grid-template-columns: 1fr; }
    .status-item { flex-direction: row; justify-content: flex-start; gap: 12px; text-align: left; }
    .status-item.highlight { grid-column: span 1; }
    
    /* Stats extra small */
    .stats-grid { gap: 20px; }
    .stat-number { font-size: clamp(1.8rem, 10vw, 2.5rem); }
    
    /* Modules tabs extra small */
    .modules-tabs { grid-template-columns: 1fr 1fr; }
    .tab-btn { padding: 10px 12px; font-size: 0.8rem; }
    
    /* Roles extra small */
    .roles-grid { grid-template-columns: 1fr; }
    .role-card { 
        display: flex; 
        align-items: center; 
        gap: 16px; 
        text-align: left;
        padding: 16px 20px;
    }
    .role-icon { margin: 0; flex-shrink: 0; }
    .role-card h4 { margin-bottom: 4px; }
    
    /* Search extra small */
    .search-box { flex-direction: column; gap: 0; padding: 0; background: transparent; border: none; }
    .search-box input { 
        padding: 16px 20px; 
        background: var(--bg-card); 
        border: 1px solid rgba(255, 255, 255, 0.1); 
        border-radius: 12px;
        text-align: center;
    }
    .search-icon { display: none; }
    .search-options { 
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .search-option { justify-content: center; padding: 10px 12px; }
    
    /* Footer extra small */
    .footer-links { 
        flex-direction: column; 
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    .footer-col { min-width: auto; }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Disable hover effects that don't work well on touch */
    .advantage-card:hover,
    .feature-card:hover,
    .module-card:hover,
    .role-card:hover,
    .status-item:hover,
    .faq-item:hover,
    .step-card:hover {
        transform: none;
    }
    
    /* Keep tap feedback */
    .advantage-card:active,
    .feature-card:active,
    .module-card:active,
    .role-card:active {
        transform: scale(0.98);
    }
    
    /* Disable tilt effect on touch */
    [data-tilt] {
        transform: none !important;
    }
    
    /* Ensure buttons have good tap targets */
    .btn-primary, .btn-play, .tab-btn, .nav-btn {
        min-height: 48px;
    }
    
    /* Disable parallax on touch devices */
    .stat-bubble {
        animation: none;
        transform: none !important;
    }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { min-height: auto; padding: 80px 20px 40px; }
    .hero-title { font-size: 2rem; }
    .hero-desc { margin-bottom: 20px; }
    .preloader { overflow: auto; }
    .letter { font-size: 3rem; }
    .cards-3d { display: none; }
}


/* ============================================
   SVG ICONS WITH GRADIENTS
   ============================================ */

/* Icon wrapper for preloader cards */
.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.icon-wrapper img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

/* SVG Icon base styles */
.svg-icon {
    width: 32px;
    height: 32px;
    display: block;
}

.svg-icon-lg {
    width: 40px;
    height: 40px;
    display: block;
    filter: brightness(0) invert(1);
}

.svg-icon-sm {
    width: 28px;
    height: 28px;
    display: block;
    filter: brightness(0) invert(1);
}

.svg-icon-xs {
    width: 18px;
    height: 18px;
    display: block;
    filter: brightness(0) invert(1);
}

.svg-icon-xl {
    width: 56px;
    height: 56px;
    display: block;
    filter: brightness(0) invert(1);
}

/* Icon circles with gradients */
.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    position: relative;
}

/* Gradient backgrounds */
.gradient-pink { background: linear-gradient(135deg, #ff2d75 0%, #ff6b9d 100%); }
.gradient-purple { background: linear-gradient(135deg, #7928ca 0%, #a855f7 100%); }
.gradient-cyan { background: linear-gradient(135deg, #00d4ff 0%, #06b6d4 100%); }
.gradient-orange { background: linear-gradient(135deg, #f97316 0%, #fb923c 100%); }
.gradient-blue { background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%); }
.gradient-green { background: linear-gradient(135deg, #10b981 0%, #34d399 100%); }
.gradient-red { background: linear-gradient(135deg, #ef4444 0%, #f87171 100%); }
.gradient-yellow { background: linear-gradient(135deg, #eab308 0%, #fbbf24 100%); }
.gradient-teal { background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 100%); }
.gradient-indigo { background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%); }
.gradient-violet { background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%); }
.gradient-rose { background: linear-gradient(135deg, #f43f5e 0%, #fb7185 100%); }

/* Module card icon styling */
.module-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
}

.module-icon img {
    width: 32px;
    height: 32px;
}

/* Apply gradient filter to module icons */
.module-icon .gradient-green { filter: brightness(0) saturate(100%) invert(62%) sepia(93%) saturate(401%) hue-rotate(108deg) brightness(95%) contrast(91%); }
.module-icon .gradient-blue { filter: brightness(0) saturate(100%) invert(45%) sepia(98%) saturate(1653%) hue-rotate(201deg) brightness(101%) contrast(96%); }
.module-icon .gradient-purple { filter: brightness(0) saturate(100%) invert(37%) sepia(96%) saturate(1352%) hue-rotate(249deg) brightness(91%) contrast(91%); }
.module-icon .gradient-orange { filter: brightness(0) saturate(100%) invert(56%) sepia(98%) saturate(1653%) hue-rotate(360deg) brightness(101%) contrast(96%); }
.module-icon .gradient-violet { filter: brightness(0) saturate(100%) invert(45%) sepia(98%) saturate(1653%) hue-rotate(240deg) brightness(101%) contrast(96%); }
.module-icon .gradient-indigo { filter: brightness(0) saturate(100%) invert(40%) sepia(98%) saturate(1653%) hue-rotate(225deg) brightness(101%) contrast(96%); }
.module-icon .gradient-red { filter: brightness(0) saturate(100%) invert(40%) sepia(98%) saturate(1653%) hue-rotate(340deg) brightness(101%) contrast(96%); }
.module-icon .gradient-pink { filter: brightness(0) saturate(100%) invert(45%) sepia(98%) saturate(1653%) hue-rotate(310deg) brightness(101%) contrast(96%); }
.module-icon .gradient-rose { filter: brightness(0) saturate(100%) invert(50%) sepia(98%) saturate(1653%) hue-rotate(320deg) brightness(101%) contrast(96%); }
.module-icon .gradient-teal { filter: brightness(0) saturate(100%) invert(60%) sepia(93%) saturate(401%) hue-rotate(140deg) brightness(95%) contrast(91%); }
.module-icon .gradient-cyan { filter: brightness(0) saturate(100%) invert(70%) sepia(93%) saturate(401%) hue-rotate(160deg) brightness(95%) contrast(91%); }
.module-icon .gradient-yellow { filter: brightness(0) saturate(100%) invert(70%) sepia(93%) saturate(401%) hue-rotate(20deg) brightness(95%) contrast(91%); }

/* Role card icon styling */
.role-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
}

.role-icon img {
    width: 40px;
    height: 40px;
}

.role-icon .gradient-yellow { filter: brightness(0) saturate(100%) invert(80%) sepia(93%) saturate(401%) hue-rotate(10deg) brightness(105%) contrast(91%); }
.role-icon .gradient-purple { filter: brightness(0) saturate(100%) invert(37%) sepia(96%) saturate(1352%) hue-rotate(249deg) brightness(91%) contrast(91%); }
.role-icon .gradient-blue { filter: brightness(0) saturate(100%) invert(45%) sepia(98%) saturate(1653%) hue-rotate(201deg) brightness(101%) contrast(96%); }
.role-icon .gradient-rose { filter: brightness(0) saturate(100%) invert(50%) sepia(98%) saturate(1653%) hue-rotate(320deg) brightness(101%) contrast(96%); }
.role-icon .gradient-green { filter: brightness(0) saturate(100%) invert(62%) sepia(93%) saturate(401%) hue-rotate(108deg) brightness(95%) contrast(91%); }
.role-icon .gradient-orange { filter: brightness(0) saturate(100%) invert(56%) sepia(98%) saturate(1653%) hue-rotate(360deg) brightness(101%) contrast(96%); }

/* Search icon styling */
.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon img {
    width: 24px;
    height: 24px;
}

.search-icon .gradient-cyan { filter: brightness(0) saturate(100%) invert(70%) sepia(93%) saturate(401%) hue-rotate(160deg) brightness(95%) contrast(91%); }

/* Search option icon */
.option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-icon img {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(50%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.search-option:hover .option-icon img {
    filter: brightness(0) saturate(100%) invert(45%) sepia(98%) saturate(1653%) hue-rotate(310deg) brightness(101%) contrast(96%);
}

/* Bubble icon styling */
.bubble-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bubble-icon img {
    width: 24px;
    height: 24px;
}

.bubble-icon .gradient-green { filter: brightness(0) saturate(100%) invert(62%) sepia(93%) saturate(401%) hue-rotate(108deg) brightness(95%) contrast(91%); }
.bubble-icon .gradient-blue { filter: brightness(0) saturate(100%) invert(45%) sepia(98%) saturate(1653%) hue-rotate(201deg) brightness(101%) contrast(96%); }
.bubble-icon .gradient-yellow { filter: brightness(0) saturate(100%) invert(70%) sepia(93%) saturate(401%) hue-rotate(20deg) brightness(95%) contrast(91%); }

/* Status icon styling */
.status-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon img {
    filter: brightness(0) saturate(100%) invert(45%) sepia(98%) saturate(1653%) hue-rotate(310deg) brightness(101%) contrast(96%);
}

.status-item.highlight .status-icon img {
    filter: brightness(0) saturate(100%) invert(62%) sepia(93%) saturate(401%) hue-rotate(108deg) brightness(95%) contrast(91%);
}

/* Mockup icon styling */
.mockup-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.mockup-icon img {
    width: 56px;
    height: 56px;
}

.mockup-icon .gradient-pink { filter: brightness(0) saturate(100%) invert(45%) sepia(98%) saturate(1653%) hue-rotate(310deg) brightness(101%) contrast(96%); }

/* Logo icon in footer */
.logo-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Card icon glow effect */
.card-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon .icon-circle {
    box-shadow: 0 10px 40px rgba(255, 45, 117, 0.3);
    transition: all 0.3s var(--ease);
}

.advantage-card:hover .card-icon .icon-circle,
.feature-card:hover .card-icon .icon-circle {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(255, 45, 117, 0.4);
}

/* Preloader card 3d icons */
.card-3d {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(255, 45, 117, 0.4);
    animation: cardOrbit 4s ease-in-out infinite;
    transform-style: preserve-3d;
}

.card-3d.c1 { background: linear-gradient(135deg, #ff2d75 0%, #ff6b9d 100%); animation-delay: 0s; }
.card-3d.c2 { background: linear-gradient(135deg, #7928ca 0%, #a855f7 100%); animation-delay: 1s; }
.card-3d.c3 { background: linear-gradient(135deg, #00d4ff 0%, #06b6d4 100%); animation-delay: 2s; }
.card-3d.c4 { background: linear-gradient(135deg, #f97316 0%, #fb923c 100%); animation-delay: 3s; }
