/* ============================================
   🚀 ASTRONOMÍA - COSMIC DESIGN SYSTEM
   A Revolutionary Space-Themed Experience
   ============================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Cosmic Color Palette */
    --cosmic-void: #0a0a0f;
    --deep-space: #0d1117;
    --nebula-purple: #6b21a8;
    --nebula-blue: #2563eb;
    --stellar-cyan: #22d3ee;
    --aurora-green: #10b981;
    --supernova-orange: #f97316;
    --plasma-pink: #ec4899;
    --starlight: #f8fafc;
    --moonlight: #94a3b8;

    /* Gradients */
    --gradient-aurora: linear-gradient(135deg, #6366f1 0%, #8b5cf6 25%, #d946ef 50%, #ec4899 75%, #f43f5e 100%);
    --gradient-nebula: linear-gradient(135deg, #1e1b4b 0%, #312e81 25%, #4338ca 50%, #6366f1 100%);
    --gradient-cosmos: radial-gradient(ellipse at 50% 0%, #1e293b 0%, #0f172a 50%, #020617 100%);
    --gradient-stellar: linear-gradient(90deg, #22d3ee, #8b5cf6, #ec4899);

    /* Glow Effects */
    --glow-cyan: 0 0 30px rgba(34, 211, 238, 0.5), 0 0 60px rgba(34, 211, 238, 0.3);
    --glow-purple: 0 0 30px rgba(139, 92, 246, 0.5), 0 0 60px rgba(139, 92, 246, 0.3);
    --glow-pink: 0 0 30px rgba(236, 72, 153, 0.5), 0 0 60px rgba(236, 72, 153, 0.3);

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

/* ===== BASE RESET FOR ASTRONOMY PAGE ===== */
.astro-page {
    background: var(--deep-space);
    color: var(--starlight);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

.astro-page * {
    box-sizing: border-box;
}

/* ===== ANIMATED STAR FIELD BACKGROUND ===== */
.star-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.star-field::before,
.star-field::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow:
        /* Layer 1 - Distant stars */
        random(100vw) random(100vh) 0 0 rgba(255, 255, 255, 0.3),
        random(100vw) random(100vh) 0 0 rgba(255, 255, 255, 0.5),
        random(100vw) random(100vh) 0 0 rgba(255, 255, 255, 0.4);
    animation: twinkle 4s ease-in-out infinite;
}

/* Generate stars with actual pixel values */
.stars-layer-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 10% 10%, white, transparent),
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(1px 1px at 35% 15%, white, transparent),
        radial-gradient(2px 2px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 65% 25%, white, transparent),
        radial-gradient(2px 2px at 80% 40%, white, transparent),
        radial-gradient(1px 1px at 95% 60%, white, transparent),
        radial-gradient(2px 2px at 15% 70%, white, transparent),
        radial-gradient(1px 1px at 40% 85%, white, transparent),
        radial-gradient(2px 2px at 70% 95%, white, transparent),
        radial-gradient(1px 1px at 90% 10%, white, transparent),
        radial-gradient(2px 2px at 5% 45%, white, transparent);
    animation: starDrift 100s linear infinite;
}

.stars-layer-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(3px 3px at 25% 25%, rgba(34, 211, 238, 0.8), transparent),
        radial-gradient(2px 2px at 55% 35%, rgba(139, 92, 246, 0.8), transparent),
        radial-gradient(3px 3px at 75% 65%, rgba(236, 72, 153, 0.8), transparent),
        radial-gradient(2px 2px at 45% 85%, rgba(34, 211, 238, 0.8), transparent),
        radial-gradient(3px 3px at 85% 20%, rgba(139, 92, 246, 0.8), transparent),
        radial-gradient(2px 2px at 15% 55%, rgba(236, 72, 153, 0.8), transparent);
    animation: starDrift 80s linear infinite reverse;
}

.stars-layer-3 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(4px 4px at 30% 20%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(3px 3px at 60% 50%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(4px 4px at 80% 80%, rgba(255, 255, 255, 0.9), transparent);
    animation: twinkle 3s ease-in-out infinite, starDrift 120s linear infinite;
}

@keyframes starDrift {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100vh);
    }
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* ===== NEBULA EFFECTS ===== */
.nebula-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 60% 80%, rgba(34, 211, 238, 0.1) 0%, transparent 50%);
    animation: nebulaShift 30s ease-in-out infinite alternate;
}

@keyframes nebulaShift {
    0% {
        opacity: 0.8;
        filter: hue-rotate(0deg);
    }

    100% {
        opacity: 1;
        filter: hue-rotate(30deg);
    }
}

/* ===== COSMIC NAVIGATION ===== */
.cosmic-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cosmic-nav.scrolled {
    background: rgba(13, 17, 23, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.cosmic-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--starlight);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-orb {
    width: 45px;
    height: 45px;
    background: var(--gradient-stellar);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: orbitPulse 3s ease-in-out infinite;
    box-shadow: var(--glow-cyan);
}

.logo-orb i {
    font-size: 1.2rem;
    color: white;
}

@keyframes orbitPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--moonlight);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-stellar);
    transition: width 0.3s ease;
}

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

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

.nav-cta {
    background: var(--gradient-stellar);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--glow-purple);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan), 0 10px 40px rgba(139, 92, 246, 0.4);
}

/* Mobile Navigation */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--starlight);
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 968px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(13, 17, 23, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== COSMIC HERO SECTION ===== */
.cosmic-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
    z-index: 5;
}

.hero-aurora {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background:
        linear-gradient(180deg,
            rgba(139, 92, 246, 0.2) 0%,
            rgba(34, 211, 238, 0.1) 30%,
            transparent 100%);
    filter: blur(80px);
    pointer-events: none;
    animation: auroraWave 15s ease-in-out infinite;
}

@keyframes auroraWave {

    0%,
    100% {
        transform: translateX(-10%) skewX(-5deg);
        opacity: 0.6;
    }

    50% {
        transform: translateX(10%) skewX(5deg);
        opacity: 1;
    }
}

.hero-planet {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.planet-1 {
    width: 400px;
    height: 400px;
    right: -100px;
    top: 10%;
    background:
        radial-gradient(circle at 30% 30%, #6366f1 0%, #4338ca 40%, #1e1b4b 100%);
    box-shadow:
        inset -30px -30px 60px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(99, 102, 241, 0.3);
    animation: planetFloat 20s ease-in-out infinite;
}

.planet-2 {
    width: 150px;
    height: 150px;
    left: 5%;
    bottom: 15%;
    background:
        radial-gradient(circle at 40% 40%, #ec4899 0%, #be185d 50%, #500724 100%);
    box-shadow:
        inset -15px -15px 30px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(236, 72, 153, 0.3);
    animation: planetFloat 15s ease-in-out infinite 2s;
}

.planet-ring {
    position: absolute;
    width: 200%;
    height: 40px;
    top: 50%;
    left: -50%;
    transform: translateY(-50%) rotateX(75deg);
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 100%);
}

@keyframes planetFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Hero Content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--stellar-cyan);
    margin-bottom: 1.5rem;
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--stellar-cyan);
    border-radius: 50%;
    animation: dotPing 1.5s infinite;
}

@keyframes dotPing {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(34, 211, 238, 0.4);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--starlight);
}

.hero-title .stellar-text {
    background: var(--gradient-stellar);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title .stellar-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--gradient-stellar);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(20px);
    opacity: 0.7;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--moonlight);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

@media (max-width: 968px) {
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Hero CTA Buttons */
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (max-width: 968px) {
    .hero-ctas {
        justify-content: center;
    }
}

.cta-stellar {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--gradient-stellar);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--glow-purple);
}

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

.cta-stellar:hover::before {
    left: 100%;
}

.cta-stellar:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        var(--glow-purple),
        0 20px 60px rgba(139, 92, 246, 0.4);
}

.cta-stellar .cta-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.cta-stellar .cta-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cta-stellar .cta-main {
    font-size: 1rem;
}

.cta-stellar .cta-sub {
    font-size: 0.75rem;
    opacity: 0.8;
}

.cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--starlight);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-ghost:hover {
    border-color: var(--stellar-cyan);
    background: rgba(34, 211, 238, 0.1);
    box-shadow: var(--glow-cyan);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

@media (max-width: 968px) {
    .trust-badges {
        justify-content: center;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--moonlight);
    font-size: 0.95rem;
}

.trust-item i {
    color: var(--stellar-cyan);
    font-size: 1.2rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.visual-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.visual-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(139, 92, 246, 0.3) 0%,
            transparent 50%,
            rgba(34, 211, 238, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

.visual-main img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.01);
    transition: transform 0.6s ease;
}

.visual-container:hover .visual-main img {
    transform: scale(1.05);
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    animation: cardFloat 4s ease-in-out infinite;
    z-index: 20;
}

.float-card:nth-child(2) {
    animation-delay: 1s;
}

.float-card:nth-child(3) {
    animation-delay: 2s;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.float-card .card-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.float-card .card-content {
    display: flex;
    flex-direction: column;
}

.float-card .card-value {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--starlight);
}

.float-card .card-label {
    font-size: 0.8rem;
    color: var(--moonlight);
}

.fc-1 {
    top: 5%;
    left: -10%;
}

.fc-2 {
    bottom: 20%;
    right: -5%;
}

.fc-3 {
    bottom: 5%;
    left: 10%;
}

@media (max-width: 768px) {
    .float-card {
        display: none;
    }
}

/* ===== SECTION STYLES ===== */
.cosmic-section {
    position: relative;
    padding: 6rem 2rem;
    z-index: 5;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-danger {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.badge-stellar {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--stellar-cyan);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--starlight);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--moonlight);
    line-height: 1.8;
}

/* ===== PROBLEM SECTION ===== */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 968px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

.problem-card {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #f97316);
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 20px 60px rgba(239, 68, 68, 0.15);
}

.problem-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(239, 68, 68, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #f87171;
}

.problem-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--starlight);
}

.problem-card p {
    color: var(--moonlight);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== SOLUTION SECTION ===== */
.solution-section {
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .solution-grid {
        grid-template-columns: 1fr;
    }
}

.solution-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(139, 92, 246, 0.2);
}

.solution-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(13, 17, 23, 0.6) 0%,
            transparent 50%);
    z-index: 1;
}

.solution-image img {
    width: 100%;
    display: block;
}

.solution-content .section-header {
    text-align: left;
    margin: 0 0 2rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateX(5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-stellar);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.benefit-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--starlight);
    margin-bottom: 0.25rem;
}

.benefit-content p {
    font-size: 0.9rem;
    color: var(--moonlight);
    margin: 0;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background:
        linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        linear-gradient(225deg, rgba(34, 211, 238, 0.1) 0%, transparent 50%),
        var(--cosmic-void);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-stellar);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--moonlight);
    font-size: 1rem;
}

/* ===== MODULES SECTION ===== */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .modules-grid {
        grid-template-columns: 1fr;
    }
}

.module-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-stellar);
    opacity: 0.7;
}

.module-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(139, 92, 246, 0.1) 0%,
            transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.module-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(139, 92, 246, 0.15);
}

.module-card:hover::after {
    opacity: 1;
}

.module-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.module-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-stellar);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: var(--glow-purple);
}

.module-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--starlight);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.module-card p {
    color: var(--moonlight);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background:
        radial-gradient(ellipse 60% 50% at 80% 0%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 20% 100%, rgba(34, 211, 238, 0.1) 0%, transparent 50%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: Georgia, serif;
    font-size: 5rem;
    color: rgba(139, 92, 246, 0.2);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1.5rem;
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--moonlight);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-stellar);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info strong {
    display: block;
    color: var(--starlight);
    font-size: 1rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--moonlight);
}

/* ===== FAQ SECTION ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.faq-item[open] {
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--starlight);
    margin: 0;
    padding-right: 2rem;
}

.faq-question i {
    color: var(--stellar-cyan);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--moonlight);
    line-height: 1.8;
    font-size: 1rem;
}

/* ===== CTA FINAL SECTION ===== */
.cta-section {
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(139, 92, 246, 0.2) 0%, transparent 60%),
        linear-gradient(180deg, var(--deep-space) 0%, var(--cosmic-void) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    opacity: 0.3;
}

.cta-glow-1 {
    top: -200px;
    left: -200px;
    background: var(--nebula-purple);
}

.cta-glow-2 {
    bottom: -200px;
    right: -200px;
    background: var(--stellar-cyan);
}

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

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(239, 68, 68, 0.5);
    }
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--starlight);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--moonlight);
    margin-bottom: 3rem;
}

/* Bonus Box */
.bonus-box {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.bonus-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-stellar);
}

.bonus-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--stellar-cyan);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bonus-content {
    font-size: 1.25rem;
    color: var(--starlight);
    margin-bottom: 0.5rem;
}

.bonus-note {
    font-size: 0.9rem;
    color: var(--moonlight);
}

/* Final CTA Button */
.cta-final-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 0 30px rgba(37, 211, 102, 0.4),
        0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-final-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 0 50px rgba(37, 211, 102, 0.5),
        0 20px 60px rgba(0, 0, 0, 0.4);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    color: var(--moonlight);
    font-size: 0.95rem;
}

.cta-guarantee i {
    color: var(--stellar-cyan);
}

/* ===== FOOTER ===== */
.cosmic-footer {
    background: var(--cosmic-void);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--starlight);
}

.footer-logo i {
    color: var(--stellar-cyan);
}

.footer-copy {
    color: var(--moonlight);
    font-size: 0.9rem;
}

/* ===== SCROLL ANIMATIONS ===== */
[data-aos] {
    transition-property: transform, opacity;
}

/* ===== UTILITY CLASSES ===== */
.gradient-text {
    background: var(--gradient-stellar);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-text {
    text-shadow: 0 0 30px currentColor;
}