/* ===== CLEOM V2 - FINAL STYLES ===== */

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; }

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-dark: #0a0a0a;
    --gray-mid: #1a1a1a;
    --gray-light: #666666;
    --gray-text: #999999;
    --accent-purple: #7B3FF2;
    --accent-pink: #FF0080;
    --accent-blue: #0066FF;
    --accent-green: #00FF88;
    --accent-red: #FF4444;
    --accent-yellow: #FFD700;
    --gradient-main: linear-gradient(135deg, #7B3FF2 0%, #FF0080 50%, #00FF88 100%);
    --font-display: 'Syne', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --font-body: 'Inter', sans-serif;
    --easing: cubic-bezier(0.23, 1, 0.32, 1);
}

html { font-size: 16px; scroll-behavior: smooth; background: var(--black); }
body { font-family: var(--font-body); color: var(--white); line-height: 1.6; overflow-x: hidden; background: var(--black); min-width: 1024px; }
::selection { background: var(--accent-purple); color: var(--white); }
.gradient-text { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== MOBILE WARNING ===== */
.mobile-warning { display: none; position: fixed; inset: 0; background: var(--black); z-index: 100000; align-items: center; justify-content: center; text-align: center; }
.mobile-content { padding: 2rem; max-width: 400px; }
.mobile-logo { width: 120px; margin: 0 auto 2rem; }
.mobile-logo img { width: 100%; height: auto; }
.mobile-warning h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 1rem; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.mobile-warning p { color: var(--gray-text); margin-bottom: 1rem; }
.mobile-tip { color: var(--white); font-weight: 600; }
@media (max-width: 1023px) {
    body { min-width: auto; }
    .mobile-warning { display: flex; }
    .main-container, .main-header, .promo-banner, .floating-menu, footer { display: none !important; }
}

/* ===== NOISE ===== */
.noise { position: fixed; inset: 0; pointer-events: none; opacity: 0.03; z-index: 1000; background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc1IiBudW1PY3RhdmVzPSIxMCIvPjxmZUNvbG9yTWF0cml4IHR5cGU9InNhdHVyYXRlIiB2YWx1ZXM9IjAiLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjYSkiLz48L3N2Zz4='); }

/* ===== CURSOR ===== */
.cursor { width: 10px; height: 10px; background: var(--accent-purple); border-radius: 50%; position: fixed; pointer-events: none; z-index: 10000; mix-blend-mode: difference; transition: transform 0.1s ease; }
.cursor-follower { width: 30px; height: 30px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999; transition: transform 0.3s ease; }
.cursor-text { position: fixed; color: var(--white); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; pointer-events: none; z-index: 10001; opacity: 0; }

/* ===== PROMO BANNER ===== */
.promo-banner { position: fixed; top: 0; left: 0; right: 0; background: var(--gradient-main); z-index: 1001; height: 40px; overflow: hidden; }
.promo-text { display: flex; align-items: center; justify-content: center; gap: 2rem; padding: 0.5rem; height: 100%; }
.promo-tag { background: rgba(0,0,0,0.2); padding: 0.25rem 0.75rem; border-radius: 100px; font-size: 0.625rem; font-weight: 700; letter-spacing: 0.2em; }
.promo-main { font-weight: 600; font-size: 0.875rem; }
.promo-countdown { font-family: var(--font-mono); font-size: 0.75rem; padding: 0.25rem 0.75rem; background: rgba(0,0,0,0.2); border-radius: 100px; font-weight: 600; cursor: pointer; transition: all 0.3s var(--easing); }
.promo-countdown:hover { background: rgba(0,0,0,0.3); }
.promo-line { position: absolute; bottom: 0; left: -100%; width: 100%; height: 1px; background: rgba(255,255,255,0.5); animation: scan 3s linear infinite; }
@keyframes scan { to { left: 100%; } }

/* ===== HEADER ===== */
.main-header { position: fixed; top: 40px; left: 0; right: 0; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 3rem; z-index: 1000; pointer-events: none; transition: all 0.3s var(--easing); }
.main-header > * { pointer-events: auto; }
.logo-fixed { position: relative; z-index: 1000; }
.logo-img { height: 35px; width: auto; transition: all 0.3s var(--easing); }
.logo-img:hover { transform: scale(1.1); }
.header-cta { position: relative; padding: 0.75rem 2rem; background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; font-weight: 600; font-size: 0.875rem; transition: all 0.3s var(--easing); cursor: pointer; }
.header-cta:hover { background: var(--white); color: var(--black); transform: scale(1.05); }
.cta-glow { position: absolute; inset: 0; background: var(--gradient-main); opacity: 0; filter: blur(20px); transition: opacity 0.3s var(--easing); z-index: -1; }
.header-cta:hover .cta-glow { opacity: 0.3; }

/* ===== FLOATING MENU ===== */
.floating-menu { position: fixed; right: 3rem; top: 50%; transform: translateY(-50%); z-index: 100; display: flex; flex-direction: column; gap: 2rem; }
.menu-item { display: flex; align-items: center; gap: 1rem; cursor: pointer; transition: all 0.3s var(--easing); opacity: 0.5; }
.menu-item:hover { opacity: 1; transform: translateX(-10px); }
.menu-number { font-family: var(--font-mono); font-size: 0.75rem; color: var(--gray-text); }
.menu-text { font-weight: 500; font-size: 0.875rem; }

/* ===== HERO WITH ANIMATED GRADIENT BACKGROUND ===== */
.hero-v2 { min-height: 100vh; position: relative; display: flex; flex-direction: column; overflow: hidden; }

.hero-background { position: absolute; inset: 0; z-index: -1; overflow: hidden; }

/* Animated Gradient Orbs */
.gradient-bg { position: absolute; inset: 0; filter: blur(100px); opacity: 0.5; }

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.gradient-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 63, 242, 0.4) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation: floatOrb1 20s ease-in-out infinite;
}

.gradient-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.3) 0%, transparent 70%);
    top: 20%;
    right: -10%;
    animation: floatOrb2 25s ease-in-out infinite;
}

.gradient-orb.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.25) 0%, transparent 70%);
    bottom: 10%;
    left: 20%;
    animation: floatOrb3 22s ease-in-out infinite;
}

.gradient-orb.orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(123, 63, 242, 0.3) 0%, transparent 70%);
    bottom: -5%;
    right: 25%;
    animation: floatOrb4 18s ease-in-out infinite;
}

@keyframes floatOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(100px, 50px) scale(1.1); }
    50% { transform: translate(50px, 100px) scale(0.95); }
    75% { transform: translate(-50px, 50px) scale(1.05); }
}

@keyframes floatOrb2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-80px, 60px) scale(1.15); }
    50% { transform: translate(-40px, -40px) scale(0.9); }
    75% { transform: translate(60px, 20px) scale(1.1); }
}

@keyframes floatOrb3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, -40px) scale(1.1); }
    50% { transform: translate(100px, 30px) scale(0.95); }
    75% { transform: translate(30px, -60px) scale(1.05); }
}

@keyframes floatOrb4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-40px, -30px) scale(1.15); }
    50% { transform: translate(50px, -50px) scale(0.9); }
    75% { transform: translate(-60px, 40px) scale(1.1); }
}

#fluid-canvas { position: absolute; inset: 0; opacity: 0.02; }

.hero-layout { flex: 1; display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 0 3rem; gap: 4rem; max-width: 1600px; margin: 0 auto; width: 100%; }
.hero-text-block { z-index: 2; }
.hero-headline { font-family: var(--font-display); font-size: clamp(3rem, 10vw, 9rem); font-weight: 800; line-height: 0.9; letter-spacing: -0.05em; }
.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .word { display: inline-block; animation: slideUp 1s var(--easing) backwards; }
.line-1 .word:nth-child(1) { animation-delay: 0.1s; }
.line-1 .word:nth-child(2) { animation-delay: 0.2s; }
.line-2 .word { animation-delay: 0.3s; }
.line-3 .word { animation-delay: 0.4s; }
@keyframes slideUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.word.outline { -webkit-text-stroke: 2px var(--white); -webkit-text-fill-color: transparent; }
.word.gradient { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtext { margin: 2rem 0; font-size: 1.25rem; color: var(--gray-text); animation: fadeIn 1s 0.5s var(--easing) backwards; }
.hero-subtext .highlight { color: var(--white); font-weight: 600; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.hero-cta-group { display: flex; align-items: center; gap: 3rem; animation: fadeIn 1s 0.6s var(--easing) backwards; }
.magnetic-btn { position: relative; padding: 1.25rem 2.5rem; background: var(--white); color: var(--black); font-weight: 600; font-size: 1rem; border-radius: 100px; overflow: hidden; transition: all 0.3s var(--easing); cursor: pointer; border: none; }
.magnetic-btn .btn-hover-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, 150%); opacity: 0; transition: all 0.3s var(--easing); }
.magnetic-btn:hover .btn-text { transform: translateY(-150%); opacity: 0; }
.magnetic-btn:hover .btn-hover-text { transform: translate(-50%, -50%); opacity: 1; }

/* Hero Visual */
.hero-visual-block { position: relative; height: 600px; width: 100%; }
.holographic-stack { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; perspective: 1000px; }
.holo-frame { position: absolute; width: 320px; height: 200px; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; overflow: hidden; transition: all 0.5s var(--easing); }
.holo-frame::before { content: attr(data-title); position: absolute; top: -25px; left: 0; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.5); font-family: var(--font-mono); }
.holo-frame video { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.frame-edge { position: absolute; inset: 0; background: linear-gradient(135deg, transparent 0%, rgba(123,63,242,0.1) 50%, transparent 100%); pointer-events: none; }
.frame-1 { top: 10%; left: 0; transform: rotateY(25deg) rotateX(5deg); animation: holoFloat1 8s ease-in-out infinite; }
.frame-3 { bottom: 40%; left: 25%; transform: rotateY(15deg) rotateX(10deg); z-index: 3; animation: holoFloat3 12s ease-in-out infinite; }
.frame-5 { bottom: 10%; right: 5%; transform: rotateY(20deg) rotateX(-10deg); animation: holoFloat5 11s ease-in-out infinite; }
@keyframes holoFloat1 { 0%, 100% { transform: rotateY(25deg) rotateX(5deg) translateZ(0); } 50% { transform: rotateY(25deg) rotateX(5deg) translateZ(30px); } }
@keyframes holoFloat3 { 0%, 100% { transform: rotateY(15deg) rotateX(10deg) translateZ(20px); } 50% { transform: rotateY(15deg) rotateX(10deg) translateZ(60px); } }
@keyframes holoFloat5 { 0%, 100% { transform: rotateY(20deg) rotateX(-10deg) translateZ(0); } 50% { transform: rotateY(20deg) rotateX(-10deg) translateZ(45px); } }
.holo-frame:hover { transform: rotateY(0) rotateX(0) translateZ(50px) scale(1.1) !important; z-index: 10; border-color: var(--accent-purple); box-shadow: 0 20px 40px rgba(123,63,242,0.3); }
.holo-grid { position: absolute; inset: 0; pointer-events: none; }
.grid-line { position: absolute; background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%); }
.grid-line.horizontal { width: 100%; height: 1px; }
.grid-line.horizontal:nth-child(1) { top: 25%; }
.grid-line.horizontal:nth-child(2) { top: 50%; }
.grid-line.horizontal:nth-child(3) { top: 75%; }
.grid-line.vertical { width: 1px; height: 100%; }
.grid-line.vertical:nth-child(4) { left: 33%; }
.grid-line.vertical:nth-child(5) { left: 66%; }

/* Hero Bottom */
.hero-bottom-bar { display: flex; justify-content: space-between; align-items: center; padding: 3rem; border-top: 1px solid rgba(255,255,255,0.1); }
.scroll-indicator { display: flex; align-items: center; gap: 1rem; }
.scroll-text { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gray-text); }
.scroll-line { width: 60px; height: 1px; background: var(--gray-text); position: relative; }
.scroll-line::after { content: ''; position: absolute; width: 20px; height: 1px; background: var(--white); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%, 100% { left: 0; } 50% { left: calc(100% - 20px); } }
.hero-stats { display: flex; gap: 3rem; }
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-value { font-family: var(--font-display); font-size: 2rem; font-weight: 800; }
.stat-desc { font-size: 0.75rem; color: var(--gray-text); text-transform: uppercase; }

/* ===== MARQUEE ===== */
.marquee-section { padding: 4rem 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.marquee-track { display: flex; animation: marquee 20s linear infinite; }
.marquee-text { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 4rem); font-weight: 800; white-space: nowrap; padding: 0 2rem; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.2); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-33.33%); } }

/* ===== CREATIONS CAROUSEL ===== */
.creations-section { padding: 8rem 0; }
.creations-header { text-align: center; padding: 0 3rem; margin-bottom: 4rem; }
.creations-title { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6rem); font-weight: 800; line-height: 0.95; margin-bottom: 1.5rem; }
.creations-subtitle { font-size: 1.125rem; color: var(--gray-text); line-height: 1.8; }
.carousel-wrapper { position: relative; padding: 0 2rem; cursor: grab; overflow: hidden; }
.carousel-wrapper:active { cursor: grabbing; }
.carousel-track { display: flex; gap: 1.5rem; padding: 1rem 0; transition: transform 0.1s ease; }
.creation-card { flex: 0 0 220px; transition: all 0.4s var(--easing); user-select: none; }
.card-thumbnail { position: relative; aspect-ratio: 3/4; border-radius: 16px; overflow: hidden; background: var(--gray-mid); }
.card-thumbnail video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--easing); }
.creation-card:hover .card-thumbnail video { transform: scale(1.05); }
.card-duration { position: absolute; bottom: 0.75rem; left: 0.75rem; background: rgba(0,0,0,0.7); padding: 0.25rem 0.5rem; border-radius: 4px; font-family: var(--font-mono); font-size: 0.7rem; backdrop-filter: blur(10px); }
.card-meta { padding: 1rem 0.25rem; }
.card-name { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.card-type { font-size: 0.8rem; color: var(--accent-purple); text-transform: uppercase; letter-spacing: 0.05em; }
.carousel-hint { text-align: center; margin-top: 2rem; font-size: 0.8rem; color: var(--gray-light); font-family: var(--font-mono); }

/* ===== COMPARISON SECTION ===== */
.comparison-section { padding: 8rem 3rem; max-width: 1500px; margin: 0 auto; }
.comparison-header { text-align: center; margin-bottom: 4rem; }
.section-tag { display: inline-block; font-family: var(--font-mono); font-size: 0.75rem; color: var(--accent-purple); text-transform: uppercase; letter-spacing: 0.2em; background: rgba(123,63,242,0.1); padding: 0.5rem 1rem; border-radius: 100px; margin-bottom: 1.5rem; }
.comparison-title { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 800; line-height: 1.1; margin-bottom: 2rem; }
.comparison-prompt { background: var(--gray-mid); border-radius: 16px; padding: 1.5rem 2rem; display: inline-block; max-width: 800px; text-align: left; border: 1px solid rgba(255,255,255,0.05); }
.prompt-label { font-family: var(--font-mono); font-size: 0.7rem; color: var(--accent-purple); letter-spacing: 0.1em; margin-right: 0.75rem; }
.prompt-content { font-size: 0.95rem; color: var(--gray-text); font-style: italic; }
.comparison-prompt-with-image { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.prompt-image { text-align: center; }
.prompt-image img { width: 100px; height: 100px; object-fit: cover; border-radius: 12px; border: 2px solid rgba(255,255,255,0.1); }
.image-label { display: block; font-size: 0.65rem; color: var(--gray-text); margin-top: 0.5rem; text-transform: uppercase; letter-spacing: 0.1em; }
.prompt-arrow { font-size: 2rem; color: var(--accent-purple); }
.prompt-text-box { background: var(--gray-mid); border-radius: 16px; padding: 1.5rem 2rem; max-width: 500px; text-align: left; border: 1px solid rgba(255,255,255,0.05); }
.comparison-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.compare-card { background: var(--gray-mid); border-radius: 20px; padding: 1.5rem; border: 1px solid rgba(255,255,255,0.05); transition: all 0.4s var(--easing); position: relative; }
.compare-card.competitor { opacity: 0.8; }
.compare-card.competitor:hover { opacity: 1; }
.compare-card.cleom-card { background: linear-gradient(135deg, rgba(123,63,242,0.15), rgba(255,0,128,0.1)); border-color: rgba(123,63,242,0.3); transform: scale(1.02); }
.cleom-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gradient-main); color: var(--white); font-size: 0.65rem; font-weight: 700; padding: 0.4rem 1rem; border-radius: 100px; letter-spacing: 0.1em; }
.compare-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.compare-brand { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }
.compare-limit { font-size: 0.65rem; color: var(--accent-red); background: rgba(255,68,68,0.1); padding: 0.25rem 0.6rem; border-radius: 100px; }
.compare-limit.unlimited { color: var(--accent-green); background: rgba(0,255,136,0.1); }
.compare-video { aspect-ratio: 16/9; background: var(--gray-dark); border-radius: 12px; overflow: hidden; margin-bottom: 1rem; position: relative; }
.compare-video video { width: 100%; height: 100%; object-fit: cover; }
.infinity-overlay { position: absolute; top: 0.75rem; right: 0.75rem; width: 36px; height: 36px; background: var(--gradient-main); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.infinity-symbol { font-size: 1.25rem; font-weight: 700; }
.compare-stats { display: flex; flex-direction: column; gap: 0.5rem; }
.stat-row { display: flex; justify-content: space-between; font-size: 0.8rem; }
.stat-label { color: var(--gray-text); }
.stat-val { font-weight: 600; }
.stat-val.red { color: var(--accent-red); }
.stat-val.yellow { color: var(--accent-yellow); }
.stat-val.green { color: var(--accent-green); }

/* ===== NEW AUDIENCE SECTION - INTERACTIVE VIDEO GRID ===== */
.audience-section { padding: 8rem 3rem; max-width: 1600px; margin: 0 auto; }
.audience-header { text-align: center; margin-bottom: 4rem; }
.audience-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
.audience-subtitle { font-size: 1.125rem; color: var(--gray-text); }

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.audience-card {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s var(--easing);
}

.audience-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    transition: all 0.5s var(--easing);
}

.audience-card .card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    transition: all 0.5s var(--easing);
}

.audience-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.5s var(--easing);
}

.audience-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: all 0.5s var(--easing);
}

.audience-card p {
    font-size: 0.9rem;
    color: var(--gray-text);
    transition: all 0.5s var(--easing);
}

.audience-card .card-glow {
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: var(--gradient-main);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s var(--easing);
}

/* Hover State */
.audience-card:hover {
    transform: translateY(-10px) scale(1.02);
    z-index: 10;
}

.audience-card:hover video {
    opacity: 1;
    transform: scale(1.1);
}

.audience-card:hover .card-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.9) 100%);
}

.audience-card:hover .card-icon {
    transform: scale(1.2);
    text-shadow: 0 0 30px rgba(255,255,255,0.5);
}

.audience-card:hover h3 {
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.audience-card:hover p {
    color: var(--white);
}

.audience-card:hover .card-glow {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* ===== FEATURES SECTION ===== */
.features-section { padding: 8rem 3rem; max-width: 1500px; margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 4rem; }
.features-title { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 800; line-height: 1.1; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card { background: var(--gray-mid); border-radius: 20px; padding: 2rem; border: 1px solid rgba(255,255,255,0.05); transition: all 0.4s var(--easing); }
.feature-card:hover { border-color: rgba(123,63,242,0.3); transform: translateY(-5px); }
.feature-card.highlight-card { background: linear-gradient(135deg, rgba(123,63,242,0.15), rgba(255,0,128,0.1)); border-color: rgba(123,63,242,0.2); }
.feature-icon { width: 50px; height: 50px; margin-bottom: 1.5rem; color: var(--accent-purple); }
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
.feature-card p { color: var(--gray-text); font-size: 0.95rem; line-height: 1.7; }

/* ===== PRICING SECTION ===== */
.pricing-section { padding: 8rem 3rem; }
.pricing-header { text-align: center; margin-bottom: 4rem; }
.pricing-title { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6rem); font-weight: 800; line-height: 1; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1400px; margin: 0 auto; }
.price-card { background: var(--gray-mid); border-radius: 24px; padding: 2rem; border: 1px solid rgba(255,255,255,0.05); position: relative; transition: all 0.4s var(--easing); }
.price-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.1); }
.price-card.featured { background: linear-gradient(180deg, rgba(123,63,242,0.2), var(--gray-mid)); border-color: rgba(123,63,242,0.3); transform: scale(1.02); }
.featured-badge { position: absolute; top: -12px; right: 20px; background: var(--gradient-main); color: var(--white); font-size: 0.65rem; font-weight: 700; padding: 0.4rem 0.75rem; border-radius: 100px; letter-spacing: 0.05em; }
.price-header { padding-bottom: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.plan-name { font-family: var(--font-mono); font-size: 0.9rem; color: var(--gray-text); text-transform: uppercase; letter-spacing: 0.1em; }
.price-amount { margin-top: 1rem; display: flex; align-items: baseline; gap: 0.25rem; }
.currency { font-size: 1.5rem; opacity: 0.5; }
.amount { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; }
.period { font-size: 1rem; color: var(--gray-text); }
.price-old { font-size: 1.25rem; opacity: 0.5; text-decoration: line-through; margin-left: 0.5rem; }
.price-features { list-style: none; margin-bottom: 2rem; }
.price-features li { padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--gray-text); font-size: 0.9rem; }
.price-cta { width: 100%; padding: 1rem; background: rgba(255,255,255,0.1); color: var(--white); font-weight: 600; border: none; border-radius: 100px; cursor: pointer; transition: all 0.3s var(--easing); }
.price-cta:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.price-cta.primary { background: var(--white); color: var(--black); }
.price-cta.primary:hover { background: var(--gradient-main); color: var(--white); }

/* ===== FINAL CTA ===== */
.final-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.final-content { text-align: center; z-index: 2; position: relative; }
.final-title { font-family: var(--font-display); font-size: clamp(4rem, 12vw, 10rem); font-weight: 800; line-height: 0.9; }
.title-top { display: block; font-size: 0.3em; color: var(--gray-text); }
.title-main { display: block; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.final-subtitle { font-size: 1.5rem; color: var(--gray-text); margin: 2rem 0 3rem; }
.final-cta { padding: 1.5rem 3rem; font-size: 1.125rem; }
.final-visual { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.orbit-system { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,0.05); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.orbit-1 { width: 300px; height: 300px; animation: rotate 20s linear infinite; }
.orbit-2 { width: 500px; height: 500px; animation: rotate 30s linear infinite reverse; }
.orbit-3 { width: 700px; height: 700px; animation: rotate 40s linear infinite; }
@keyframes rotate { to { transform: translate(-50%, -50%) rotate(360deg); } }
.planet { position: absolute; width: 15px; height: 15px; background: var(--gradient-main); border-radius: 50%; top: 50%; left: 50%; }

/* ===== FOOTER ===== */
.site-footer { padding: 4rem 3rem 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-content { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2rem; }
.footer-brand { font-family: var(--font-display); font-size: 2rem; font-weight: 800; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-tagline { color: var(--gray-text); font-size: 0.9rem; margin-top: 0.25rem; }
.footer-links a { color: var(--gray-text); text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; justify-content: center; gap: 1rem; margin: 2rem 0; }
.social-icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: rgba(255,255,255,0.05); border-radius: 50%; color: var(--gray-text); transition: all 0.3s var(--easing); }
.social-icon:hover { background: var(--gradient-main); color: var(--white); transform: translateY(-3px); }
.footer-bottom { display: flex; justify-content: center; gap: 1rem; color: var(--gray-text); font-size: 0.8rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1400px) {
    .comparison-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1280px) {
    .hero-layout { grid-template-columns: 1fr; gap: 3rem; padding: 0 2rem; }
    .hero-visual-block { height: 400px; }
}