/* ========================================== */
/* 🎨 SPACESHIP LANDING PAGE - GLOBAL STYLES */
/* ========================================== */

:root {
    --space-bg: #0A0F1E;
    --space-bg-light: #001226;
    --neon-blue: #00C8FF;
    --neon-orange: #FF8C00;
    --neon-purple: #9D4EDD;
    --neon-green: #00FF88;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #FFFFFF;
    --text-secondary: #B8C1CC;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(180deg, var(--space-bg) 0%, var(--space-bg-light) 100%);
    color: var(--text-primary);
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.spaceship-landing-page {
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Background overlay for better readability */
.spaceship-landing-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.70) 0%,
        rgba(0, 0, 0, 0.70) 50%,
        rgba(0, 0, 0, 0.70) 100%
    );
    pointer-events: none;
    z-index: 0;
}

section {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Section overlay for better content readability */
section:not(#hero)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.70) 0%,
        rgba(0, 0, 0, 0.70) 50%,
        rgba(0, 0, 0, 0.70) 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* Ensure content is above overlay */
section > * {
    position: relative;
    z-index: 1;
}

section#hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.container,
.container-fluid {
    max-width: 100vw;
    overflow-x: hidden;
}

.row {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================== */
/* 🌟 TYPOGRAPHY */
/* ========================================== */

.hero-mega-title {
    font-family: 'Orbitron', 'Audiowide', 'Rajdhani', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.brand-white {
    color: #ffffff;
    font-weight: 400;
    text-transform: none;
}

.brand-orange {
    color: var(--neon-orange);
    font-weight: 900;
    text-transform: uppercase;
}

.hero-tagline {
    font-family: 'Orbitron', 'Audiowide', 'Rajdhani', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-white-text {
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #00C8FF 0%, #9D4EDD 50%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.neon-blue-text {
    color: var(--neon-blue);
    text-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue);
}

.neon-orange-text {
    color: var(--neon-orange);
    text-shadow: 0 0 20px var(--neon-orange), 0 0 40px var(--neon-orange);
}

.section-overline {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================== */
/* 🚀 HERO SECTION */
/* ========================================== */

/* Navbar height variable (fallback to 70px) */
:root { --navbar-h: 70px; }

.hero-spaceship {
    position: relative;
    width: 100vw;
    /* viewport height fallbacks for cross-browser/device */
    min-height: 100vh;
    min-height: 100svh; /* small viewport height (mobile UI visible) */
    height: 100vh;      /* fallback */
    height: 100svh;     /* modern */
    height: 100dvh;     /* dynamic viewport height */
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch; /* allow internal wrapper to control vertical placement */
    justify-content: stretch;
    overflow-x: hidden;
    overflow-y: auto; /* allow vertical overflow if content slightly exceeds viewport */
    background:
        radial-gradient(circle at 50% 130%, rgba(0, 200, 255, 0.35), transparent 60%),
        radial-gradient(circle at 20% 0%, rgba(157, 78, 221, 0.28), transparent 55%),
        radial-gradient(circle at 80% 10%, rgba(255, 140, 0, 0.22), transparent 55%),
        linear-gradient(180deg,#02081B 0%,#020B20 45%,#031C2E 100%);
}

.hero-spaceship::before {
    content:'';
    position:absolute;
    inset:-10%;
    pointer-events:none;
    background:
        radial-gradient(circle at 50% -10%, transparent 0%, rgba(0,0,0,0.55) 65%),
        radial-gradient(circle at 0% 100%, transparent 0%, rgba(0,0,0,0.55) 65%),
        radial-gradient(circle at 100% 100%, transparent 0%, rgba(0,0,0,0.55) 65%);
    mix-blend-mode:multiply;
    z-index:0;
}

.hero-spaceship::after{
    content:'';
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity:0.18;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='3' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    mix-blend-mode:soft-light;
    z-index:0;
}

/* Starfield Canvas */
.starfield-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Holographic Grid - DISABLED */
.holographic-grid {
    display: none;
}

/* Three.js Container */
.threejs-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Hero Content */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    /* Use computed hero viewport height (JS sets --hero-vh), minus navbar */
    min-height: calc(var(--hero-vh, 100dvh) - var(--navbar-h, 70px));
    /* vertical rhythm mirroring reference hero */
    padding: 6rem 0 5rem; /* top, bottom */
    overflow-y: visible;
    overflow-x: hidden;
}

.hero-content-wrapper .container-fluid {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0;
    max-width: 100%;
}

.hero-content-wrapper .row {
    width: 100%;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.hero-text-block {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 2rem;
    text-align: center;
}

.hero-text-col,
.hero-visual-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    min-height: 0; /* let content define height */
    position: relative;
}

.hero-visual-col {
    overflow: visible;
}

.hero-text-block {
    animation: fadeInUp 1s ease-out;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    margin-bottom: 1.5rem;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 50px;
    color: var(--neon-blue);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.3);
}

.badge-glow {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 200, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 200, 255, 0.5);
    }
}

.neon-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 50px;
    color: var(--neon-blue);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.3);
}

.hero-subheadline {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hologram-shimmer {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--neon-blue);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Glitch Effect */
.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 var(--neon-blue);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -2px 0 var(--neon-orange);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(61px, 9999px, 90px, 0); }
    20% { clip: rect(135px, 9999px, 17px, 0); }
    40% { clip: rect(38px, 9999px, 106px, 0); }
    60% { clip: rect(119px, 9999px, 54px, 0); }
    80% { clip: rect(77px, 9999px, 130px, 0); }
    100% { clip: rect(24px, 9999px, 79px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(89px, 9999px, 65px, 0); }
    20% { clip: rect(10px, 9999px, 143px, 0); }
    40% { clip: rect(99px, 9999px, 22px, 0); }
    60% { clip: rect(44px, 9999px, 118px, 0); }
    80% { clip: rect(126px, 9999px, 71px, 0); }
    100% { clip: rect(55px, 9999px, 98px, 0); }
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-spaceship {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-spaceship .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.btn-glow-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary-glow {
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    color: #fff;
    box-shadow: 0 0 30px rgba(0, 200, 255, 0.5);
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(0, 200, 255, 0.8), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline-glow {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--neon-orange);
    color: var(--neon-orange);
}

.btn-outline-glow:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: var(--neon-orange);
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.5);
    transform: translateY(-2px);
}

/* Holographic Ticker */
.holographic-ticker {
    display: inline-block;
    padding: 1rem;
    background: rgba(0, 200, 255, 0.05);
    border: 1px solid rgba(0, 200, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    animation: tickerScroll 15s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.ticker-separator {
    color: var(--neon-blue);
    opacity: 0.5;
}

/* Hero Visual - Hologram */
.hero-hologram-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroImageEntrance 1.2s ease-out forwards;
    opacity: 0;
    overflow: visible;
    padding: 2rem;
}

@keyframes heroImageEntrance {
    0% {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }
    60% {
        transform: translateX(-10px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 650px;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 200, 255, 0.3));
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-image:hover {
    transform: scale(1.02);
}

/* Hero Mockup Container */
.hero-mockup-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    /* Allow floating HUD/cards to extend outside the mockup bounds */
    overflow: visible;
    /* Keep the whole mockup layer underneath hero overlays */
    z-index: 3;
}

/* Floating UI elements that sit around the phone mockup */
.floating-ui-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5; /* above mockup container and image */
    pointer-events: none; /* let clicks pass through unless overridden on child */
}

/* Floating cards visible on all screens with proper animations */
.floating-ui-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    opacity: 0;
    transform: scale(0.8);
    animation: floatingCardAppear 0.6s ease-out forwards;
}

@keyframes floatingCardAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.floating-card.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0.6s;
}

.floating-card.card-2 {
    top: 15%;
    right: -10%;
    animation-delay: 0.7s;
}

.floating-card.card-3 {
    bottom: 15%;
    left: 5%;
    animation-delay: 0.8s;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .floating-card.card-1 { left: -5%; }
    .floating-card.card-2 { right: -5%; }
}

@media (max-width: 767px) {
    .floating-ui-elements {
        position: relative;
        margin-top: 1.5rem;
        height: auto;
    }
    
    .floating-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin-bottom: 0.75rem;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .floating-card.card-1 { animation-delay: 0.4s; }
    .floating-card.card-2 { animation-delay: 0.5s; }
    .floating-card.card-3 { animation-delay: 0.6s; }
}

.floating-card {
    position: absolute;
    z-index: 6; /* ensure each card is above the mock image */
    pointer-events: auto; /* allow hover/click if needed */
}

/* Default placement approximations for the three demo cards */
.floating-card.card-1 { top: 6%; left: 6%; }
.floating-card.card-2 { top: 10%; right: 6%; }
.floating-card.card-3 { bottom: 12%; left: 10%; }

.hero-mockup-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 200, 255, 0.3));
    animation: float 6s ease-in-out infinite;
    /* Keep the mock image behind overlay HUD/cards within the same stacking context */
    position: relative;
    z-index: 2; /* lower than overlay layers */
}

/* Hero overlay layers: ensure they render above the mockup image */
.hero-visual-col .ui-shard,
.hero-visual-col .hero-hologram-container,
.hero-visual-col .hud-ring,
.hero-visual-col .energy-core,
.hero-visual-col .core-pulse,
.hero-visual-col .core-inner,
.hero-visual-col .data-particles,
.hero-visual-col .hud-panel {
    z-index: 6;
}

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

/* Hero CTA Button - New Style */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #7B2CBF 0%, #5A189A 100%);
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(123, 44, 191, 0.6);
    background: linear-gradient(135deg, #9D4EDD 0%, #7B2CBF 100%);
    color: #ffffff;
}

.btn-hero-primary .btn-text {
    position: relative;
    z-index: 2;
}

.btn-hero-primary .btn-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.875rem;
}

/* HUD Rings */
.hud-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: rotateRing 20s linear infinite;
}

.hud-ring.ring-1 {
    width: 300px;
    height: 300px;
    border-color: rgba(0, 200, 255, 0.3);
    animation-duration: 15s;
}

.hud-ring.ring-2 {
    width: 400px;
    height: 400px;
    border-color: rgba(255, 140, 0, 0.3);
    animation-duration: 20s;
    animation-direction: reverse;
}

.hud-ring.ring-3 {
    width: 500px;
    height: 500px;
    border-color: rgba(157, 78, 221, 0.3);
    animation-duration: 25s;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Energy Core */
.energy-core {
    position: absolute;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-inner {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--neon-blue) 0%, transparent 70%);
    border-radius: 50%;
    animation: coreGlow 2s ease-in-out infinite;
}

@keyframes coreGlow {
    0%, 100% {
        box-shadow: 0 0 40px var(--neon-blue), 0 0 80px var(--neon-blue);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 60px var(--neon-blue), 0 0 120px var(--neon-blue);
        transform: scale(1.1);
    }
}

.core-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    animation: corePulse 2s ease-out infinite;
}

.core-pulse.pulse-2 {
    animation-delay: 0.6s;
}

.core-pulse.pulse-3 {
    animation-delay: 1.2s;
}

@keyframes corePulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Data Particles */
.data-particles .particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--neon-blue);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: particleFloat 3s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 20px var(--neon-blue);
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(10px); }
}

/* UI Shards */
.ui-shard {
    position: absolute;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    animation: shardFloat 4s ease-in-out infinite;
    /* Ensure shards/cards sit above the mockup image */
    z-index: 4;
}

.ui-shard.shard-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.ui-shard.shard-2 {
    bottom: 20%;
    left: 10%;
    animation-delay: 1.3s;
}

.ui-shard.shard-3 {
    top: 60%;
    right: 5%;
    animation-delay: 2.6s;
}

.shard-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neon-blue);
}

@keyframes shardFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--neon-blue);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    margin: 0 auto 0.5rem;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--neon-blue);
    border-radius: 2px;
    margin-top: 8px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

.scroll-indicator p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ========================================== */
/* 📊 SECTIONS - COMMON STYLES */
/* ========================================== */

.section-spaceship {
    position: relative;
    padding: 5rem 0;
    z-index: 5;
    scroll-margin-top: 70px; /* Account for fixed navbar */
}

.section-header {
    margin-bottom: 4rem;
}

[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered animation delays */
[data-scroll-reveal][data-delay="100"].revealed {
    transition-delay: 0.1s;
}

[data-scroll-reveal][data-delay="200"].revealed {
    transition-delay: 0.2s;
}

[data-scroll-reveal][data-delay="300"].revealed {
    transition-delay: 0.3s;
}

[data-scroll-reveal][data-delay="400"].revealed {
    transition-delay: 0.4s;
}

[data-scroll-reveal][data-delay="500"].revealed {
    transition-delay: 0.5s;
}

[data-scroll-reveal][data-delay="600"].revealed {
    transition-delay: 0.6s;
}

[data-scroll-reveal][data-delay="700"].revealed {
    transition-delay: 0.7s;
}

[data-scroll-reveal][data-delay="800"].revealed {
    transition-delay: 0.8s;
}

[data-scroll-reveal][data-delay="900"].revealed {
    transition-delay: 0.9s;
}

/* ========================================== */
/* 🎴 HOLOGRAM CARDS */
/* ========================================== */

.hologram-card {
    position: relative;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-lift:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 200, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 200, 255, 0.3);
}

.card-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.hologram-card:hover .card-glow-effect {
    opacity: 1;
    animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.card-header-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background: rgba(0, 200, 255, 0.1);
}

.card-header-icon.neon-blue {
    color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 200, 255, 0.5);
}

.card-header-icon.neon-orange {
    color: var(--neon-orange);
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.5);
}

.card-header-icon.neon-purple {
    color: var(--neon-purple);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.5);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.card-features li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.card-features li i {
    margin-right: 0.75rem;
}

.featured-card {
    border-color: rgba(255, 140, 0, 0.5);
    background: rgba(255, 140, 0, 0.05);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-purple));
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.card-footer-badge {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.badge-glow {
    padding: 0.5rem 1.25rem;
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================== */
/* ⚙️ FEATURE MODULES */
/* ========================================== */

.glass-panel-sci-fi {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.glass-panel-sci-fi:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 200, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 200, 255, 0.2);
}

.module-glow-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(0, 200, 255, 0.2) 50%, 
        transparent 100%);
}

.glass-panel-sci-fi:hover .module-glow-border {
    opacity: 1;
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.module-icon-wrapper {
    margin-bottom: 1.5rem;
}

.module-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 12px;
    background: rgba(0, 200, 255, 0.1);
}

.module-icon.neon-blue {
    color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.4);
}

.module-icon.neon-orange {
    color: var(--neon-orange);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
}

.module-icon.neon-purple {
    color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
}

.module-icon.neon-green {
    color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.module-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.module-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* ========================================== */
/* 🎬 SHOWCASE SECTION */
/* ========================================== */

.showcase-section {
    padding: 8rem 0;
    background: radial-gradient(ellipse at center, rgba(157, 78, 221, 0.1) 0%, transparent 60%);
}

.showcase-3d-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.financial-orb {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbPulse 4s ease-in-out infinite;
    box-shadow: 0 0 80px var(--neon-purple), 0 0 120px var(--neon-purple);
}

@keyframes orbPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hud-interface-mockup {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hud-panel {
    position: absolute;
    padding: 1rem 1.5rem;
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    animation: hudFloat 3s ease-in-out infinite;
}

.hud-panel.panel-top-left {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hud-panel.panel-top-right {
    top: 10%;
    right: 5%;
    animation-delay: 0.75s;
}

.hud-panel.panel-bottom-left {
    bottom: 10%;
    left: 5%;
    animation-delay: 1.5s;
}

.hud-panel.panel-bottom-right {
    bottom: 10%;
    right: 5%;
    animation-delay: 2.25s;
}

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

.panel-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.panel-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.panel-value.neon-green {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.panel-value.neon-blue {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.panel-value.neon-orange {
    color: var(--neon-orange);
    text-shadow: 0 0 10px var(--neon-orange);
}

.panel-value.neon-purple {
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple);
}

.panel-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neon-green);
}

.indicator-pulse {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.orbit-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orbit-particle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--neon-blue);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    box-shadow: 0 0 15px var(--neon-blue);
    animation: orbit 8s linear infinite;
    transform-origin: 0 0;
    transform: rotate(var(--orbit-angle)) translateX(250px);
}

@keyframes orbit {
    from { transform: rotate(var(--orbit-angle)) translateX(250px) rotate(0deg); }
    to { transform: rotate(calc(var(--orbit-angle) + 360deg)) translateX(250px) rotate(360deg); }
}

/* ========================================== */
/* 🛸 TIMELINE SECTION */
/* ========================================== */

.timeline-section {
    padding: 6rem 0;
}

.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--neon-blue) 10%, 
        var(--neon-purple) 50%, 
        var(--neon-orange) 90%, 
        transparent 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.timeline-item-right {
    flex-direction: row-reverse;
}

.timeline-item-right .timeline-content {
    text-align: right;
}

.timeline-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.node-pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 200, 255, 0.2);
    animation: nodePulse 2s ease-out infinite;
}

@keyframes nodePulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.node-icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--space-bg);
    border: 3px solid;
    border-radius: 50%;
    z-index: 2;
}

.node-icon.neon-blue {
    color: var(--neon-blue);
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px var(--neon-blue);
}

.node-icon.neon-orange {
    color: var(--neon-orange);
    border-color: var(--neon-orange);
    box-shadow: 0 0 30px var(--neon-orange);
}

.node-icon.neon-green {
    color: var(--neon-green);
    border-color: var(--neon-green);
    box-shadow: 0 0 30px var(--neon-green);
}

.node-icon.neon-purple {
    color: var(--neon-purple);
    border-color: var(--neon-purple);
    box-shadow: 0 0 30px var(--neon-purple);
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    margin: 0 3rem;
    max-width: 45%;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.timeline-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================== */
/* 💎 PRICING SECTION */
/* ========================================== */

.pricing-section {
    padding: 6rem 0;
    background: radial-gradient(ellipse at center, rgba(0, 200, 255, 0.05) 0%, transparent 60%);
}

.pricing-section .row {
    display: flex;
    flex-wrap: wrap;
}

.pricing-section .row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

.pricing-card {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 200, 255, 0.3);
}

.pricing-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pricing-card:hover .pricing-glow {
    opacity: 1;
    animation: rotateGlow 10s linear infinite;
}

.featured-pricing {
    border-color: rgba(255, 140, 0, 0.5);
    background: rgba(255, 140, 0, 0.05);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-purple));
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.5);
}

.pricing-header {
    padding: 2rem 0;
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border-radius: 50%;
    background: rgba(0, 200, 255, 0.1);
    margin: 0 auto;
}

.pricing-icon.neon-blue {
    color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 200, 255, 0.5);
}

.pricing-icon.neon-orange {
    color: var(--neon-orange);
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.5);
}

.pricing-icon.neon-purple {
    color: var(--neon-purple);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.5);
}

.pricing-price {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0 0.25rem;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.amount-custom {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-features {
    list-style: none;
    padding: 2rem 0;
    margin: 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

.pricing-features li i {
    margin-right: 0.75rem;
    font-size: 1rem;
}

/* ========================================== */
/* 🌟 TESTIMONIAL SECTION */
/* ========================================== */

.testimonial-section {
    padding: 6rem 0;
}

.testimonial-card {
    text-align: left;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 20px 60px rgba(0, 200, 255, 0.2);
}

.testimonial-quote {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2rem;
}

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

.author-avatar {
    position: relative;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: avatarGlow 2s ease-in-out infinite;
}

.avatar-glow.neon-blue {
    background: radial-gradient(circle, rgba(0, 200, 255, 0.3) 0%, transparent 70%);
}

.avatar-glow.neon-orange {
    background: radial-gradient(circle, rgba(255, 140, 0, 0.3) 0%, transparent 70%);
}

.avatar-glow.neon-purple {
    background: radial-gradient(circle, rgba(157, 78, 221, 0.3) 0%, transparent 70%);
}

@keyframes avatarGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.author-avatar img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(0, 200, 255, 0.3);
    z-index: 2;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.author-title {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.trust-badges-wrapper {
    margin-top: 4rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 150px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 200, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 200, 255, 0.2);
}

.badge-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    background: rgba(0, 200, 255, 0.1);
}

.badge-icon.neon-blue {
    color: var(--neon-blue);
}

.badge-icon.neon-green {
    color: var(--neon-green);
}

.badge-icon.neon-orange {
    color: var(--neon-orange);
}

.badge-icon.neon-purple {
    color: var(--neon-purple);
}

.trust-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
}

/* ========================================== */
/* ❓ FAQ SECTION */
/* ========================================== */

.faq-section {
    padding: 6rem 0;
    background: radial-gradient(ellipse at center, rgba(157, 78, 221, 0.05) 0%, transparent 60%);
}

.faq-wrapper {
    max-width: 100%;
}

/* ========================================== */
/* ❓ FAQ SECTION STYLING */
/* ========================================== */

.faq-item-premium {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-item-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0%;
    background: linear-gradient(180deg, #9D4EDD 0%, #00C8FF 100%);
    transition: height 0.4s ease;
}

.faq-item-premium:hover {
    transform: translateX(8px);
    border-color: rgba(157, 78, 221, 0.4);
    box-shadow: 0 8px 32px rgba(157, 78, 221, 0.15);
}

.faq-item-premium:hover::before {
    height: 100%;
}

.faq-item-premium.active {
    border-color: rgba(157, 78, 221, 0.5);
    background: rgba(10, 14, 39, 0.8);
    box-shadow: 0 12px 40px rgba(157, 78, 221, 0.2);
}

.faq-item-premium.active::before {
    height: 100%;
}

.faq-question {
    cursor: pointer;
    user-select: none;
}

.faq-question-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
}

.faq-item-premium.active .faq-question-header {
    padding-bottom: 1rem;
}

.faq-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon-wrapper i {
    font-size: 1.25rem;
    color: #00C8FF;
}

.faq-icon-wrapper.orange {
    background: rgba(255, 140, 0, 0.1);
    border-color: rgba(255, 140, 0, 0.3);
}

.faq-icon-wrapper.orange i {
    color: #FF8C00;
}

.faq-icon-wrapper.green {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
}

.faq-icon-wrapper.green i {
    color: #00FF88;
}

.faq-icon-wrapper.purple {
    background: rgba(157, 78, 221, 0.1);
    border-color: rgba(157, 78, 221, 0.3);
}

.faq-icon-wrapper.purple i {
    color: #9D4EDD;
}

.faq-item-premium:hover .faq-icon-wrapper {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.3);
}

.faq-item-premium.active .faq-icon-wrapper {
    transform: scale(1.1);
}

.faq-question-text {
    flex: 1;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-toggle i {
    color: #00C8FF;
    font-size: 0.875rem;
    transition: transform 0.4s ease;
}

.faq-item-premium.active .faq-toggle {
    background: rgba(0, 200, 255, 0.15);
    border-color: rgba(0, 200, 255, 0.3);
    transform: rotate(180deg);
}

.faq-item-premium.active .faq-toggle i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-premium.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem 5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-answer-content p {
    margin: 0;
}

/* Mobile adjustments for FAQ */
@media (max-width: 767px) {
    .faq-item-premium {
        margin-bottom: 1rem;
    }
    
    .faq-question-header {
        padding: 1.25rem 1.5rem;
        gap: 0.75rem;
    }
    
    .faq-icon-wrapper {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .faq-icon-wrapper i {
        font-size: 1rem;
    }
    
    .faq-question-text {
        font-size: 0.95rem;
    }
    
    .faq-toggle {
        width: 28px;
        height: 28px;
    }
    
    .faq-toggle i {
        font-size: 0.75rem;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem 1.25rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .faq-item-premium:hover {
        transform: translateX(4px);
    }
}

/* ========================================== */
/* 🚀 FINAL CTA SECTION */
/* ========================================== */

.cta-final-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    overflow: hidden;
    background: radial-gradient(ellipse at top, rgba(157, 78, 221, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(0, 200, 255, 0.2) 0%, transparent 50%);
}

.cta-nebula-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 50%, rgba(0, 200, 255, 0.1) 0%, transparent 50%);
    animation: nebulaPulse 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes nebulaPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.cta-light-beams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.light-beam {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--neon-blue) 50%, transparent 100%);
    animation: beamMove 4s ease-in-out infinite;
}

.light-beam.beam-1 {
    left: 20%;
    animation-delay: 0s;
}

.light-beam.beam-2 {
    left: 50%;
    animation-delay: 1.3s;
    background: linear-gradient(180deg, transparent 0%, var(--neon-orange) 50%, transparent 100%);
}

.light-beam.beam-3 {
    left: 80%;
    animation-delay: 2.6s;
    background: linear-gradient(180deg, transparent 0%, var(--neon-purple) 50%, transparent 100%);
}

@keyframes beamMove {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 0.8; transform: translateY(-50px); }
}

.cta-content-wrapper {
    position: relative;
    z-index: 10;
}

.cta-mega-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-buttons-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.cta-trust-indicators {
    margin-top: 3rem;
}

.trust-indicator {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.cta-quick-access {
    max-width: 1200px;
    margin: 0 auto;
}

.quick-access-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    min-height: 150px;
}

.quick-access-btn:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(0, 200, 255, 0.5);
    box-shadow: 0 20px 50px rgba(0, 200, 255, 0.3);
}

.quick-access-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    background: rgba(0, 200, 255, 0.1);
}

.quick-access-icon.neon-blue {
    color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 200, 255, 0.4);
}

.quick-access-icon.neon-orange {
    color: var(--neon-orange);
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.4);
}

.quick-access-icon.neon-purple {
    color: var(--neon-purple);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.4);
}

.quick-access-icon.neon-green {
    color: var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

.quick-access-btn span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cta-floating-particles .floating-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--neon-blue);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: floatParticle 5s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 15px var(--neon-blue);
    z-index: 5;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100px) translateX(50px);
        opacity: 1;
    }
}

/* ========================================== */
/* 📱 RESPONSIVE DESIGN */
/* ========================================== */

@media (max-width: 991px) {
    .hero-spaceship {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-text-col,
    .hero-visual-col {
        padding: 1rem;
    }
    
    .hero-mega-title {
        font-size: clamp(2rem, 8vw, 3rem);
        text-align: center;
    }
    
    .hero-tagline {
        font-size: clamp(1rem, 4vw, 1.5rem);
        text-align: center;
    }
    
    .hero-subheadline {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        text-align: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .btn-hero-primary {
        padding: 0.75rem 1.75rem;
        font-size: 0.9rem;
    }
    
    .hero-hologram-container {
        height: 400px;
    }
    
    .hud-ring.ring-1 {
        width: 200px;
        height: 200px;
    }
    
    .hud-ring.ring-2 {
        width: 280px;
        height: 280px;
    }
    
    .hud-ring.ring-3 {
        width: 360px;
        height: 360px;
    }
    
    .ui-shard {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    
    .timeline-line {
        left: 30px;
        transform: none;
    }
    
    .timeline-item,
    .timeline-item-right {
        flex-direction: row;
        padding-left: 80px;
    }
    
    .timeline-node {
        left: 0;
        transform: none;
    }
    
    .timeline-content {
        max-width: 100%;
        margin: 0;
        text-align: left;
    }
    
    .showcase-3d-wrapper {
        height: 400px;
    }
    
    .hud-panel {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .panel-value {
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .section-spaceship {
        padding: 3rem 0;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-spaceship {
        width: 100%;
        justify-content: center;
    }
    
    /* Prevent horizontal scroll on all mobile elements */
    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    /* Use var-based viewport calc; avoid forcing 100vh which is buggy on mobile */
    
    .hero-content-wrapper {
        /* gunakan layout hero baru yang sudah center */
        min-height: calc(var(--hero-vh, 100dvh) - var(--navbar-h, 70px));
        padding: 6rem 0 5rem;
        overflow: visible;
    }
    
    .hero-content-wrapper .row {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    
    .hero-text-col,
    .hero-visual-col {
        height: auto;
        padding: 0 0.6rem;
    }
    
    .hero-text-col {
        flex: 0 0 auto;
        order: 2;
    }
    
    .hero-visual-col {
        flex: 0 0 auto;
        order: 1;
    }
    
    .hero-mega-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        line-height: 1.15;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .hero-tagline {
        font-size: clamp(1rem, 4vw, 1.3rem);
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .hero-subheadline {
        font-size: clamp(0.85rem, 2.5vw, 1rem);
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .hero-visual-col {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem 1rem;
        margin-bottom: 2rem;
        overflow: visible;
    }
    
    .hero-image-container { 
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        overflow: visible;
    }
    
    .hero-image { 
        max-width: 95%;
        width: 100%;
        height: auto;
    }

    .hero-text-block { 
        max-width: 100%;
        text-align: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .btn-hero-primary {
        padding: 0.85rem 1.75rem;
        font-size: 0.9rem;
    }
    
    .spaceship-landing-page,
    section,
    .container,
    .container-fluid,
    .row {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    .holographic-ticker {
        overflow-x: hidden;
    }
    
    /* Remove duplicate styles - already defined above */
    
    .hero-hologram-container {
        height: 300px;
        margin-top: 3rem;
        /* Disable parallax movement on mobile */
        transform: none !important;
    }
    
    /* Disable glitch animation on mobile for better performance */
    .glitch-text::before,
    .glitch-text::after {
        display: none;
    }
    
    /* Reduce animation intensity for mobile */
    .hud-ring,
    .energy-core,
    .data-particle,
    .ui-shard {
        animation-duration: 4s !important;
        transform: none !important;
    }
    
    /* Stop floating animations on mobile */
    .hologram-card,
    .glass-panel-sci-fi {
        animation: none !important;
    }
    
    /* Stabilize hero content */
    .hero-content {
        position: relative;
        z-index: 10;
    }
    
    .hero-mega-title,
    .hero-description {
        animation: none !important;
        transform: none !important;
    }
    
    /* Stop rotating elements */
    .financial-orb,
    .orbit-particle {
        animation: none !important;
    }
    
    /* Reduce scroll reveal animation */
    [data-scroll-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .cta-buttons-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-access-btn {
        min-height: 120px;
    }
}

@media (max-width: 575px) {
    .hero-spaceship {
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
    }
    
    .hero-content-wrapper {
        padding-top: 55px; /* reduced from 70px for smaller mobile navbar */
    }
    
    .hero-text-col,
    .hero-visual-col {
        padding: 0.4rem 0.55rem;
    }
    
    .hero-mega-title {
        font-size: clamp(1.12rem, 5.2vw, 1.45rem);
        line-height: 1.1;
        margin-bottom: 0.4rem;
        letter-spacing: -0.4px;
    }
    
    .hero-subheadline {
        font-size: clamp(0.66rem, 2.6vw, 0.75rem);
        margin-bottom: 0.45rem;
    }
    
    /* Smaller screens: keep mockup visible with better sizing */
    .hero-visual-col { 
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        width: 100% !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 1rem 0 !important;
        min-height: 250px;
    }
    .hero-mockup-image { 
        max-width: 75% !important;
        width: 240px !important;
        max-height: 320px !important;
        opacity: 1 !important;
        display: block !important;
    }
    .hero-text-block { max-width: 100%; }
    
    .btn-hero-primary {
        padding: 0.6rem 1.25rem;
        font-size: 0.7rem;
        gap: 0.5rem;
    }
    
    .btn-hero-primary .btn-icon {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hologram-card,
    .glass-panel-sci-fi {
        padding: 1.5rem;
    }
    
    .card-header-icon,
    .module-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .hud-panel {
        display: none;
    }
    
    .showcase-3d-wrapper {
        height: 250px;
    }
    
    .financial-orb {
        width: 200px;
        height: 200px;
    }
}

/* ========================================== */
/* 🎭 UTILITY CLASSES */
/* ========================================== */

.neon-blue {
    color: var(--neon-blue);
}

.neon-orange {
    color: var(--neon-orange);
}

.neon-purple {
    color: var(--neon-purple);
}

.neon-green {
    color: var(--neon-green);
}

.cyber-text {
    color: var(--text-secondary);
}

.smooth-scroll {
    scroll-behavior: smooth;
}

/* ========================================== */
/* ⚡ PERFORMANCE OPTIMIZATIONS */
/* ========================================== */

.hero-hologram-container,
.showcase-3d-wrapper,
.financial-orb,
.hud-ring,
.energy-core {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 600px;
}

.hero-stats {
    max-width: 400px;
}

.visualization-container {
    min-height: 500px;
}

.mini-charts canvas {
    width: 100%;
    height: auto;
}

.activity-item {
    transition: all var(--transition-normal);
}

.activity-item:hover {
    transform: translateX(8px);
    background: var(--glass-bg-light);
}

.activity-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.feature-card {
    transition: all var(--transition-normal);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-floating);
}

.feature-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 0.5rem;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
}

.cta-container {
    background: linear-gradient(135deg, var(--glass-bg) 0%, var(--glass-bg-dark) 100%);
    border: 2px solid var(--glass-border-active);
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.quick-access-grid .sci-fi-btn {
    padding: 1.5rem 1rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.quick-access-grid .sci-fi-btn .btn-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    margin-right: 0;
}

.demo-highlight {
    position: relative;
    overflow: hidden;
    animation: glowPulse 3s ease-in-out infinite;
}

.demo-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,140,0,0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes glowPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255,140,0,0.3), 0 0 40px rgba(0,191,255,0.2); 
    }
    50% { 
        box-shadow: 0 0 30px rgba(255,140,0,0.5), 0 0 60px rgba(0,191,255,0.3); 
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ========================================== */
/* 🎨 UTILITY CLASSES */
/* ========================================== */

/* Icon Gold Style for premium features */
.icon-gold {
    color: #FFD700 !important;
    border-color: #FFD700 !important;
    box-shadow: 0 0 30px #FFD700 !important;
}

/* Demo Highlight Banner */
.demo-highlight-banner {
    background: linear-gradient(135deg, rgba(255,140,0,0.15), rgba(0,191,255,0.15));
    border: 2px solid rgba(255,140,0,0.5);
}

/* Lower opacity utility */
.opacity-70 {
    opacity: 0.7;
}

/* ========================================== */
/* 🚀 HERO SECTION REFACTORED - NEW STYLES */
/* ========================================== */

/* Hero Badge Pill */
.hero-badge {
    animation: fadeInDown 0.8s ease-out;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.badge-glow {
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.3);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Buttons Refactored */
.hero-cta-group {
    display: inline-flex;
}

.btn-hero-primary,
.btn-hero-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    color: #ffffff;
    box-shadow: 0 0 30px rgba(0, 200, 255, 0.4), 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 50px rgba(0, 200, 255, 0.6), 0 12px 30px rgba(0, 0, 0, 0.4);
}

.btn-hero-secondary {
    background: rgba(255, 140, 0, 0.1);
    color: var(--neon-orange);
    border-color: var(--neon-orange);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 140, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.5), 0 5px 20px rgba(0, 0, 0, 0.3);
}

.btn-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero-primary:hover .btn-glow-effect,
.btn-hero-secondary:hover .btn-glow-effect {
    width: 300px;
    height: 300px;
}

.btn-icon-left {
    font-size: 1.2rem;
}

/* Trust Indicators */
.hero-trust-indicators {
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.trust-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.trust-item:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.trust-text {
    font-weight: 500;
}

/* Hero Mockup Container Refactored */
.hero-mockup-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatAnimation 6s ease-in-out infinite;
}

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

/* Floating UI Elements */
.floating-ui-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.glass-card-mini {
    animation: fadeInScale 0.8s ease-out backwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.card-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0.6s;
}

.card-2 {
    top: 15%;
    right: 5%;
    animation-delay: 0.7s;
}

.card-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 0.8s;
}

.card-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.card-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.card-value {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Main Mockup */
.hero-mockup-main {
    position: relative;
    z-index: 2;
    max-width: 500px;
    width: 100%;
}

.mockup-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
}

.hero-mockup-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
    animation: imageReveal 1.2s ease-out;
}

@keyframes imageReveal {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--neon-blue);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
    background: var(--neon-orange);
}

.particle-3 {
    bottom: 25%;
    right: 15%;
    animation-delay: 4s;
    background: var(--neon-purple);
}

.particle-4 {
    top: 40%;
    left: 10%;
    animation-delay: 6s;
    background: var(--neon-green);
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.4;
    }
    25% {
        transform: translate(10px, -15px);
        opacity: 0.8;
    }
    50% {
        transform: translate(-5px, -25px);
        opacity: 0.6;
    }
    75% {
        transform: translate(-15px, -10px);
        opacity: 0.8;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    color: var(--neon-blue);
    transform: translateY(5px);
}

.scroll-icon {
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* ========================================== */
/* 📱 RESPONSIVE - MOBILE FIRST */
/* ========================================== */

/* Tablets Portrait (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-spaceship {
        min-height: 100dvh;
        height: 100dvh;
    }
    
    .hero-content-wrapper {
        padding: var(--navbar-h, 70px) 0 0 0;
    }
    
    .hero-text-col,
    .hero-visual-col {
        padding: 1.5rem 1rem;
    }
    
    .hero-mega-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .floating-card {
        padding: 0.75rem 1rem;
    }
}

/* Tablets Landscape (1024px - 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
    .hero-spaceship {
        min-height: 100dvh;
        height: 100dvh;
    }
    
    .hero-content-wrapper {
        padding: var(--navbar-h, 70px) 0 0 0;
    }
    
    .hero-text-block {
        max-width: 600px;
    }
}

/* Mobile Phones (up to 768px) */
@media (max-width: 768px) {
    .hero-spaceship {
        min-height: 100dvh;
    }
    
    .hero-content-wrapper {
        padding: var(--navbar-h, 70px) 0 0 0 !important;
        min-height: calc(var(--hero-vh, 100dvh) - var(--navbar-h, 70px));
    }
    .hero-text-col,
    .hero-visual-col {
        padding: 1rem;
        min-height: auto;
    }
    
    .hero-text-block {
        text-align: center;
        padding: 0.5rem;
    }
    
    .hero-mega-title {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-subheadline {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta-group {
        width: 100%;
        justify-content: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 320px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Mockup Mobile */
    .hero-mockup-main {
        max-width: 320px;
    }
    
    .floating-card {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }
    
    .card-icon {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
    
    .card-value {
        font-size: 1rem;
    }
    
    .card-label {
        font-size: 0.65rem;
    }
    
    .card-1 {
        top: 5%;
        left: 2%;
    }
    
    .card-2 {
        top: 10%;
        right: 2%;
    }
    
    .card-3 {
        bottom: 10%;
        left: 5%;
    }
    
    .scroll-indicator {
        bottom: 1rem;
    }
    
    .scroll-text {
        font-size: 0.75rem;
    }
}

/* Extra Small Mobile (up to 576px) */
@media (max-width: 576px) {
    .hero-spaceship {
        min-height: 100dvh;
    }
    
    .hero-content-wrapper {
        padding: var(--navbar-h, 70px) 0 0 0 !important;
        min-height: calc(var(--hero-vh, 100dvh) - var(--navbar-h, 70px));
    }
    
    .hero-text-col {
        order: 2;
        margin-top: 1rem;
    }
    
    .hero-visual-col {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .hero-badge .badge-pill {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-icon-left {
        font-size: 1.1rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-particles .particle {
        width: 6px;
        height: 6px;
    }
}

/* Mobile Landscape Orientation */
@media (max-width: 896px) and (orientation: landscape) {
    .hero-spaceship {
        min-height: 100dvh;
        height: 100dvh;
    }
    
    .hero-content-wrapper {
        padding: var(--navbar-h, 70px) 0 0 0 !important;
        overflow-y: auto;
    }
    
    .hero-text-col,
    .hero-visual-col {
        padding: 0.5rem 1rem;
        min-height: auto;
    }
    
    .hero-text-block {
        padding: 0.25rem;
    }
    
    .hero-badge {
        margin-bottom: 0.5rem !important;
    }
    
    .hero-mega-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 0.75rem !important;
    }
    
    .hero-subheadline {
        font-size: 0.85rem;
        margin-bottom: 1rem !important;
    }
    
    .btn-hero-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .scroll-indicator {
        display: none; /* Hide on landscape mobile for space */
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-mockup-main {
        max-width: 280px;
    }
}

/* Tablet Responsive (existing) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-mega-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .hero-mockup-main {
        max-width: 420px;
    }
    
    .card-1 {
        top: 15%;
        left: 8%;
    }
    
    .card-2 {
        top: 20%;
        right: 8%;
    }
    
    .card-3 {
        bottom: 20%;
        left: 12%;
    }
}

/* iPad Pro & Large Tablets Portrait (1024px - 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
    .hero-spaceship {
        min-height: 100dvh;
        height: 100dvh;
    }
    
    .hero-content-wrapper {
        padding: 7rem 0 5rem;
    }
    
    .hero-mega-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
}

/* iPad Pro & Large Tablets Landscape */
@media (min-width: 1024px) and (orientation: landscape) {
    .hero-spaceship {
        min-height: 100dvh;
        height: 100dvh;
    }
    
    .hero-content-wrapper {
        padding: 7rem 0 5rem;
    }
}

/* Desktop Large (1920px+) */
@media (min-width: 1920px) {
    .hero-content-wrapper .container-fluid {
        max-width: 1800px;
        margin: 0 auto;
    }
    
    .hero-mega-title {
        font-size: 4rem;
    }
    
    .hero-subheadline {
        font-size: 1.3rem;
    }
}

/* Ultra-wide & 4K */
@media (min-width: 2560px) {
    .hero-content-wrapper .container-fluid {
        max-width: 2200px;
    }
}

/* ========================================== */
/* 📱 MOBILE OPTIMIZATIONS */
/* ========================================== */

/* Mobile Quick Menu */
.mobile-quick-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.95), rgba(10, 14, 39, 0.98));
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0, 200, 255, 0.2);
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 768px) {
    /* Hide quick menu when sticky CTA is visible */
    .mobile-sticky-cta.visible ~ .mobile-quick-menu {
        display: none;
    }
}

.quick-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.quick-menu-item:hover,
.quick-menu-item:focus {
    color: #00C8FF;
    background: rgba(0, 200, 255, 0.05);
    transform: translateY(-2px);
}

.quick-menu-item.highlight {
    color: #FF8C00;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 8px;
    margin: 0 4px;
}

.quick-menu-item.highlight:hover {
    color: #FFA500;
    background: rgba(255, 140, 0, 0.2);
}

.quick-menu-item i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.quick-menu-item:hover i {
    transform: scale(1.15);
}

.quick-menu-item.highlight i {
    animation: bounce 2s infinite;
}

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

/* Safe area for iPhone notch */
@supports (padding: env(safe-area-inset-bottom)) {
    .mobile-quick-menu {
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
    }
    
    .mobile-sticky-cta {
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
    }
}

/* Prevent body scroll jump when sticky CTA appears */
body.has-mobile-cta {
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 64px; /* Reserve space for quick menu */
    }
}

/* Smooth scroll behavior for mobile navigation */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    .mobile-sticky-cta,
    .quick-menu-item {
        transition: none;
    }
}

/* =========================================================
   MOBILE LANDSCAPE FIX — Hero too close to navbar
   ========================================================= */

@media (orientation: landscape) and (max-height: 480px) {

    /* Turunkan konten hero */
    .hero-content-wrapper {
        padding-top: 80px !important; /* default: terlalu kecil → kita tambah */
        padding-bottom: 40px !important;
        min-height: auto !important;
        height: auto !important;
    }

    /* Pastikan text tidak nempel bagian atas */
    .hero-text-block {
        margin-top: 30px !important;
    }

    /* Hilangkan force align ke atas dari mobile portrait */
    .hero-content-wrapper .container-fluid,
    .hero-content-wrapper .row,
    .hero-text-col {
        align-items: center !important;
        justify-content: flex-start !important;
    }

    /* Biar hero container lebih fleksibel */
    .hero-spaceship {
        min-height: auto !important;
        height: auto !important;
        padding-top: 0 !important;
    }
}


/* ========================================== */
/* 📄 FOOTER SECTION - Removed (using layout footer) */
/* ========================================== */

/* ========================================== */
/* 🖥️ LARGE SCREENS (1400px+) */
/* ========================================== */

@media (min-width: 1400px) {
    /* Hero Section - Maximize space utilization */
    .hero-content-wrapper .container-fluid {
        max-width: 1600px;
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }
    
    .hero-text-col {
        padding-right: 3rem;
    }
    
    .hero-visual-col {
        padding-left: 2rem;
        overflow: visible;
    }
    
    /* Typography - Larger, more impactful */
    .hero-mega-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        letter-spacing: -0.02em;
        margin-bottom: 1.5rem;
    }
    
    .hero-tagline {
        font-size: clamp(2rem, 3vw, 3rem);
        margin-bottom: 2rem;
    }
    
    .hero-subheadline {
        font-size: clamp(1.15rem, 1.5vw, 1.35rem);
        line-height: 1.7;
        margin-bottom: 3rem;
        max-width: 600px;
    }
    
    /* Text block spacing */
    .hero-text-block {
        max-width: 750px;
        padding-right: 2rem;
    }
    
    /* CTA Buttons - Larger and more prominent */
    .btn-hero-primary {
        padding: 1.15rem 2.75rem;
        font-size: 1.1rem;
        gap: 0.85rem;
    }
    
    .btn-hero-primary .btn-icon-left {
        font-size: 1.5rem;
    }
    
    /* Hero Image - Larger display without crop */
    .hero-image-container {
        padding: 3rem;
    }
    
    .hero-image {
        max-width: 800px;
        filter: drop-shadow(0 30px 80px rgba(0, 200, 255, 0.4));
    }
    
    .hero-image:hover {
        transform: scale(1.02);
    }
    
    /* Section spacing */
    .section-spaceship {
        padding: 6rem 0;
    }
    
    /* Section headers */
    .section-title {
        font-size: clamp(2.5rem, 4vw, 4rem);
    }
    
    .section-subtitle {
        font-size: clamp(1.15rem, 1.5vw, 1.4rem);
        max-width: 850px;
    }
    
    .section-overline {
        font-size: 1rem;
        padding: 0.65rem 2rem;
    }
    
    /* Feature cards - Better spacing */
    .holographic-card,
    .glass-card {
        padding: 2.5rem;
    }
    
    .feature-module {
        padding: 2.5rem;
    }
    
    /* Pricing cards - More spacious */
    .pricing-card {
        padding: 3rem 2.5rem;
    }
    
    .pricing-card .card-header {
        padding: 2rem 0;
    }
    
    /* Timeline items */
    .timeline-item {
        padding: 2.5rem 3rem;
    }
    
    /* FAQ section */
    .accordion-item {
        margin-bottom: 1.5rem;
    }
    
    .accordion-button {
        padding: 1.75rem 2rem;
        font-size: 1.15rem;
    }
    
    .accordion-body {
        padding: 1.75rem 2rem;
        font-size: 1.05rem;
    }
    
    /* CTA Final section */
    .cta-content-wrapper {
        max-width: 1400px;
    }
    
    .cta-main h2 {
        font-size: clamp(2.5rem, 4vw, 4rem);
    }
    
    .cta-main p {
        font-size: clamp(1.15rem, 1.5vw, 1.35rem);
        max-width: 800px;
    }
}

/* ========================================== */
/* 🖥️ EXTRA LARGE SCREENS (1600px+) */
/* ========================================== */

@media (min-width: 1600px) {
    /* Maximum content width */
    .hero-content-wrapper .container-fluid {
        max-width: 1800px;
    }
    
    /* Hero text even larger */
    .hero-mega-title {
        font-size: 4.5rem;
    }
    
    .hero-tagline {
        font-size: 3.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.45rem;
        max-width: 650px;
    }
    
    /* Hero image maximum size without crop */
    .hero-image-container {
        padding: 4rem;
    }
    
    .hero-image {
        max-width: 900px;
    }
    
    /* Content containers */
    .container-fluid {
        max-width: 1800px;
    }
    
    /* Section titles */
    .section-title {
        font-size: 4.5rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
}

/* ========================================== */
/* 🖥️ ULTRA WIDE SCREENS (1920px+) */
/* ========================================== */

@media (min-width: 1920px) {
    /* Hero section - full utilization */
    .hero-content-wrapper .container-fluid {
        max-width: 2000px;
        padding-left: 5rem !important;
        padding-right: 5rem !important;
    }
    
    .hero-text-col {
        padding-right: 4rem;
    }
    
    .hero-visual-col {
        padding-left: 3rem;
        overflow: visible;
    }
    
    /* Maximum typography sizes */
    .hero-mega-title {
        font-size: 5rem;
        margin-bottom: 2rem;
    }
    
    .hero-tagline {
        font-size: 4rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.5rem;
        max-width: 700px;
        margin-bottom: 3.5rem;
    }
    
    /* CTA buttons - premium size */
    .btn-hero-primary {
        padding: 1.35rem 3.25rem;
        font-size: 1.2rem;
    }
    
    /* Hero image - maximum display without crop */
    .hero-image-container {
        padding: 5rem;
    }
    
    .hero-image {
        max-width: 1000px;
    }
    
    /* Global content container */
    .container-fluid {
        max-width: 2000px;
    }
    
    /* Section spacing */
    .section-spaceship {
        padding: 8rem 0;
    }
}

/* ========================================== */
/* 🎯 HERO BENEFITS LIST RESPONSIVE */
/* ========================================== */

.hero-benefits {
    animation: fadeInUp 0.8s ease-out;
}

.hero-benefits li {
    animation: slideInLeft 0.6s ease-out backwards;
}

.hero-benefits li:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-benefits li:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-benefits li:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero-benefits {
        font-size: 0.95rem !important;
        padding: 0 1rem !important;
    }
    
    .hero-benefits li {
        margin-bottom: 0.8rem !important;
        gap: 0.75rem !important;
    }
    
    .hero-benefits li span:first-child {
        font-size: 1.2rem !important;
        flex-shrink: 0;
    }
}

/* ========================================== */
/* 🎯 EARLY BIRD COUNTER ANIMATIONS */
/* ========================================== */

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
        color: #FF8C00;
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

#earlyBirdCount {
    display: inline-block;
    font-weight: 900;
    color: #FF8C00;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    min-width: 3ch;
    text-align: center;
}

.hero-badge strong {
    font-weight: 900;
}

/* Mobile notification positioning */
@media (max-width: 768px) {
    body > div[style*="position: fixed"][style*="bottom: 100px"] {
        bottom: 80px !important;
        right: 10px !important;
        left: 10px !important;
        max-width: none !important;
        font-size: 0.85rem !important;
    }
}

/* ========================================== */
/* 🎁 HERO BADGE CARD (CLICKABLE) */
/* ========================================== */

.hero-badge-card {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 140, 0, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer !important;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.15);
    animation: subtle-glow 3s ease-in-out infinite;
}

.hero-badge-card:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: rgba(255, 140, 0, 0.4);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.4), 0 4px 20px rgba(255, 140, 0, 0.2);
    cursor: pointer !important;
}

@keyframes subtle-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 140, 0, 0.15); }
    50% { box-shadow: 0 0 30px rgba(255, 140, 0, 0.25); }
}

.hero-badge-card:active {
    transform: translateY(0);
}

@keyframes subtle-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 140, 0, 0.15); }
    50% { box-shadow: 0 0 30px rgba(255, 140, 0, 0.25); }
}

.hero-badge-card .hero-badge {
    margin: 0;
}

.hero-badge-card .hero-badge {
    cursor: pointer !important;
    pointer-events: none;
}

.hero-badge-card .hero-terms {
    opacity: 0.9;
    cursor: pointer !important;
    pointer-events: none;
}

.hero-badge-card:hover .hero-terms {
    opacity: 1;
    color: #00C8FF;
}

@media (max-width: 768px) {
    .hero-badge-card {
        padding: 0.5rem 0.75rem;
        max-width: 95%;
        margin: 0 auto;
    }
    
    .hero-badge-card .hero-badge span {
        font-size: 0.65rem !important;
    }
    
    .hero-badge-card .hero-terms {
        font-size: 0.65rem !important;
    }
}
