@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ============================================
   BASE
   ============================================ */
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #020617;
    color: #e2e8f0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(6, 182, 212, 0.3);
    color: #fff;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0f172a; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #3b82f6, #06b6d4); border-radius: 4px; }

.font-display {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

/* ============================================
   SCROLL REVEAL SYSTEM
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

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

@keyframes pulse-glow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slide-in-right {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes border-glow {
    0%, 100% { border-color: rgba(59, 130, 246, 0.2); }
    50% { border-color: rgba(6, 182, 212, 0.4); }
}

@keyframes aurora {
    0% { transform: rotate(0deg) scale(1); opacity: 0.3; }
    33% { transform: rotate(120deg) scale(1.1); opacity: 0.5; }
    66% { transform: rotate(240deg) scale(0.9); opacity: 0.3; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.3; }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

@keyframes smoke-rise {
    0% { transform: translateY(0) scaleX(1); opacity: 0.6; }
    50% { transform: translateY(-60px) scaleX(1.5); opacity: 0.3; }
    100% { transform: translateY(-120px) scaleX(2); opacity: 0; }
}

@keyframes magic-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(6,182,212,0.1), 0 0 60px rgba(59,130,246,0.05); }
    50% { box-shadow: 0 0 40px rgba(6,182,212,0.2), 0 0 80px rgba(59,130,246,0.1), 0 0 120px rgba(6,182,212,0.05); }
}

@keyframes text-glow {
    0%, 100% { text-shadow: 0 0 10px rgba(6,182,212,0.3), 0 0 40px rgba(59,130,246,0.1); }
    50% { text-shadow: 0 0 20px rgba(6,182,212,0.5), 0 0 60px rgba(59,130,246,0.2), 0 0 100px rgba(6,182,212,0.1); }
}

@keyframes orbit {
    from { transform: rotate(0deg) translateX(120px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}

@keyframes orbit-reverse {
    from { transform: rotate(0deg) translateX(160px) rotate(0deg); }
    to { transform: rotate(-360deg) translateX(160px) rotate(360deg); }
}

@keyframes ripple {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(2.5); opacity: 0; }
}

@keyframes count-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes wave {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(1deg); }
    75% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes line-draw {
    from { stroke-dashoffset: 1000; }
    to { stroke-dashoffset: 0; }
}

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

@keyframes card-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-reverse { animation: float-reverse 7s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse-glow 4s ease-in-out infinite; }
.animate-shimmer {
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}
.animate-gradient {
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
}
.animate-spin-slow { animation: spin-slow 20s linear infinite; }
.animate-aurora { animation: aurora 20s linear infinite; }
.animate-magic-glow { animation: magic-glow 4s ease-in-out infinite; }
.animate-text-glow { animation: text-glow 3s ease-in-out infinite; }
.animate-wave { animation: wave 3s ease-in-out infinite; }

/* ============================================
   MAGICAL PARTICLE CANVAS
   ============================================ */
.particles-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* ============================================
   AURORA BACKGROUND
   ============================================ */
.aurora-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.aurora-beam {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: aurora 15s ease-in-out infinite;
    will-change: transform;
}

.aurora-beam-1 {
    top: -20%;
    left: -10%;
    background: radial-gradient(circle, rgba(59,130,246,0.4), transparent 70%);
    animation-delay: 0s;
}

.aurora-beam-2 {
    top: 10%;
    right: -15%;
    background: radial-gradient(circle, rgba(6,182,212,0.3), transparent 70%);
    animation-delay: -5s;
    animation-duration: 18s;
}

.aurora-beam-3 {
    bottom: -10%;
    left: 30%;
    background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 70%);
    animation-delay: -10s;
    animation-duration: 22s;
}

/* ============================================
   MAGICAL SPARKLES
   ============================================ */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #06b6d4;
    animation: sparkle 2s ease-in-out infinite;
    pointer-events: none;
}

.sparkle::before,
.sparkle::after {
    content: '';
    position: absolute;
    background: inherit;
    border-radius: 50%;
}

.sparkle::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sparkle::after {
    width: 2px;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ============================================
   SMOKE / MIST EFFECT
   ============================================ */
.magic-smoke {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6,182,212,0.15), transparent 70%);
    animation: smoke-rise 4s ease-out infinite;
    pointer-events: none;
}

/* ============================================
   GENIE LAMP ENHANCED
   ============================================ */
.lamp-container {
    position: relative;
}

.lamp-aura {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, rgba(59,130,246,0.06) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

.lamp-orbiting-particle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #06b6d4;
    box-shadow: 0 0 10px rgba(6,182,212,0.6);
}

.lamp-orbiting-particle:nth-child(1) { animation: orbit 8s linear infinite; }
.lamp-orbiting-particle:nth-child(2) { animation: orbit-reverse 12s linear infinite; opacity: 0.6; }
.lamp-orbiting-particle:nth-child(3) { animation: orbit 10s linear infinite reverse; animation-delay: -3s; opacity: 0.4; }

.lamp-ripple {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border: 1px solid rgba(6,182,212,0.3);
    border-radius: 50%;
    animation: ripple 3s ease-out infinite;
}

.lamp-ripple:nth-child(2) { animation-delay: 1s; }
.lamp-ripple:nth-child(3) { animation-delay: 2s; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background: linear-gradient(90deg, #1e40af, #0891b2, #1e40af);
    background-size: 200% 100%;
    animation: gradient-shift 6s ease infinite;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 51;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================
   DOMAIN TICKER
   ============================================ */
.ticker-wrap {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.ticker-wrap::before,
.ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.ticker-wrap::before {
    left: 0;
    background: linear-gradient(to right, #020617, transparent);
}

.ticker-wrap::after {
    right: 0;
    background: linear-gradient(to left, #020617, transparent);
}

.ticker-track {
    display: flex;
    gap: 2rem;
    animation: ticker 80s linear infinite;
    width: max-content;
    will-change: transform;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    transition: color 0.3s ease;
}

.ticker-item:hover {
    color: #06b6d4;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav-main {
    transition: all 0.3s ease;
}

.nav-main.scrolled {
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-link {
    position: relative;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    transition: width 0.3s ease;
    border-radius: 1px;
}

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

/* Mobile Menu */
.mobile-overlay {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-panel {
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-overlay.open .mobile-panel {
    transform: translateX(0);
}

/* ============================================
   GRADIENT TEXT
   ============================================ */
.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-shimmer {
    background: linear-gradient(90deg, #3b82f6, #06b6d4, #3b82f6, #06b6d4);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

.gradient-text-magic {
    background: linear-gradient(90deg, #3b82f6, #06b6d4, #a78bfa, #06b6d4, #3b82f6);
    background-size: 400% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 6s linear infinite;
}

/* ============================================
   BACKGROUND EFFECTS
   ============================================ */
.bg-noise::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    pointer-events: none;
    z-index: 1;
}

.bg-grid {
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.gradient-orb {
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform;
    pointer-events: none;
}

/* Enhanced mesh gradient background */
.bg-mesh {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(59,130,246,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(6,182,212,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, rgba(59,130,246,0.04) 0%, transparent 50%);
}

/* ============================================
   GLASSMORPHISM (ENHANCED)
   ============================================ */
.glass {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(59, 130, 246, 0.12);
}

.glass-card {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6,182,212,0.03), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.glass-card:hover::before {
    left: 100%;
}

.glass-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(59, 130, 246, 0.05),
                inset 0 1px 0 rgba(6,182,212,0.1);
}

/* Premium glass variant */
.glass-card-premium {
    background: linear-gradient(135deg, rgba(15,23,42,0.7), rgba(15,23,42,0.4));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(6,182,212,0.12);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6,182,212,0.4), transparent);
}

.glass-card-premium:hover {
    border-color: rgba(6,182,212,0.25);
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4),
                0 0 60px rgba(6,182,212,0.08);
}

/* ============================================
   BUTTONS (ENHANCED)
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2563eb, #0891b2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.35),
                0 0 60px rgba(6, 182, 212, 0.1);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary span, .btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,182,212,0.05), rgba(59,130,246,0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-secondary:hover {
    border-color: rgba(6, 182, 212, 0.5);
    color: #06b6d4;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(6,182,212,0.08);
}

.btn-secondary:hover::before {
    opacity: 1;
}

/* ============================================
   PREMIUM CARDS (ENHANCED)
   ============================================ */
.feature-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(6,182,212,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover {
    border-color: rgba(6, 182, 212, 0.2);
    background: rgba(15, 23, 42, 0.7);
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25),
                0 0 40px rgba(6,182,212,0.05);
}

.feature-card:hover::before {
    opacity: 1;
}

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

.feature-card:hover .icon-wrap {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(6,182,212,0.15);
}

.news-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.news-card:hover {
    border-color: rgba(6, 182, 212, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.news-card:hover::before {
    transform: scaleX(1);
}

/* ============================================
   FAQ ACCORDION (ENHANCED)
   ============================================ */
.faq-item {
    border: 1px solid rgba(59, 130, 246, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.3);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3b82f6, #06b6d4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.15);
}

.faq-item.open {
    border-color: rgba(6, 182, 212, 0.2);
    background: rgba(15, 23, 42, 0.5);
}

.faq-item.open::before {
    opacity: 1;
}

.faq-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    width: 100%;
    background: none;
    border: none;
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    transition: color 0.2s ease;
}

.faq-trigger:hover {
    color: #06b6d4;
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #64748b;
    background: rgba(59,130,246,0.06);
    border-radius: 8px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: #06b6d4;
    background: rgba(6,182,212,0.1);
}

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

.faq-item.open .faq-answer {
    max-height: 400px;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: #94a3b8;
    line-height: 1.7;
}

/* ============================================
   COMPARISON TABLE (ENHANCED)
   ============================================ */
.comparison-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(59, 130, 246, 0.08);
}

.comparison-table thead th {
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
}

.comparison-table tbody tr {
    transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(6, 182, 212, 0.03);
}

.comparison-table tbody tr:hover td:last-child {
    color: #22d3ee;
}

/* ============================================
   STEP CONNECTOR (ENHANCED)
   ============================================ */
.step-line {
    position: absolute;
    top: 2rem;
    left: calc(50% + 2rem);
    right: calc(-50% + 2rem);
    height: 2px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.3), rgba(6, 182, 212, 0.3));
    overflow: hidden;
}

.step-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6,182,212,0.8), transparent);
    animation: card-shimmer 3s linear infinite;
}

/* ============================================
   DOMAIN PILL (ENHANCED)
   ============================================ */
.domain-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #94a3b8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.domain-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,182,212,0.1), rgba(59,130,246,0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.domain-pill:hover {
    border-color: rgba(6, 182, 212, 0.4);
    color: #06b6d4;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(6,182,212,0.15);
}

.domain-pill:hover::before {
    opacity: 1;
}

/* ============================================
   ICON WRAPPER (ENHANCED)
   ============================================ */
.icon-wrap {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(6, 182, 212, 0.15));
    border: 1px solid rgba(59, 130, 246, 0.1);
    color: #06b6d4;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.icon-wrap::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(59,130,246,0.3), rgba(6,182,212,0.3));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}

.icon-wrap:hover::after,
.feature-card:hover .icon-wrap::after {
    opacity: 1;
}

.icon-wrap-lg {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 16px;
}

/* ============================================
   SECTION DIVIDER (ENHANCED)
   ============================================ */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), rgba(6,182,212,0.15), transparent);
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(6,182,212,0.2), transparent);
    filter: blur(2px);
}

/* ============================================
   TRUST BADGE
   ============================================ */
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.trust-badge:hover {
    color: #e2e8f0;
}

.trust-badge svg {
    color: #06b6d4;
    flex-shrink: 0;
}

/* ============================================
   PREMIUM SPOTLIGHT
   ============================================ */
.spotlight {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================
   ANIMATED STATS COUNTER
   ============================================ */
.stat-value {
    display: inline-block;
    animation: count-pulse 3s ease-in-out infinite;
}

.stat-value.revealed {
    animation: count-pulse 3s ease-in-out infinite;
}

/* ============================================
   MAGIC BORDER CARD
   ============================================ */
.magic-border {
    position: relative;
    z-index: 0;
}

.magic-border::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: -2px;
    border-radius: inherit;
    background: conic-gradient(from 0deg, #3b82f6, #06b6d4, #3b82f6, #06b6d4, #3b82f6);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: glow-border-rotate 4s linear infinite;
}

.magic-border:hover::before {
    opacity: 0.5;
}

/* ============================================
   PREMIUM CTA SECTION
   ============================================ */
.cta-premium {
    position: relative;
}

.cta-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, rgba(6,182,212,0.05) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 5s ease-in-out infinite;
    pointer-events: none;
}

/* ============================================
   ANIMATED NUMBER BADGE
   ============================================ */
.step-number {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 1px solid rgba(6,182,212,0.2);
    animation: ripple 3s ease-out infinite;
    pointer-events: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem !important;
    }

    .ticker-track {
        animation-duration: 40s;
    }

    .glass-card, .feature-card {
        padding: 1.5rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        width: 100%;
        justify-content: center;
    }

    .step-line {
        display: none;
    }

    .aurora-beam {
        width: 300px;
        height: 300px;
    }

    .trust-badge {
        gap: 0.5rem;
        font-size: 0.8125rem;
    }

    .comparison-table-wrap {
        overflow: visible;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table,
    .comparison-table tbody,
    .comparison-table tr,
    .comparison-table td {
        display: block;
        width: 100%;
    }

    .comparison-table tbody {
        display: grid;
        gap: 1rem;
    }

    .comparison-table tbody tr {
        border: 1px solid rgba(59, 130, 246, 0.12);
        border-radius: 16px;
        background: rgba(15, 23, 42, 0.45);
        padding: 1rem;
    }

    .comparison-table tbody tr:hover {
        background: rgba(15, 23, 42, 0.6);
    }

    .comparison-table td {
        border-bottom: none;
        padding: 0;
        text-align: left !important;
    }

    .comparison-table td + td {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(59, 130, 246, 0.08);
    }

    .comparison-table td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 0.35rem;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #64748b;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem !important;
    }

    .trust-badge {
        width: 100%;
        justify-content: center;
    }
}
