/* ========================================
   iCloser - Futuristic Web3 Financial Platform
   Enhanced Glassmorphism & Tech-Futuristic Design
   ======================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Blue-Purple Gradient */
    --primary-blue: #5B6CFF;
    --primary-purple: #8B5CF6;
    --primary-gradient: linear-gradient(135deg, #5B6CFF 0%, #8B5CF6 100%);
    --primary-gradient-hover: linear-gradient(135deg, #4A5BEE 0%, #7A4BE5 100%);
    
    /* Neon Accents */
    --neon-blue: #00D4FF;
    --neon-purple: #BD00FF;
    --neon-green: #00FF88;
    --neon-pink: #FF00AA;
    
    /* Background Colors */
    --bg-dark: #0a0a1a;
    --bg-darker: #050510;
    --bg-card: rgba(15, 15, 35, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --bg-glass-light: rgba(255, 255, 255, 0.1);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-bg-strong: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-strong: rgba(255, 255, 255, 0.2);
    --glass-blur: blur(20px);
    --glass-blur-strong: blur(30px);
    
    /* Shadows */
    --shadow-glow: 0 0 40px rgba(91, 108, 255, 0.3);
    --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.5);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Glassmorphism Components
   ======================================== */

.glass-header {
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
}

.glass-card-dark {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all var(--transition-normal);
}

.glass-card-dark:hover {
    border-color: var(--glass-border-strong);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.glass-card-hover {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.glass-card-hover:hover {
    border-color: var(--primary-blue);
    transform: translateY(-8px);
}

.glass-card-hover .feature-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.glass-card-hover:hover .feature-card-glow {
    opacity: 0.1;
}

.glass-badge-dark {
    background: rgba(91, 108, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(91, 108, 255, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-primary);
}

.glass-badge-neon {
    background: rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--neon-blue);
    transition: all var(--transition-normal);
}

.glass-badge-neon:hover {
    background: rgba(0, 212, 255, 0.2);
    box-shadow: var(--shadow-neon);
}

.glass-feature {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all var(--transition-normal);
}

.glass-feature:hover {
    background: var(--glass-bg-strong);
    border-color: var(--glass-border-strong);
}

.glass-stats {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.glass-phone {
    background: linear-gradient(145deg, rgba(30, 30, 60, 0.9), rgba(15, 15, 35, 0.95));
    border: 2px solid var(--glass-border-strong);
    box-shadow: 
        0 0 60px rgba(91, 108, 255, 0.3),
        inset 0 0 30px rgba(91, 108, 255, 0.1);
}

.glass-float {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.glass-mouse {
    background: var(--glass-bg);
    border: 2px solid var(--glass-border-strong);
}

.glass-link-neon {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition-normal);
}

.glass-link-neon:hover {
    background: rgba(91, 108, 255, 0.2);
    border-color: var(--primary-blue);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(91, 108, 255, 0.3);
}

/* ========================================
   Neon Effects
   ======================================== */

.neon-btn {
    background: var(--primary-gradient);
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.neon-btn:hover::before {
    left: 100%;
}

.neon-btn:hover {
    box-shadow: 0 0 30px rgba(91, 108, 255, 0.5);
    transform: translateY(-2px);
}

.neon-btn-primary {
    background: var(--primary-gradient);
    border: none;
    border-radius: 14px;
    padding: 16px 32px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px rgba(91, 108, 255, 0.4);
}

.neon-btn-primary:hover {
    box-shadow: 0 8px 40px rgba(91, 108, 255, 0.6);
    transform: translateY(-3px);
}

.neon-btn-primary .btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-normal);
}

.neon-btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.neon-btn-outline {
    background: transparent;
    border: 1px solid var(--primary-blue);
    border-radius: 10px;
    padding: 12px 20px;
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-normal);
}

.neon-btn-outline:hover {
    background: rgba(91, 108, 255, 0.1);
    box-shadow: 0 0 20px rgba(91, 108, 255, 0.3);
}

.neon-badge {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.neon-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.neon-link {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.neon-link:hover {
    text-shadow: 0 0 10px rgba(91, 108, 255, 0.5);
}

.neon-number {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    font-weight: 700;
}

.neon-pulse {
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 212, 255, 0.5); }
    50% { box-shadow: 0 0 25px rgba(0, 212, 255, 0.8); }
}

/* ========================================
   Header
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--text-primary);
}

/* ========================================
   Hero Section - Futuristic
   ======================================== */

.hero-futuristic {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(91, 108, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(91, 108, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91, 108, 255, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.02); }
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    animation: scanLine 4s linear infinite;
    opacity: 0.3;
}

@keyframes scanLine {
    0% { top: 0; }
    100% { top: 100%; }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

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

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 20%; animation-delay: -2s; }
.particle:nth-child(3) { top: 30%; left: 80%; animation-delay: -4s; }
.particle:nth-child(4) { top: 70%; left: 70%; animation-delay: -6s; }
.particle:nth-child(5) { top: 40%; left: 40%; animation-delay: -1s; }
.particle:nth-child(6) { top: 80%; left: 50%; animation-delay: -3s; }
.particle:nth-child(7) { top: 10%; left: 60%; animation-delay: -5s; }
.particle:nth-child(8) { top: 50%; left: 90%; animation-delay: -7s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 0.8; }
}

.neon-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.neon-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    opacity: 0.2;
}

.line-1 {
    top: 30%;
    left: 0;
    right: 0;
    animation: lineGlow 3s ease-in-out infinite;
}

.line-2 {
    top: 50%;
    left: 0;
    right: 0;
    animation: lineGlow 3s ease-in-out infinite;
    animation-delay: -1s;
}

.line-3 {
    top: 70%;
    left: 0;
    right: 0;
    animation: lineGlow 3s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.hero-eyebrow {
    margin-bottom: 24px;
}

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

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

.security-icon {
    font-size: 16px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.gradient-text-animated {
    background: linear-gradient(135deg, var(--neon-blue), var(--primary-purple), var(--neon-pink));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.feature-icon {
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup-futuristic {
    position: relative;
    width: 320px;
}

.phone-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 1px solid rgba(91, 108, 255, 0.2);
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite;
}

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

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(91, 108, 255, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: phoneGlow 4s ease-in-out infinite;
}

@keyframes phoneGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 580px;
    border-radius: 40px;
    padding: 12px;
    margin: 0 auto;
}

.phone-notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0f0f1f;
    border-radius: 32px;
    overflow: hidden;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.phone-screen::-webkit-scrollbar {
    display: none;
}

.app-screenshot-scrollable {
    width: 100%;
    display: block;
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-card {
    position: absolute;
    animation: floatCard 4s ease-in-out infinite;
}

.card-1 {
    top: 15%;
    left: -60px;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    right: -70px;
    animation-delay: -1.5s;
}

.card-3 {
    bottom: 20%;
    left: -50px;
    animation-delay: -3s;
}

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

.card-icon {
    font-size: 14px;
}

.security-shield {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(91, 108, 255, 0.5);
    animation: shieldPulse 3s ease-in-out infinite;
}

.security-shield svg {
    width: 30px;
    height: 30px;
    color: white;
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 26px;
    height: 40px;
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 2px;
    animation: wheelScroll 2s ease-in-out infinite;
}

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

/* ========================================
   Section Styles
   ======================================== */

section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Features Section - Clean Layout
   ======================================== */

.features-futuristic {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

/* Feature Hero Card */
.feature-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 50px;
    margin-bottom: 40px;
    align-items: center;
}

.feature-hero-content {
    padding-right: 20px;
}

.feature-badge-large {
    display: inline-block;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.feature-hero-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-hero-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-hero-stats {
    display: flex;
    gap: 30px;
}

.fh-stat {
    text-align: center;
}

.fh-stat-value {
    display: block;
    font-size: 24px;
    margin-bottom: 4px;
}

.fh-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-hero-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 20px;
}

/* Feature Grid - 2x2 */
.features-grid-clean {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card-modern {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.feature-card-image {
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.2);
}

.feature-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.feature-card-content {
    flex: 1;
}

.feature-tag {
    display: inline-block;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.feature-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   Products Section
   ======================================== */

.products-futuristic {
    background: var(--bg-darker);
}

.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card-modern {
    padding: 30px;
    text-align: center;
    position: relative;
}

.product-card-modern.coming-soon {
    opacity: 0.6;
}

.product-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.product-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.3;
}

.product-icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.product-badge {
    display: inline-block;
    background: rgba(91, 108, 255, 0.2);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.soon-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.product-card-modern h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-tagline {
    font-size: 14px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.product-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-cta {
    font-size: 14px;
    font-weight: 600;
}

/* ========================================
   High-Trust Circles Section
   ======================================== */

.trust-circles-futuristic {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

.trust-circles-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trust-content-left {
    max-width: 500px;
}

.trust-header {
    margin-bottom: 24px;
}

.trust-title {
    font-size: 42px;
    font-weight: 700;
    margin: 16px 0;
}

.early-access-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.2);
    color: var(--neon-blue);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.verified-badge, .antibot-badge, .kyc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.verified-badge svg, .antibot-badge svg, .kyc-badge svg {
    width: 16px;
    height: 16px;
}

.trust-cta {
    margin-top: 24px;
}

/* Avatar Network */
.trust-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-network {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-center {
    position: relative;
    z-index: 10;
}

.center-avatar {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(91, 108, 255, 0.5);
}

.center-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.center-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid rgba(91, 108, 255, 0.5);
    border-radius: 50%;
    animation: centerPulse 2s ease-out infinite;
}

.center-pulse.delay-1 {
    animation-delay: 0.5s;
}

.center-pulse.delay-2 {
    animation-delay: 1s;
}

@keyframes centerPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

.avatar-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.orbit-1 {
    width: 200px;
    height: 200px;
}

.orbit-2 {
    width: 320px;
    height: 320px;
}

.orbit-avatar {
    position: absolute;
    animation: avatarFloat 4s ease-in-out infinite;
}

.avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.verified-check {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: var(--neon-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

/* Position avatars around orbits */
.orbit-1 .avatar-1 { top: -25px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.orbit-1 .avatar-2 { bottom: -25px; left: 15%; animation-delay: -1s; }
.orbit-1 .avatar-3 { bottom: -25px; right: 15%; animation-delay: -2s; }

.orbit-2 .avatar-4 { top: -25px; left: 30%; animation-delay: -0.5s; }
.orbit-2 .avatar-5 { top: 30%; right: -25px; animation-delay: -1.5s; }
.orbit-2 .avatar-6 { bottom: 30%; right: -25px; animation-delay: -2.5s; }
.orbit-2 .avatar-7 { bottom: -25px; left: 50%; transform: translateX(-50%); animation-delay: -3s; }

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

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.orbit-line {
    animation: orbitRotate 20s linear infinite;
    transform-origin: center;
}

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

.user-count-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
}

.mini-avatars {
    display: flex;
    margin-left: -5px;
}

.mini-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--bg-card);
    margin-left: -8px;
}

.mini-avatar:first-child {
    margin-left: 0;
}

.count-text {
    font-size: 13px;
    font-weight: 600;
}

/* ========================================
   Journey Section
   ======================================== */

.journey-futuristic {
    background: var(--bg-dark);
}

.journey-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.journey-step {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 280px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

.step-status {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: auto;
}

.journey-connector {
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connector-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
    position: relative;
}

.connector-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--primary-purple);
}

/* ========================================
   Regulatory Section
   ======================================== */

.regulatory-futuristic {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.regulatory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.regulatory-card {
    padding: 40px;
}

.reg-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.reg-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.reg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.reg-header h3 {
    font-size: 20px;
    font-weight: 600;
}

.reg-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reg-status.active {
    background: rgba(0, 255, 136, 0.2);
    color: var(--neon-green);
}

.reg-details {
    margin-bottom: 24px;
}

.reg-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
}

.reg-item:last-child {
    border-bottom: none;
}

.reg-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reg-value {
    font-size: 14px;
    color: var(--text-primary);
}

.reg-value.code {
    font-family: 'Monaco', 'Consolas', monospace;
    color: var(--neon-blue);
}

.reg-verify-btn {
    width: 100%;
    justify-content: center;
}

/* Risk Disclosure */
.risk-disclosure {
    padding: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.risk-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.risk-disclosure h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.risk-disclosure p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 16px;
}

.visa-notice {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

/* Legal Links */
.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* ========================================
   Contact Section
   ======================================== */

.contact-futuristic {
    background: var(--bg-darker);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    padding: 40px;
    text-align: center;
}

.contact-icon-wrapper {
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 32px;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-card a {
    font-size: 14px;
}

/* ========================================
   Footer
   ======================================== */

.footer-futuristic {
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 12px;
}

.footer-brand-text {
    font-size: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.footer-compliance {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ========================================
   Animations
   ======================================== */

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .phone-mockup-futuristic {
        margin-top: 40px;
    }
    
    .feature-hero {
        grid-template-columns: 1fr;
    }
    
    .features-grid-clean {
        grid-template-columns: 1fr;
    }
    
    .products-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-circles-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .trust-content-left {
        max-width: 100%;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .trust-cta {
        display: flex;
        justify-content: center;
    }
    
    .avatar-network {
        margin-top: 40px;
    }
    
    .journey-steps {
        flex-direction: column;
    }
    
    .journey-connector {
        width: 2px;
        height: 40px;
    }
    
    .connector-line {
        width: 2px;
        height: 100%;
    }
    
    .connector-line::after {
        right: 50%;
        top: auto;
        bottom: 0;
        transform: translateX(50%);
        border: 6px solid transparent;
        border-top-color: var(--primary-purple);
    }
    
    .regulatory-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .products-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .avatar-network {
        width: 300px;
        height: 300px;
    }
    
    .orbit-1 {
        width: 150px;
        height: 150px;
    }
    
    .orbit-2 {
        width: 240px;
        height: 240px;
    }
    
    .avatar-img {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .phone-frame {
        width: 240px;
        height: 500px;
    }
    
    .floating-cards {
        display: none;
    }
    
    .legal-links {
        flex-direction: column;
        align-items: center;
    }
    
    .glass-link-neon {
        width: 100%;
        text-align: center;
    }
}


/* ========================================
   Discover iCloser Section - Premium Layout
   ======================================== */

/* User Journey Flow */
.discover-journey {
    position: relative;
    margin-bottom: 60px;
    padding: 20px 0;
}

.journey-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-blue) 20%, 
        var(--primary-purple) 80%, 
        transparent 100%);
    transform: translateY(-50%);
}

.journey-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.journey-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all var(--transition-normal);
}

.journey-dot.active {
    background: var(--primary-gradient);
    border-color: var(--primary-blue);
    color: white;
    box-shadow: 0 0 20px rgba(91, 108, 255, 0.5);
}

.journey-labels {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 15px auto 0;
}

.journey-labels span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Premium Glass Card */
.glass-card-premium {
    background: linear-gradient(135deg, 
        rgba(91, 108, 255, 0.1) 0%, 
        rgba(139, 92, 246, 0.05) 100%);
    backdrop-filter: var(--glass-blur-strong);
    -webkit-backdrop-filter: var(--glass-blur-strong);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.glass-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
}

.glass-card-premium:hover {
    transform: translateY(-5px);
    border-color: rgba(91, 108, 255, 0.3);
    box-shadow: 
        0 20px 60px rgba(91, 108, 255, 0.2),
        0 0 40px rgba(139, 92, 246, 0.1);
}

/* Discover Hero Card */
.discover-hero {
    padding: 40px;
    margin-bottom: 40px;
}

.discover-hero-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary-gradient);
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    color: white;
}

.step-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.discover-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.discover-hero-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.discover-hero-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.discover-hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dhf-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-fast);
}

.dhf-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(91, 108, 255, 0.3);
}

.dhf-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: 12px;
}

.dhf-text {
    display: flex;
    flex-direction: column;
}

.dhf-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.dhf-desc {
    font-size: 13px;
    color: var(--text-muted);
}

.discover-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.discover-phone-frame {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(91, 108, 255, 0.2);
}

.discover-phone-frame img {
    display: block;
    max-height: 500px;
    width: auto;
    object-fit: contain;
}

.discover-hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, 
        rgba(91, 108, 255, 0.3) 0%, 
        transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

/* Discover Grid */
.discover-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Discover Card */
.discover-card {
    padding: 0;
    overflow: hidden;
}

.discover-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.discover-tag {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag-identity {
    background: rgba(0, 212, 255, 0.15);
    color: var(--neon-blue);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.tag-verification {
    background: rgba(0, 255, 136, 0.15);
    color: var(--neon-green);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.tag-finance {
    background: rgba(139, 92, 246, 0.15);
    color: var(--primary-purple);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.tag-social {
    background: rgba(255, 0, 170, 0.15);
    color: var(--neon-pink);
    border: 1px solid rgba(255, 0, 170, 0.3);
}

.discover-card-visual {
    position: relative;
    height: 380px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, 
        rgba(91, 108, 255, 0.08) 0%, 
        rgba(139, 92, 246, 0.03) 50%,
        transparent 100%);
}

.discover-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform var(--transition-slow);
}

.discover-card:hover .discover-card-visual img {
    transform: scale(1.08);
}

/* Individual Card Image Positioning - Optimized for each card's core content */
.discover-card-visual-2 img {
    object-position: center 30% !important;
}

.discover-card-visual-3 img {
    object-position: center 30% !important;
}

.discover-card-visual-4 img {
    object-position: center 35% !important;
}

.discover-card-visual-5 img {
    object-position: center 40% !important;
}

.discover-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, 
        rgba(15, 15, 35, 0.9) 0%, 
        transparent 100%);
    pointer-events: none;
}

.discover-card-content {
    padding: 24px;
}

.discover-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.discover-card-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.discover-card-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.highlight-item {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.discover-card:hover .highlight-item {
    background: rgba(91, 108, 255, 0.1);
    border-color: rgba(91, 108, 255, 0.3);
    color: var(--text-primary);
}

.discover-card-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, 
        rgba(91, 108, 255, 0.2) 0%, 
        transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.discover-card:hover .discover-card-glow {
    opacity: 1;
}

/* Discover CTA */
.discover-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background: linear-gradient(135deg, 
        rgba(91, 108, 255, 0.15) 0%, 
        rgba(139, 92, 246, 0.1) 100%);
}

.discover-cta-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.discover-cta-content p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Responsive for Discover Section */
@media (max-width: 992px) {
    .discover-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .discover-hero-visual {
        order: -1;
    }
    
    .discover-phone-frame img {
        max-height: 400px;
    }
    
    .discover-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .journey-line {
        display: none;
    }
    
    .journey-steps {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .journey-labels {
        display: none;
    }
    
    .discover-hero {
        padding: 24px;
    }
    
    .discover-hero-title {
        font-size: 28px;
    }
    
    .discover-cta {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .discover-card-visual {
        height: 320px;
    }
    
    .discover-card-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }
}
