/* ============================================
   Новый Проект - Стиль на базе Landing V4
   ============================================ */

: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); }

/* ============================================
   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; align-items: center; }
.nav-link { position: relative; font-size: 0.9rem; font-weight: 500; color: var(--text-dim); transition: color 0.3s; display: flex; align-items: center; gap: 6px; }
.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; }

/* Dropdown Menu */
.nav-dropdown { position: relative; }
.dropdown-trigger { cursor: pointer; }
.dropdown-icon { transition: transform 0.3s var(--ease); }
.nav-dropdown:hover .dropdown-icon { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: calc(100% + 20px); left: 50%; transform: translateX(-50%); background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 8px; min-width: 200px; opacity: 0; visibility: hidden; transition: all 0.3s var(--ease); }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; top: calc(100% + 10px); }
.dropdown-item { display: block; padding: 12px 16px; border-radius: 8px; font-size: 0.9rem; color: var(--text-dim); transition: all 0.2s; }
.dropdown-item:hover { background: rgba(255, 255, 255, 0.05); color: var(--text); }

.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; }

/* Mobile Menu */
.nav-burger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; }
.nav-burger span { width: 24px; height: 2px; background: var(--text); transition: all 0.3s var(--ease); }
.nav-burger.active span:nth-child(1) { transform: rotate(45deg) translateY(8px); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-8px); }

.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; max-width: 400px; height: 100vh; background: rgba(0, 0, 0, 0.98); backdrop-filter: blur(20px); padding: 100px 40px 40px; display: flex; flex-direction: column; gap: 20px; z-index: 999; transition: right 0.5s var(--ease); overflow-y: auto; }
.mobile-menu.active { right: 0; }
.mobile-submenu { display: flex; flex-direction: column; gap: 12px; padding-left: 20px; border-left: 2px solid rgba(255, 255, 255, 0.1); }
.submenu-header { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 8px; }
.submenu-item { font-size: 0.9rem; }

/* ============================================
   HERO SECTION WITH GLASS CAROUSEL
   ============================================ */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: clamp(120px, 15vh, 180px) clamp(24px, 5vw, 80px) 80px; position: relative; overflow: hidden; }

/* EPIC BACKGROUND - Тот же стиль что в landing-v4 */
.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%); }

/* Glass Carousel - 3D Stack View */
.glass-carousel { position: relative; z-index: 1; width: 100%; max-width: 650px; height: 600px; }
.carousel-container { position: relative; width: 100%; height: 100%; }

/* Glass Card - Glassmorphism Effect */
.glass-card { position: absolute; top: 0; left: 0; width: 100%; height: 100%; padding: 30px 40px; overflow: hidden; transition: all 1s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; will-change: transform, opacity; backface-visibility: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Card positions - Center larger, right behind, left further behind */
.glass-card[data-position="center"] { 
    transform: scale(1.05) translateZ(0); 
    z-index: 3; 
    opacity: 1; 
    pointer-events: auto; 
}
.glass-card[data-position="right"] { 
    transform: translateX(85%) scale(0.9) translateZ(0); 
    z-index: 2; 
    opacity: 0.7; 
    pointer-events: auto; 
}
.glass-card[data-position="left"] { 
    transform: translateX(-85%) scale(0.8) translateZ(0); 
    z-index: 1; 
    opacity: 0.5; 
    pointer-events: auto; 
}

.glass-card:hover[data-position="center"] { transform: scale(1.08) translateZ(0); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.glass-card:hover[data-position="right"] { transform: translateX(85%) scale(0.92) translateZ(0); opacity: 0.85; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.glass-card:hover[data-position="left"] { transform: translateX(-85%) scale(0.82) translateZ(0); opacity: 0.65; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }

.glass-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 10, 10, 0.85); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 32px; box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.5), inset 0 1px 0 0 rgba(255, 255, 255, 0.05); }

/* Glass liquid effect */
.glass-bg::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at center, rgba(255, 45, 117, 0.15) 0%, transparent 50%); animation: glassLiquid 8s ease-in-out infinite; }
@keyframes glassLiquid { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; } 33% { transform: translate(20%, -20%) scale(1.2); opacity: 0.8; } 66% { transform: translate(-20%, 20%) scale(0.9); opacity: 0.6; } }

.glass-bg::after { content: ''; position: absolute; bottom: -30%; right: -30%; width: 150%; height: 150%; background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 50%); animation: glassLiquid 10s ease-in-out infinite reverse; animation-delay: 2s; }

.glass-content { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-start; padding-top: 20px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }

.glass-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 100px; margin-bottom: 12px; width: fit-content; }
.badge-pulse { width: 6px; height: 6px; 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.7rem; color: rgba(255, 255, 255, 0.9); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }
.badge-icon { font-size: 0.9rem; }
.badge-icon-svg { display: flex; align-items: center; justify-content: center; width: 14px; height: 14px; }
.badge-svg { width: 100%; height: 100%; filter: brightness(0) invert(1); }

/* Badge variants */
.badge-marketing { background: linear-gradient(135deg, rgba(255, 165, 0, 0.2) 0%, rgba(255, 69, 0, 0.15) 100%); border-color: rgba(255, 165, 0, 0.4); }
.badge-marketing .badge-text { color: #ffcc80; }
.badge-marketing .badge-svg { filter: brightness(0) saturate(100%) invert(75%) sepia(48%) saturate(1000%) hue-rotate(340deg) brightness(100%) contrast(101%); }

.badge-new { background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(255, 20, 147, 0.15) 100%); border-color: rgba(255, 20, 147, 0.4); position: relative; overflow: hidden; }
.badge-new .badge-text { color: #ff99cc; }
.badge-new .badge-svg { filter: brightness(0) saturate(100%) invert(65%) sepia(48%) saturate(2000%) hue-rotate(300deg) brightness(100%) contrast(101%); }
.badge-new::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent); animation: badgeShine 3s ease-in-out infinite; }
@keyframes badgeShine { 0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); } 50% { transform: translateX(100%) translateY(100%) rotate(45deg); } }

.glass-icon { font-size: 3rem; margin-bottom: 12px; animation: iconFloat 3s ease-in-out infinite; }
@keyframes iconFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.glass-icon-wrapper { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; background: var(--gradient-soft); border-radius: 16px; margin-bottom: 12px; }
.glass-icon-svg { width: 32px; height: 32px; filter: brightness(0) invert(1); }

.glass-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 12px; color: #ffffff; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); }
.glass-title .title-line { display: block; margin-bottom: 2px; }
.glass-title .title-line.accent { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.glass-price { margin: 12px 0; }
.price-amount { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.price-period { font-size: 1rem; color: rgba(255, 255, 255, 0.8); margin-left: 6px; }

.glass-desc { font-size: 0.9rem; color: rgba(255, 255, 255, 0.85); margin-bottom: 12px; line-height: 1.4; }

/* Price Badge Corner - Compact Top Right */
.price-badge-corner { position: absolute; top: 16px; right: 16px; background: rgba(10, 10, 10, 0.85); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 10px; padding: 10px 14px; display: flex; flex-direction: column; gap: 6px; z-index: 10; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4); }
.price-badge-single { padding: 8px 12px; }
.price-row { display: flex; align-items: baseline; gap: 4px; }
.price-row.special { padding-top: 6px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.price-icon { width: 14px; height: 14px; filter: brightness(0) invert(1); opacity: 0.8; margin-right: 2px; }
.price-row.special .price-icon { filter: brightness(0) saturate(100%) invert(65%) sepia(48%) saturate(2000%) hue-rotate(300deg) brightness(100%) contrast(101%); opacity: 1; }
.price-value { font-size: 1.1rem; font-weight: 800; color: #ffffff; line-height: 1; }
.price-badge-single .price-value { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price-row.special .price-value { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price-label { font-size: 0.7rem; color: rgba(255, 255, 255, 0.6); font-weight: 500; white-space: nowrap; }

/* Price Badge Inline - Next to Buttons with Shine Effect */
.price-badge-inline { position: relative; background: rgba(10, 10, 10, 0.9); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 12px; padding: 12px 16px; display: flex; flex-direction: column; gap: 8px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 45, 117, 0.15); overflow: hidden; transition: all 0.3s var(--ease); }
.price-badge-inline:hover { border-color: rgba(255, 45, 117, 0.4); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 45, 117, 0.3); transform: translateY(-2px); }
.price-badge-inline.price-badge-single { padding: 10px 14px; }

/* Promo Badge - Special First Month Offer */
.price-badge-promo { background: linear-gradient(135deg, rgba(255, 45, 117, 0.15) 0%, rgba(121, 40, 202, 0.15) 100%); border: 2px solid rgba(255, 45, 117, 0.5); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 45, 117, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1); padding: 10px 14px; }
.price-badge-promo:hover { border-color: rgba(255, 45, 117, 0.8); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 45, 117, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
.price-badge-promo::before { opacity: 0.1; animation: priceGlow 1.5s ease-in-out infinite; }
.promo-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.7); font-weight: 600; margin-bottom: 2px; text-align: center; }
.price-badge-promo .price-value { font-size: 1.4rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price-badge-promo .price-row { justify-content: center; }

/* Shining/Glowing Effect */
.price-shine { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%); animation: priceShine 3s ease-in-out infinite; pointer-events: none; }
@keyframes priceShine { 0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); } 50% { transform: translateX(100%) translateY(100%) rotate(45deg); } }

/* Pulsing glow effect */
.price-badge-inline::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: var(--gradient); opacity: 0.05; border-radius: 12px; animation: priceGlow 2s ease-in-out infinite; pointer-events: none; }
@keyframes priceGlow { 0%, 100% { opacity: 0.05; } 50% { opacity: 0.15; } }

.price-badge-inline .price-row { position: relative; z-index: 1; }
.price-badge-inline .price-value { font-size: 1.2rem; }
.price-badge-inline.price-badge-single .price-value { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.glass-features { list-style: none; margin: 12px 0; display: flex; flex-direction: column; gap: 6px; }
.glass-features li { padding: 8px 12px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 8px; font-size: 0.85rem; color: rgba(255, 255, 255, 0.9); line-height: 1.3; }

/* Features Grid for main card */
.glass-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 20px 0; }
.feature-item { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 12px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 12px; transition: all 0.3s var(--ease); cursor: default; }
.feature-item:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 45, 117, 0.4); transform: translateY(-2px); }
.feature-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: var(--gradient-soft); border-radius: 10px; }
.feature-svg { width: 20px; height: 20px; filter: brightness(0) invert(1); }
.feature-item span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.9); text-align: center; font-weight: 500; }

.glass-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; align-items: center; }

.btn-small { padding: 14px 24px; font-size: 0.9rem; }

/* ============================================
   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; }
.track-3 { animation: marqueeLeft 30s 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); }

/* Carousel Controls */
.carousel-controls { position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; justify-content: center; gap: 30px; z-index: 10; }
.carousel-btn { width: 50px; height: 50px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s var(--ease); }
.carousel-btn:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--accent); transform: scale(1.1); }
.carousel-btn svg { width: 24px; height: 24px; color: var(--text); }
.carousel-dots { display: flex; gap: 12px; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); border: none; cursor: pointer; transition: all 0.3s var(--ease); }
.dot.active { background: var(--gradient); width: 32px; border-radius: 6px; }
.dot:hover { background: rgba(255, 255, 255, 0.4); }
.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; }

.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; }
.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; } }

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-header { text-align: center; margin-bottom: 60px; }
.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; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about { padding: clamp(100px, 15vh, 180px) 0; background: var(--bg-light); }

.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin: 60px 0; }
.stat-item { 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; margin-bottom: 12px; }
.stat-label { font-size: 1rem; color: var(--text-dim); }

.about-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 60px; }
.about-feature { text-align: center; padding: 30px 20px; background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 20px; transition: all 0.3s var(--ease); }
.about-feature:hover { transform: translateY(-5px); border-color: rgba(255, 45, 117, 0.3); }
.about-icon { width: 60px; height: 60px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; background: var(--gradient-soft); border-radius: 16px; }
.about-svg { width: 32px; height: 32px; filter: brightness(0) invert(1); }
.about-feature h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.about-feature p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.75); line-height: 1.5; }

/* ============================================
   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-circle { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.gradient-red { background: linear-gradient(135deg, #ff2d75 0%, #ff6b9d 100%); }
.gradient-blue { background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%); }
.gradient-purple { background: linear-gradient(135deg, #7928ca 0%, #a855f7 100%); }
.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 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.advantage-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); }

/* ============================================
   MODULES SECTION
   ============================================ */
.modules { padding: clamp(100px, 15vh, 180px) 0; background: var(--bg-light); }
.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 { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; margin-bottom: 16px; }
.module-icon img { width: 56px; height: 56px; filter: brightness(0) invert(1); }
.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; }

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing { padding: clamp(100px, 15vh, 180px) 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.pricing-card { position: relative; padding: 40px 32px; background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 24px; transition: all 0.3s var(--ease); }
.pricing-card:hover { transform: translateY(-10px); border-color: var(--accent); }
.pricing-card.featured { border-color: var(--accent); background: linear-gradient(135deg, rgba(255, 45, 117, 0.05) 0%, rgba(121, 40, 202, 0.05) 100%); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 6px 16px; background: var(--gradient); border-radius: 100px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.pricing-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; }
.price { margin-bottom: 30px; }
.amount { font-size: 3rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.period { font-size: 1rem; color: var(--text-dim); margin-left: 8px; }
.features-list { list-style: none; margin-bottom: 30px; }
.features-list li { padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); color: var(--text-dim); }
.features-list li:last-child { border-bottom: none; }
.pricing-btn { display: block; width: 100%; padding: 16px; text-align: center; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 100px; font-weight: 600; transition: all 0.3s var(--ease); }
.pricing-btn:hover { border-color: var(--accent); background: rgba(255, 45, 117, 0.1); }
.pricing-btn.primary { background: var(--gradient); border-color: transparent; }
.pricing-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255, 45, 117, 0.3); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .glass-carousel { max-width: 550px; height: 550px; }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .advantages-grid { grid-template-columns: 1fr; }
    .advantage-card.large { grid-column: span 1; }
    .glass-carousel { max-width: 500px; height: 520px; }
    .glass-card { padding: 25px 30px; }
    .glass-title { font-size: 1.6rem; }
    .glass-features { font-size: 0.8rem; }
    .glass-features-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .feature-item { padding: 12px 8px; }
    .feature-icon { width: 32px; height: 32px; }
    .feature-svg { width: 18px; height: 18px; }
    .carousel-controls { gap: 20px; bottom: -70px; }
    .carousel-btn { width: 40px; height: 40px; }
    .carousel-btn svg { width: 20px; height: 20px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .about-features { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 600px) {
    .glass-carousel { max-width: 100%; height: 480px; }
    .glass-card { padding: 18px 20px; }
    .glass-card[data-position="center"] { 
        transform: translateZ(50px) scale(1.02); 
    }
    .glass-card[data-position="right"] { 
        transform: translateX(70%) translateZ(-150px) scale(0.85) rotateY(-10deg); 
        opacity: 0.6; 
    }
    .glass-card[data-position="left"] { 
        transform: translateX(-70%) translateZ(-300px) scale(0.75) rotateY(15deg); 
        opacity: 0.4; 
    }
    .glass-content { padding-top: 10px; }
    .glass-badge { padding: 4px 10px; margin-bottom: 8px; }
    .badge-text { font-size: 0.6rem; }
    .glass-title { font-size: 1.3rem; margin-bottom: 6px; }
    .glass-desc { font-size: 0.8rem; margin-bottom: 8px; }
    .glass-icon { font-size: 2.5rem; }
    .glass-icon-wrapper { width: 44px; height: 44px; margin-bottom: 8px; }
    .glass-icon-svg { width: 24px; height: 24px; }
    .price-amount { font-size: 2rem; }
    .modules-grid { grid-template-columns: 1fr; }
    .glass-features li { padding: 5px 8px; font-size: 0.75rem; }
    .glass-features { margin: 6px 0; gap: 4px; }
    .glass-features-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; margin: 10px 0; }
    .feature-item { padding: 8px 4px; gap: 4px; }
    .feature-icon { width: 26px; height: 26px; border-radius: 8px; }
    .feature-svg { width: 14px; height: 14px; }
    .feature-item span { font-size: 0.65rem; }
    .glass-actions { flex-direction: row; flex-wrap: wrap; width: 100%; align-items: center; margin-top: 10px; gap: 8px; }
    .btn-primary { padding: 12px 20px; font-size: 0.85rem; }
    .btn-primary.btn-small { padding: 10px 18px; font-size: 0.8rem; }
    .price-badge-inline { padding: 8px 10px; gap: 4px; }
    .price-badge-inline.price-badge-single { padding: 6px 10px; }
    .price-badge-inline .price-value { font-size: 0.95rem; }
    .price-badge-promo { padding: 6px 10px; }
    .price-badge-promo .price-value { font-size: 1.1rem; }
    .promo-label { font-size: 0.6rem; margin-bottom: 0; }
    .price-icon { width: 11px; height: 11px; }
    .price-value { font-size: 0.95rem; }
    .price-label { font-size: 0.6rem; }
    .price-row.special { padding-top: 4px; }
    .about-stats { grid-template-columns: 1fr; gap: 20px; }
    .about-features { grid-template-columns: 1fr; }
    .carousel-controls { bottom: -60px; }
}
/* ============================================
   ECOSYSTEM & TIMELINE STYLES
   ============================================ */

/* Ecosystem gradient */
.gradient-ecosystem { background: linear-gradient(135deg, #00d4ff 0%, #7928ca 50%, #ff2d75 100%); }

/* Hero card - larger first card */
.advantage-card.hero-card { grid-column: span 2; grid-row: span 2; }

/* Ecosystem chain */
.ecosystem-chain { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin: 24px 0; padding: 20px; background: rgba(255, 255, 255, 0.03); border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.08); flex-wrap: wrap; }
.chain-item { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; min-width: 70px; }
.chain-icon { font-size: 2rem; }
.chain-label { font-size: 0.75rem; color: rgba(255, 255, 255, 0.7); text-align: center; line-height: 1.2; }
.chain-arrow { font-size: 1.5rem; color: var(--accent); opacity: 0.6; }

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.feature-list-item { display: flex; align-items: center; gap: 12px; padding: 12px; background: rgba(255, 255, 255, 0.05); border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.3s var(--ease); }
.feature-list-item:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(0, 212, 255, 0.3); }
.check-icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; background: var(--gradient); border-radius: 50%; font-size: 0.85rem; font-weight: 700; flex-shrink: 0; }
.feature-list-item span:last-child { font-size: 0.9rem; color: rgba(255, 255, 255, 0.9); }

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 20px; margin: 20px 0; }
.timeline-item { display: flex; gap: 16px; padding: 16px; background: rgba(255, 255, 255, 0.05); border-radius: 12px; border-left: 3px solid var(--accent); transition: all 0.3s var(--ease); }
.timeline-item:hover { background: rgba(255, 255, 255, 0.08); border-left-color: var(--accent-3); transform: translateX(5px); }
.timeline-date { font-size: 0.75rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.05em; min-width: 80px; padding-top: 2px; }
.timeline-content { flex: 1; }
.timeline-title { font-size: 1rem; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.timeline-desc { font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); line-height: 1.4; }

/* Responsive adjustments for new elements */
@media (max-width: 900px) {
    .advantage-card.hero-card { grid-column: span 1; grid-row: span 1; }
    .ecosystem-chain { gap: 6px; padding: 16px; }
    .chain-item { min-width: 60px; }
    .chain-icon { font-size: 1.5rem; }
    .chain-label { font-size: 0.7rem; }
    .chain-arrow { font-size: 1.2rem; }
}

@media (max-width: 600px) {
    .ecosystem-chain { flex-direction: column; gap: 12px; }
    .chain-arrow { transform: rotate(90deg); }
}


/* ============================================
   ECOSYSTEM & TIMELINE STYLES
   ============================================ */

/* Ecosystem gradient */
.gradient-ecosystem { background: linear-gradient(135deg, #00d4ff 0%, #7928ca 50%, #ff2d75 100%); }

/* Hero card - larger first card */
.advantage-card.hero-card { grid-column: span 2; grid-row: span 2; }

/* SVG icons in circles */
.svg-icon-lg { width: 28px; height: 28px; filter: brightness(0) invert(1); }

/* Ecosystem stats */
.ecosystem-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 20px 0; }
.stat-mini { text-align: center; padding: 16px 12px; background: rgba(255, 255, 255, 0.05); border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.3s var(--ease); }
.stat-mini:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(0, 212, 255, 0.3); transform: translateY(-2px); }
.stat-mini-number { font-size: 1.8rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 6px; }
.stat-mini-label { font-size: 0.75rem; color: rgba(255, 255, 255, 0.7); line-height: 1.3; }

/* Ecosystem chain */
.ecosystem-chain { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin: 24px 0; padding: 20px; background: rgba(255, 255, 255, 0.03); border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.08); flex-wrap: wrap; }
.chain-item { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; min-width: 70px; }
.chain-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.08); border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.15); transition: all 0.3s var(--ease); }
.chain-item:hover .chain-icon { background: rgba(255, 255, 255, 0.12); transform: scale(1.1); }
.chain-svg { width: 24px; height: 24px; filter: brightness(0) invert(1); }
.chain-label { font-size: 0.75rem; color: rgba(255, 255, 255, 0.7); text-align: center; line-height: 1.2; font-weight: 500; }
.chain-arrow { font-size: 1.5rem; color: var(--accent); opacity: 0.6; }

/* Ecosystem benefits */
.ecosystem-benefits { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.benefit-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: rgba(0, 212, 255, 0.05); border-radius: 8px; border: 1px solid rgba(0, 212, 255, 0.15); transition: all 0.3s var(--ease); }
.benefit-item:hover { background: rgba(0, 212, 255, 0.1); border-color: rgba(0, 212, 255, 0.3); }
.benefit-icon { width: 18px; height: 18px; filter: brightness(0) saturate(100%) invert(65%) sepia(98%) saturate(2000%) hue-rotate(160deg) brightness(100%) contrast(101%); flex-shrink: 0; }
.benefit-item span { font-size: 0.85rem; color: rgba(255, 255, 255, 0.9); }

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.feature-list-item { display: flex; align-items: center; gap: 12px; padding: 12px; background: rgba(255, 255, 255, 0.05); border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.3s var(--ease); }
.feature-list-item:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(0, 212, 255, 0.3); }
.check-icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; background: var(--gradient); border-radius: 50%; flex-shrink: 0; padding: 4px; }
.check-svg { width: 100%; height: 100%; filter: brightness(0) invert(1); }
.feature-list-item span:last-child { font-size: 0.9rem; color: rgba(255, 255, 255, 0.9); }

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 20px; margin: 20px 0; }
.timeline-item { display: flex; gap: 16px; padding: 16px; background: rgba(255, 255, 255, 0.05); border-radius: 12px; border-left: 3px solid var(--accent); transition: all 0.3s var(--ease); }
.timeline-item:hover { background: rgba(255, 255, 255, 0.08); border-left-color: var(--accent-3); transform: translateX(5px); }
.timeline-date { font-size: 0.75rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.05em; min-width: 80px; padding-top: 2px; }
.timeline-content { flex: 1; }
.timeline-title { font-size: 1rem; font-weight: 600; margin-bottom: 4px; color: var(--text); display: flex; align-items: center; gap: 8px; }
.timeline-icon { width: 18px; height: 18px; filter: brightness(0) invert(1); opacity: 0.8; }
.timeline-desc { font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); line-height: 1.4; }

/* Responsive adjustments for new elements */
@media (max-width: 900px) {
    .advantage-card.hero-card { grid-column: span 1; grid-row: span 1; }
    .ecosystem-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .stat-mini { padding: 12px 8px; }
    .stat-mini-number { font-size: 1.5rem; }
    .ecosystem-chain { gap: 6px; padding: 16px; }
    .chain-item { min-width: 60px; }
    .chain-icon { width: 40px; height: 40px; }
    .chain-svg { width: 20px; height: 20px; }
    .chain-label { font-size: 0.7rem; }
    .chain-arrow { font-size: 1.2rem; }
}

@media (max-width: 600px) {
    .ecosystem-stats { grid-template-columns: 1fr; }
    .ecosystem-chain { flex-direction: column; gap: 12px; }
    .chain-arrow { transform: rotate(90deg); }
}

/* ============================================
   COMPARISON SECTION
   ============================================ */
.comparison { padding: clamp(100px, 15vh, 180px) 0; background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.02) 50%, transparent 100%); }

.comparison-table-wrapper { 
    overflow-x: auto; 
    margin: 60px 0; 
    border-radius: 24px; 
    background: var(--bg-card); 
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-height: 600px;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.comparison-table-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.comparison-table { 
    width: 100%; 
    border-collapse: collapse; 
    min-width: 800px;
    position: relative;
}

.comparison-table thead { 
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
    position: sticky;
    top: 0;
    z-index: 10;
}

.comparison-table thead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
    opacity: 0.5;
}

.comparison-table th { 
    padding: 24px 20px; 
    text-align: center; 
    font-weight: 600; 
    font-size: 16px;
    color: var(--text-primary);
}

.comparison-table .feature-col { 
    text-align: left; 
    width: 35%;
    padding-left: 32px;
}

.comparison-table .product-col { 
    width: 16.25%;
}

.product-header { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px;
}

.product-icon { 
    width: 24px; 
    height: 24px; 
    filter: brightness(0) invert(1);
}

.comparison-table tbody tr { 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}

.comparison-table tbody tr:hover { 
    background: rgba(139, 92, 246, 0.03);
}

.comparison-table td { 
    padding: 20px; 
    text-align: center;
}

.comparison-table .feature-name { 
    text-align: left; 
    font-weight: 500; 
    color: var(--text-primary);
    padding-left: 32px;
}

.comparison-table .highlight-col { 
    background: rgba(139, 92, 246, 0.05);
    position: relative;
}

.comparison-table .highlight-col::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-purple), var(--accent-pink));
}

.comparison-table .check { 
    color: #10b981; 
    font-size: 24px; 
    font-weight: bold;
}

.comparison-table .cross { 
    color: #ef4444; 
    font-size: 24px; 
    font-weight: bold;
}

.comparison-table .partial { 
    color: #f59e0b; 
    font-size: 24px; 
    font-weight: bold;
}

.comparison-table .price-row { 
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
    font-weight: 600;
    border-top: 2px solid rgba(139, 92, 246, 0.2);
}

.comparison-table .price-row td { 
    padding: 28px 20px;
    font-size: 19px;
    color: var(--text-primary);
}

.comparison-table .price-row .highlight-col {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
}

.comparison-table .price-row strong {
    font-size: 22px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-notes { 
    display: flex; 
    gap: 32px; 
    justify-content: center; 
    flex-wrap: wrap; 
    margin: 40px 0;
    padding: 24px;
    background: rgba(139, 92, 246, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.note-item { 
    display: flex; 
    align-items: center; 
    gap: 8px;
    color: var(--text-dim);
    font-size: 14px;
}

.note-icon { 
    font-size: 20px; 
    font-weight: bold;
}

.note-icon.check { color: #10b981; }
.note-icon.cross { color: #ef4444; }
.note-icon.partial { color: #f59e0b; }

.comparison-cta { 
    text-align: center; 
    margin-top: 60px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 32px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.comparison-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    margin-bottom: 24px;
    color: var(--accent-purple);
    font-size: 14px;
    font-weight: 500;
}

.cta-badge svg {
    width: 20px;
    height: 20px;
}

.comparison-cta h3 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.comparison-cta p { 
    font-size: 18px; 
    color: var(--text-dim); 
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .comparison-cta {
        padding: 40px 24px;
        margin-top: 40px;
    }
    
    .comparison-cta h3 {
        font-size: 22px;
    }
    
    .comparison-cta p { 
        font-size: 16px;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Hide table on mobile */
    .comparison-table-wrapper {
        display: none;
    }
    
    /* Show mobile card layout */
    .comparison-mobile-cards {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin: 40px 0;
    }
    
    .comparison-mobile-card {
        background: rgba(10, 10, 10, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 20px;
        backdrop-filter: blur(10px);
    }
    
    .comparison-mobile-card.highlight {
        background: rgba(139, 92, 246, 0.1);
        border-color: rgba(139, 92, 246, 0.3);
    }
    
    .mobile-card-header {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 16px;
        color: #fff;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-card-products {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .mobile-product-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
    }
    
    .mobile-product-name {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 500;
    }
    
    .mobile-product-name.highlight {
        color: rgba(139, 92, 246, 1);
        font-weight: 600;
    }
    
    .mobile-product-value {
        font-size: 20px;
    }
    
    .comparison-notes { 
        flex-direction: column; 
        gap: 16px;
        padding: 20px;
    }
    
    .comparison-cta p { 
        font-size: 16px;
    }
}

/* Desktop: hide mobile cards */
@media (min-width: 769px) {
    .comparison-mobile-cards {
        display: none;
    }
}

/* ============================================
   MODULES DETAILED SECTION
   ============================================ */
.modules-detailed { padding: clamp(100px, 15vh, 180px) 0; background: var(--bg-light); }
.modules-detailed .container { display: flex; flex-direction: column; }
.modules-detailed .section-header { margin-bottom: 60px; }

.mod-detail {
    position: relative;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 24px;
    transition: transform 0.5s var(--ease);
}
.mod-detail:hover { transform: translateY(-6px); }
.mod-detail:last-of-type { margin-bottom: 0; }

.mod-detail-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.08) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.3s;
}
.mod-detail:hover .mod-detail-bg { opacity: 1; }

.mod-detail-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;
}
.mod-detail:hover .mod-detail-border { opacity: 1; }

.mod-detail-content { position: relative; z-index: 1; }

.mod-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 28px;
}

.mod-detail-icon {
    position: relative;
    width: 60px; height: 60px;
    flex-shrink: 0;
}

.mod-detail-titles { flex: 1; }
.mod-detail-titles h3 {
    font-size: 1.5rem; font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.mod-detail-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 700px;
}

.mod-detail-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
}

.mod-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s var(--ease);
}
.mod-feat:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 45, 117, 0.3);
    transform: translateX(4px);
}
.mod-feat-icon {
    width: 18px; height: 18px;
    filter: brightness(0) saturate(100%) invert(65%) sepia(98%) saturate(2000%) hue-rotate(160deg) brightness(100%) contrast(101%);
    flex-shrink: 0;
}
.mod-feat span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */
.cta-final {
    padding: clamp(80px, 12vh, 140px) 0;
}
.cta-final-inner {
    position: relative;
    padding: 80px 60px;
    border-radius: 32px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    text-align: center;
}
.cta-final-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden; pointer-events: none;
}
.cta-final-bg .orb-1 { width: 400px; height: 400px; top: -30%; right: -10%; opacity: 0.25; }
.cta-final-bg .orb-2 { width: 300px; height: 300px; bottom: -30%; left: -5%; opacity: 0.2; }
.cta-final-content { position: relative; z-index: 1; }
.cta-final-content .section-title { margin-bottom: 16px; }
.cta-final-content .section-desc { margin-bottom: 40px; }
.cta-final-actions { display: flex; justify-content: center; }

/* ============================================
   MODULES DETAILED RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .mod-detail { padding: 28px 24px; }
    .mod-detail-header { flex-direction: column; gap: 16px; }
    .mod-detail-titles h3 { font-size: 1.3rem; }
    .mod-detail-features { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .mod-detail { padding: 24px 20px; }
    .mod-detail-titles h3 { font-size: 1.2rem; }
    .mod-detail-desc { font-size: 0.9rem; }
    .mod-feat { padding: 10px 12px; }
    .mod-feat span { font-size: 0.85rem; }
    .cta-final-inner { padding: 50px 24px; }
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works { padding: clamp(100px, 15vh, 180px) 0; }

.hiw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.hiw-card {
    position: relative;
    padding: 40px 32px;
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.5s var(--ease);
}
.hiw-card:hover { transform: translateY(-8px); }

.hiw-card-hero {
    grid-column: span 2;
}

.hiw-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.08) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.3s;
}
.hiw-card:hover .hiw-card-bg { opacity: 1; }

.hiw-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;
}
.hiw-card:hover .hiw-card-border { opacity: 1; }

.hiw-card-content { position: relative; z-index: 1; }

.hiw-card-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    margin-bottom: 20px;
}
.hiw-card-badge .badge-text {
    font-size: 0.7rem; color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500;
}
.hiw-badge-free {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-color: rgba(0, 255, 136, 0.35);
}
.hiw-badge-free .badge-text { color: #80ffbb; }
.hiw-badge-free .badge-svg {
    width: 14px; height: 14px;
    filter: brightness(0) saturate(100%) invert(80%) sepia(40%) saturate(600%) hue-rotate(100deg) brightness(110%) contrast(101%);
}

.hiw-card-icon {
    position: relative;
    width: 60px; height: 60px;
    margin-bottom: 20px;
}

.hiw-card h3 {
    font-size: 1.5rem; font-weight: 700;
    margin-bottom: 12px; letter-spacing: -0.01em;
}

.hiw-card-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 700px;
}

.hiw-card-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

/* Hero card features in 3 columns */
.hiw-card-hero .hiw-card-features {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .hiw-grid { grid-template-columns: 1fr; }
    .hiw-card-hero { grid-column: span 1; }
    .hiw-card-hero .hiw-card-features { grid-template-columns: 1fr; }
    .hiw-card { padding: 28px 24px; }
    .hiw-card h3 { font-size: 1.3rem; }
    .hiw-card-features { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .hiw-card { padding: 24px 20px; }
    .hiw-card h3 { font-size: 1.2rem; }
    .hiw-card-desc { font-size: 0.9rem; }
}

/* ============================================
   COMPARISON MOBILE TOGGLE (COLLAPSIBLE)
   ============================================ */
.comparison-mobile-toggle {
    display: none;
}

@media (max-width: 768px) {
    .comparison-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 16px 24px;
        margin: 40px 0 0;
        background: rgba(139, 92, 246, 0.08);
        border: 1px solid rgba(139, 92, 246, 0.25);
        border-radius: 16px;
        cursor: pointer;
        font-size: 0.95rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.9);
        transition: all 0.3s var(--ease);
        -webkit-tap-highlight-color: transparent;
    }
    .comparison-mobile-toggle:hover {
        background: rgba(139, 92, 246, 0.15);
        border-color: rgba(139, 92, 246, 0.4);
    }
    .comparison-mobile-toggle.active {
        margin-bottom: 0;
        border-radius: 16px 16px 0 0;
        border-bottom-color: transparent;
    }
    .toggle-chevron {
        transition: transform 0.3s var(--ease);
    }
    .comparison-mobile-toggle.active .toggle-chevron {
        transform: rotate(180deg);
    }

    .comparison-mobile-cards.collapsed {
        display: none;
    }
    .comparison-mobile-cards.expanded {
        display: flex;
        border-top: none;
        padding-top: 16px;
    }
}

/* ============================================
   UNIFIED PRICING BLOCK
   ============================================ */
.unified-pricing { padding: clamp(100px, 15vh, 180px) 0; position: relative; z-index: 1; }

.unified-pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.unified-card {
    position: relative;
    padding: 48px 36px;
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.5s var(--ease);
    z-index: 1;
    isolation: isolate;
}
.unified-card:hover { transform: translateY(-8px); }

.unified-card-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 45, 117, 0.06) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.3s;
}
.unified-card:hover .unified-card-bg { opacity: 1; }

.unified-card-border {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s; pointer-events: none;
}
.unified-card:hover .unified-card-border {
    border-color: transparent;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box, var(--gradient) border-box;
}

.unified-card-accent .unified-card-border {
    border-color: rgba(255, 45, 117, 0.3);
}
.unified-card-accent {
    background: linear-gradient(135deg, rgba(255, 45, 117, 0.05) 0%, rgba(121, 40, 202, 0.05) 100%);
}

.unified-card-badge {
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient);
    border-radius: 0 0 12px 12px;
    font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
}

.unified-card-content { position: relative; z-index: 1; }

.unified-label {
    font-size: 0.85rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.unified-price {
    display: flex; align-items: baseline;
    justify-content: center; gap: 6px;
    margin-bottom: 16px;
}
.unified-amount {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.unified-currency {
    font-size: 1.1rem; font-weight: 500;
    color: var(--text-dim);
}

.unified-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
    line-height: 1.5;
}

.unified-card .btn-primary { display: inline-flex; width: auto; }

@media (max-width: 600px) {
    .unified-pricing-cards { grid-template-columns: 1fr; gap: 16px; }
    .unified-card { padding: 36px 24px; }
    .unified-amount { font-size: 2.5rem; }
    .unified-card .btn-primary { width: 100%; justify-content: center; }
}