/* ========================================
   172号卡代理招募页面 - 赛博朋克科技风
   Cyberpunk Tech Style with Glassmorphism
   ======================================== */

/* CSS Variables - Cyberpunk Palette */
:root {
    --neon-cyan: #00f5ff;
    --neon-purple: #7c3aed;
    --neon-pink: #ec4899;
    --neon-orange: #f59e0b;
    --neon-green: #22c55e;
    --dark-bg: #0a0a0f;
    --dark-surface: #12121a;
    --dark-elevated: #1a1a25;
    --dark-border: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.78);
    --text-muted: rgba(255, 255, 255, 0.58);

    --accent-yellow: #f5c542;
    --accent-orange: #f59e0b;
    --accent-blue: #3b82f6;
    --accent-pink: #ec4899;
    --success-green: #22c55e;
    --warning-red: #ef4444;
    --info-cyan: #22d3ee;
    
    /* Gradients */
    --gradient-cyber: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    --gradient-fire: linear-gradient(135deg, var(--neon-orange), #ef4444);
    --gradient-nature: linear-gradient(135deg, var(--neon-green), #06b6d4);
    --gradient-pink: linear-gradient(135deg, var(--neon-pink), #8b5cf6);
    
    /* Shadows */
    --glow-cyan: 0 0 20px rgba(0, 245, 255, 0.5), 0 0 40px rgba(0, 245, 255, 0.3);
    --glow-purple: 0 0 20px rgba(124, 58, 237, 0.5), 0 0 40px rgba(124, 58, 237, 0.3);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    
    /* Spacing */
    --radius-sm: 0.5rem;
    --radius: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    
    /* Icon Sizes */
    --icon-xs: 14px;
    --icon-sm: 16px;
    --icon-md: 20px;
    --icon-lg: 24px;
    --icon-xl: 32px;
    --icon-2xl: 40px;
    --icon-3xl: 56px;
    --icon-4xl: 72px;
    --icon-5xl: 80px;
    --icon-6xl: 100px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Icon System - Unified Icon Styles
   ======================================== */

/* SVG Base Styles - Prevent Oversized Icons */
svg {
    display: block;
    flex-shrink: 0;
}

/* Icon Container Base Styles */
.icon-wrapper,
.category-features li svg,
.settlement-benefits li svg,
.info-label svg {
    flex-shrink: 0;
}

/* Ensure SVG inherits container size when needed */
.category-features li svg,
.settlement-benefits li svg,
.info-label svg {
    width: 100%;
    height: 100%;
}

/* Icon Base Class */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: var(--icon-md);
    height: var(--icon-md);
}

/* Logo Icon */
.logo-icon {
    width: var(--icon-2xl);
    height: var(--icon-2xl);
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.5));
}

/* Feature Icon */
.feature-icon {
    width: var(--icon-3xl);
    height: var(--icon-3xl);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.3));
    transition: filter 0.3s ease;
}

/* Advantage Icon */
.advantage-icon {
    width: var(--icon-4xl);
    height: var(--icon-4xl);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.advantage-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(0, 245, 255, 0.3));
    transition: filter 0.3s ease;
}

/* Settlement Icon */
.settlement-icon {
    width: var(--icon-5xl);
    height: var(--icon-5xl);
    flex-shrink: 0;
    margin: 0 auto 1.5rem;
}

.settlement-icon svg {
    width: 100%;
    height: 100%;
}

/* Signal Icon */
.signal-icon {
    width: var(--icon-2xl);
    height: var(--icon-2xl);
    flex-shrink: 0;
}

/* Platform/Category Icon */
.platform-icon,
.category-icon {
    width: var(--icon-3xl);
    height: var(--icon-3xl);
    flex-shrink: 0;
}

.category-icon svg {
    width: 100%;
    height: 100%;
}

/* Step Icon */
.step-icon {
    width: var(--icon-xl);
    height: var(--icon-xl);
    flex-shrink: 0;
}

/* Highlight Icon */
.highlight-icon {
    width: var(--icon-5xl);
    height: var(--icon-5xl);
    flex-shrink: 0;
    margin: 0 auto 1.5rem;
}

.highlight-icon svg {
    width: 100%;
    height: 100%;
}

/* Support Icon */
.support-icon {
    width: var(--icon-5xl);
    height: var(--icon-5xl);
    flex-shrink: 0;
    margin: 0 auto 1.5rem;
}

.support-icon svg {
    width: 100%;
    height: 100%;
}

/* Commission Icon */
.commission-icon {
    width: var(--icon-5xl);
    height: var(--icon-5xl);
    flex-shrink: 0;
    margin: 0 auto 1.5rem;
}

.commission-icon svg {
    width: 100%;
    height: 100%;
}

/* Badge Icon */
.badge-icon {
    width: var(--icon-lg);
    height: var(--icon-lg);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 8px var(--neon-orange));
}

.badge-icon svg {
    width: 100%;
    height: 100%;
}

/* CTA Icon */
.cta-icon {
    width: var(--icon-lg);
    height: var(--icon-lg);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.cta-icon svg {
    width: 100%;
    height: 100%;
}

/* Button Icon */
.btn-icon {
    width: var(--icon-lg);
    height: var(--icon-lg);
    flex-shrink: 0;
}

.btn-icon svg {
    width: 100%;
    height: 100%;
}

/* Tag Icon */
.tag-icon {
    width: var(--icon-lg);
    height: var(--icon-lg);
    flex-shrink: 0;
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

.tag-icon svg {
    width: 100%;
    height: 100%;
}

/* Status Icon */
.status-icon {
    width: var(--icon-sm);
    height: var(--icon-sm);
    flex-shrink: 0;
    color: white;
}

.status-icon svg {
    width: 100%;
    height: 100%;
}

/* App Logo */
.app-logo {
    width: var(--icon-xl);
    height: var(--icon-xl);
    flex-shrink: 0;
}

.app-logo svg {
    width: 100%;
    height: 100%;
}

/* Stat Icon */
.stat-icon {
    width: var(--icon-lg);
    height: var(--icon-lg);
    flex-shrink: 0;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

/* Nav Item Icon */
.nav-item svg {
    width: var(--icon-lg);
    height: var(--icon-lg);
    flex-shrink: 0;
}

/* Detail Icon */
.detail-icon {
    flex-shrink: 0;
    width: var(--icon-xl);
    height: var(--icon-xl);
    color: var(--neon-cyan);
}

.detail-icon svg {
    width: 100%;
    height: 100%;
}

/* Benefit Check Icon */
.benefit-check svg {
    width: var(--icon-sm);
    height: var(--icon-sm);
    flex-shrink: 0;
    color: var(--neon-cyan);
}

/* Trust Icons */
.trust-icons svg {
    width: var(--icon-xl);
    height: var(--icon-xl);
    flex-shrink: 0;
    color: var(--neon-cyan);
    opacity: 0.8;
}

/* Social Link Icon */
.social-link svg {
    width: var(--icon-lg);
    height: var(--icon-lg);
    flex-shrink: 0;
}

/* Contact Icon */
.contact-icon svg {
    width: var(--icon-lg);
    height: var(--icon-lg);
    flex-shrink: 0;
}

/* Footer Link Icon */
.footer-link-list li svg,
.link-group li svg {
    width: var(--icon-lg);
    height: var(--icon-lg);
    flex-shrink: 0;
}

/* Mobile Nav Link Icon */
.mobile-nav-link svg {
    width: var(--icon-lg);
    height: var(--icon-lg);
    flex-shrink: 0;
}

/* Section Tag Icon */
.section-tag svg {
    width: var(--icon-md);
    height: var(--icon-md);
    flex-shrink: 0;
}

/* Poster Badge Icon */
.poster-badge svg {
    width: var(--icon-lg);
    height: var(--icon-lg);
    flex-shrink: 0;
}

/* Info Label Icon */
.info-label svg {
    width: var(--icon-md);
    height: var(--icon-md);
    flex-shrink: 0;
}

/* Poster Footer Icon */
.poster-footer svg {
    width: var(--icon-xl);
    height: var(--icon-xl);
    flex-shrink: 0;
    color: var(--neon-orange);
    filter: drop-shadow(0 0 8px var(--neon-orange));
}

/* QR Text Icon */
.qr-text svg {
    width: var(--icon-lg);
    height: var(--icon-lg);
    flex-shrink: 0;
}

/* Desc Item Icon */
.desc-item svg {
    width: var(--icon-lg);
    height: var(--icon-lg);
    flex-shrink: 0;
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

/* Fire Badge Icon */
.badge-fire {
    width: var(--icon-lg);
    height: var(--icon-lg);
    flex-shrink: 0;
    color: var(--neon-orange);
    filter: drop-shadow(0 0 8px var(--neon-orange));
}

.badge-fire svg {
    width: 100%;
    height: 100%;
}

/* ========================================
   Cyber Grid Background
   ======================================== */
.cyber-grid {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

/* Particles Container */
.particles-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 15s infinite;
    box-shadow: 0 0 10px var(--neon-cyan);
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ========================================
   Navigation - Glassmorphism
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    position: relative;
}

.logo-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.5));
}

.logo-text {
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.logo-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(8px);
    opacity: 0.5;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9375rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    opacity: 0;
    transition: opacity 0.3s;
}

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

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

.nav-link:hover::before {
    opacity: 0.3;
    filter: blur(4px);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-cyber);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9375rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 245, 255, 0.3);
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan);
}

.nav-cta:hover::before {
    transform: translateX(100%);
}

.cta-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.nav-cta:hover .cta-icon {
    transform: translate(2px, -2px);
}

/* ========================================
   Hero Section - Cyberpunk Style
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: orb-float 10s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--neon-purple);
    top: -150px;
    right: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--neon-cyan);
    bottom: -100px;
    left: -100px;
    animation-delay: -3s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--neon-pink);
    top: 40%;
    left: 30%;
    animation-delay: -6s;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 20px) scale(0.9); }
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--neon-cyan);
    opacity: 0.5;
    animation: scan 4s linear infinite;
    box-shadow: var(--glow-cyan);
}

@keyframes scan {
    0% { top: 0; opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { top: 100%; opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

/* Glitch Effect */
.glitch-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.75rem 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--neon-orange);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.glitch-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
    animation: shimmer 2s infinite;
}

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

.badge-fire {
    width: 20px;
    height: 20px;
    color: var(--neon-orange);
    filter: drop-shadow(0 0 8px var(--neon-orange));
}

.badge-text {
    color: var(--neon-orange);
    font-weight: 600;
    font-size: 0.875rem;
    position: relative;
}

.glitch {
    position: relative;
    display: inline-block;
}

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

.glitch::before {
    color: var(--neon-cyan);
    animation: glitch-1 2s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
    color: var(--neon-pink);
    animation: glitch-2 2s infinite;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-3px, 1px); }
    94% { transform: translate(3px, -1px); }
    96% { transform: translate(-2px, 2px); }
}

@keyframes glitch-2 {
    0%, 90%, 100% { transform: translate(0); }
    91% { transform: translate(3px, -1px); }
    93% { transform: translate(-3px, 1px); }
    95% { transform: translate(2px, -2px); }
}

.hero-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.title-main {
    font-size: clamp(4rem, 12vw, 7rem);
    font-weight: 900;
    color: white;
    text-shadow: 0 0 40px rgba(0, 245, 255, 0.5);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.1em;
}

.title-sub {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 0.2em;
}

.hero-subtitle {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
}

/* Neon Text Effect */
.neon-text {
    color: white;
    text-shadow:
        0 0 8px rgba(0, 245, 255, 0.6),
        0 0 20px rgba(0, 245, 255, 0.25);
    position: relative;
}

.neon-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    color: var(--neon-cyan);
    opacity: 0.2;
    filter: blur(8px);
    animation: neon-pulse 2s ease-in-out infinite;
}

@keyframes neon-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.divider-line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    position: relative;
}

.divider-line::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: var(--glow-cyan);
}

.divider-text {
    font-size: 0.875rem;
    letter-spacing: 0.4em;
    color: var(--text-muted);
    font-weight: 300;
    font-family: 'Orbitron', sans-serif;
}

.hero-desc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.desc-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.desc-item svg {
    width: 20px;
    height: 20px;
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

.desc-separator {
    width: 6px;
    height: 6px;
    background: var(--neon-purple);
    border-radius: 50%;
    box-shadow: var(--glow-purple);
}

/* Cyber Buttons */
.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cyber-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    overflow: visible;
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
}

.btn-icon {
    width: 22px;
    height: 22px;
}

.btn-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-cyber);
    border-radius: var(--radius);
    opacity: 0.8;
    filter: blur(15px);
    transition: opacity 0.3s;
}

.btn-border {
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: var(--gradient-cyber);
    padding: 2px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.cyber-btn:hover .btn-glow {
    opacity: 1;
}

.cyber-btn:hover {
    transform: translateY(-3px);
}

.cyber-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.cyber-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
    transform: translateY(-3px);
}

/* Hologram Card */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.hologram-card {
    width: 320px;
    perspective: 1000px;
}

.card-frame {
    position: relative;
    background: rgba(18, 18, 26, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    animation: hologram-float 6s ease-in-out infinite;
    overflow: hidden;
}

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

.card-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), transparent, rgba(124, 58, 237, 0.1));
    pointer-events: none;
}

.card-glare {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 70%
    );
    animation: glare 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glare {
    0%, 100% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.signal-icon {
    width: 40px;
    height: 40px;
}

.card-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    color: var(--neon-cyan);
}

.card-stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

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

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: var(--glow-cyan);
}

.stat-unit {
    font-size: 1rem;
    color: var(--neon-cyan);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    letter-spacing: 0.1em;
}

.card-pulse {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    animation: pulse-line 2s ease-in-out infinite;
}

@keyframes pulse-line {
    0%, 100% { opacity: 0.3; width: 40%; }
    50% { opacity: 1; width: 60%; }
}

.hologram-base {
    width: 80%;
    height: 20px;
    margin: 2rem auto 0;
    background: radial-gradient(ellipse at center, rgba(0, 245, 255, 0.3), transparent 70%);
    filter: blur(10px);
}

/* ========================================
   App Hero - Enhanced Styles
   ======================================== */

/* Hero Wrapper */
.app-hero {
    padding: 0;
    min-height: 100vh;
}

.app-hero .hero-bg {
    overflow: hidden;
}

/* Additional Gradient Orbs */
.orb-4 {
    width: 350px;
    height: 350px;
    background: var(--neon-orange);
    bottom: 20%;
    right: 20%;
    animation-delay: -4s;
    opacity: 0.25;
}

/* Light Beams */
.light-beam {
    position: absolute;
    width: 2px;
    height: 200%;
    background: linear-gradient(to bottom, transparent, var(--neon-cyan), transparent);
    opacity: 0.3;
    animation: beam-rotate 15s linear infinite;
}

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

.beam-2 {
    left: 80%;
    top: -50%;
    animation-delay: -7.5s;
}

@keyframes beam-rotate {
    0% { transform: rotate(0deg) translateX(0); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: rotate(360deg) translateX(100px); opacity: 0; }
}

/* Hero Wrapper Layout */
.hero-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
}

/* Hero Content */
.app-hero .hero-content {
    text-align: left;
    max-width: 600px;
}

/* Glass Badge */
.glass-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.badge-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.4), rgba(236, 72, 153, 0.4));
    border-radius: 100px;
    filter: blur(8px);
    opacity: 0.5;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.02); }
}

.badge-icon {
    width: 18px;
    height: 18px;
    color: var(--neon-orange);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 8px var(--neon-orange));
}

.badge-text {
    color: var(--neon-orange);
    font-weight: 600;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: badge-shine 3s infinite;
}

@keyframes badge-shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Hero Title - Enhanced */
.app-hero .hero-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-word {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    letter-spacing: 0.05em;
    display: block;
    animation: title-reveal 0.8s ease-out forwards;
    text-shadow: 0 0 40px rgba(0, 245, 255, 0.3);
}

@keyframes title-reveal {
    0% { transform: translateY(100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.title-highlight {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
    display: block;
    animation: title-reveal 0.8s ease-out 0.2s forwards;
    opacity: 0;
    position: relative;
}

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

/* Hero Subtitle Wrapper */
.hero-subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.subtitle-tag {
    padding: 0.375rem 0.875rem;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 100px;
    color: var(--neon-cyan);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.app-hero .hero-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    margin: 0;
    font-family: 'Orbitron', sans-serif;
}

/* Hero Divider - Enhanced */
.app-hero .hero-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
}

.app-hero .divider-line {
    flex: 0 0 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), transparent);
    position: relative;
}

.app-hero .divider-line:last-child {
    background: linear-gradient(90deg, transparent, var(--neon-cyan));
}

.divider-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
    animation: dot-pulse 2s ease-in-out infinite;
}

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

/* Hero Features Tags */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    width: fit-content;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(0, 245, 255, 0.05);
    border-color: rgba(0, 245, 255, 0.2);
    transform: translateX(5px);
}

.tag-icon {
    width: 20px;
    height: 20px;
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

.feature-tag span {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* CTA Buttons - Enhanced */
.app-hero .hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn .btn-bg {
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.cta-btn .btn-border {
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 2px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-btn .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.cta-btn .btn-icon {
    width: 20px;
    height: 20px;
}

/* Primary CTA */
.cta-primary {
    background: var(--gradient-cyber);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 245, 255, 0.3), 0 4px 40px rgba(124, 58, 237, 0.2);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 245, 255, 0.4), 0 8px 50px rgba(124, 58, 237, 0.3);
}

.cta-primary .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-primary:hover .btn-shine {
    left: 100%;
}

/* Secondary CTA */
.cta-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 245, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 245, 255, 0.15);
}

.cta-secondary:hover .btn-border {
    opacity: 1;
}

/* ========================================
   Phone Showcase - 3D Effect
   ======================================== */
.phone-showcase {
    position: relative;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    perspective: 1200px;
}

/* Showcase Glow Background */
.showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(0, 245, 255, 0.15), transparent 60%);
    filter: blur(40px);
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Showcase Rings */
.showcase-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 245, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.ring-1 {
    width: 140%;
    height: 140%;
    animation: ring-rotate 20s linear infinite;
}

.ring-2 {
    width: 170%;
    height: 170%;
    border-color: rgba(124, 58, 237, 0.08);
    animation: ring-rotate 25s linear infinite reverse;
}

.ring-3 {
    width: 200%;
    height: 200%;
    border-color: rgba(236, 72, 153, 0.05);
    animation: ring-rotate 30s linear infinite;
}

@keyframes ring-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Phone Device */
.phone-device {
    position: relative;
    transform-style: preserve-3d;
    animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
    0%, 100% { transform: translateY(0) rotateY(-8deg) rotateX(5deg); }
    50% { transform: translateY(-20px) rotateY(8deg) rotateX(5deg); }
}

/* Phone Frame */
.phone-frame {
    position: relative;
    background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
    border-radius: 40px;
    padding: 8px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.frame-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    border-radius: 42px;
    filter: blur(15px);
    opacity: 0.4;
    animation: frame-glow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes frame-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

/* Phone Screen */
.phone-screen {
    position: relative;
    background: linear-gradient(180deg, #0d1117 0%, #161b22 100%);
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 9/19;
    padding: 12px;
    display: flex;
    flex-direction: column;
}

/* Screen Glare */
.screen-glare {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.03) 50%,
        transparent 60%
    );
    animation: screen-glare 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes screen-glare {
    0%, 100% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
}

/* Status Bar */
.screen-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 8px;
    margin-bottom: 8px;
}

.status-time {
    font-size: 11px;
    font-weight: 600;
    color: white;
    font-family: 'Orbitron', sans-serif;
}

.status-icons {
    display: flex;
    gap: 4px;
}

.status-icon {
    width: 14px;
    height: 14px;
    color: white;
}

/* Screen Header */
.screen-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    margin-bottom: 12px;
}

.app-logo {
    width: 28px;
    height: 28px;
}

.app-name {
    font-size: 14px;
    font-weight: 700;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Screen Stats */
.screen-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-cyber);
    opacity: 0.5;
}

.stat-card.income::before {
    background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
}

.stat-card.orders::before {
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink));
}

.stat-icon {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-value {
    font-size: 14px;
    font-weight: 700;
    color: white;
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    font-size: 10px;
    color: var(--text-muted);
}

.stat-trend {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 9px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 100px;
}

.stat-trend.up {
    background: rgba(34, 197, 94, 0.15);
    color: var(--neon-green);
}

/* Screen Chart */
.screen-chart {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 12px;
    flex: 1;
}

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

.chart-header span:first-child {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
}

.chart-period {
    font-size: 9px;
    color: var(--neon-cyan);
    background: rgba(0, 245, 255, 0.1);
    padding: 2px 6px;
    border-radius: 100px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 80px;
    gap: 4px;
}

.chart-bar {
    flex: 1;
    height: var(--height);
    background: linear-gradient(to top, rgba(0, 245, 255, 0.3), rgba(0, 245, 255, 0.1));
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.3s ease;
    animation: bar-grow 1s ease-out forwards;
    animation-delay: calc(var(--i, 0) * 0.1s);
}

.chart-bar:nth-child(1) { --i: 1; }
.chart-bar:nth-child(2) { --i: 2; }
.chart-bar:nth-child(3) { --i: 3; }
.chart-bar:nth-child(4) { --i: 4; }
.chart-bar:nth-child(5) { --i: 5; }
.chart-bar:nth-child(6) { --i: 6; }
.chart-bar:nth-child(7) { --i: 7; }

@keyframes bar-grow {
    0% { height: 0; }
    100% { height: var(--height); }
}

.chart-bar.active {
    background: linear-gradient(to top, var(--neon-cyan), rgba(0, 245, 255, 0.3));
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

.bar-value {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    color: var(--neon-cyan);
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.chart-bar:hover .bar-value {
    opacity: 1;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
}

.chart-labels span {
    font-size: 8px;
    color: var(--text-muted);
    flex: 1;
    text-align: center;
}

/* Screen Navigation */
.screen-nav {
    display: flex;
    justify-content: space-around;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-top: auto;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.nav-item svg {
    width: 18px;
    height: 18px;
}

.nav-item span {
    font-size: 9px;
}

.nav-item.active {
    color: var(--neon-cyan);
}

.nav-item.active svg {
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

/* Phone Particles */
.phone-particles {
    position: absolute;
    inset: -20px;
    pointer-events: none;
}

.phone-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.particle.p1 {
    top: 20%;
    left: -10px;
    animation: particle-float 4s ease-in-out infinite;
}

.particle.p2 {
    top: 50%;
    right: -10px;
    background: var(--neon-purple);
    box-shadow: 0 0 10px var(--neon-purple);
    animation: particle-float 5s ease-in-out infinite 1s;
}

.particle.p3 {
    bottom: 30%;
    left: -15px;
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
    animation: particle-float 4.5s ease-in-out infinite 0.5s;
}

.particle.p4 {
    bottom: 20%;
    right: -15px;
    background: var(--neon-orange);
    box-shadow: 0 0 10px var(--neon-orange);
    animation: particle-float 5.5s ease-in-out infinite 1.5s;
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

/* Phone Shadow */
.phone-shadow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4), transparent 70%);
    filter: blur(15px);
    animation: shadow-pulse 6s ease-in-out infinite;
}

@keyframes shadow-pulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
    50% { transform: translateX(-50%) scale(0.8); opacity: 0.6; }
}

/* ========================================
   Section Common Styles
   ======================================== */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    color: var(--neon-cyan);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.section-tag svg {
    width: 16px;
    height: 16px;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
}

/* ========================================
   Features Section - Enhanced Glass Cards with 3D Tilt
   ======================================== */
.features {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(0, 245, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

/* Feature Card with 3D Tilt */
.feature-card {
    position: relative;
    border-radius: var(--radius-lg);
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    cursor: pointer;
}

.feature-card:hover {
    z-index: 10;
}

/* Glass Card Effect */
.card-glass {
    position: relative;
    background: rgba(26, 26, 37, 0.6);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.feature-card:hover .card-glass {
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 245, 255, 0.1);
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.3), rgba(124, 58, 237, 0.3));
    border-radius: calc(var(--radius-lg) + 2px);
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover .card-glow {
    opacity: 0.4;
}

/* Card Shine Effect */
.card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.05) 45%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 55%,
        transparent 60%
    );
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.feature-card .card-content-wrapper {
    position: relative;
    z-index: 1;
    background: transparent;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    transform: translateZ(20px);
}

/* Feature Icon Wrapper */
.feature-icon-wrapper {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) translateZ(30px);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.3));
    transition: filter 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    filter: drop-shadow(0 0 20px rgba(0, 245, 255, 0.6));
}

/* Icon Glow */
.icon-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 245, 255, 0.3), transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(10px);
}

.feature-card:hover .icon-glow {
    opacity: 1;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    transform: translateZ(25px);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-title {
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    transform: translateZ(15px);
}

/* Feature Particles */
.feature-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.f-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.f-particle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation: particle-float-1 3s ease-in-out infinite;
}

.f-particle:nth-child(2) {
    top: 60%;
    right: 15%;
    background: var(--neon-purple);
    box-shadow: 0 0 10px var(--neon-purple);
    animation: particle-float-2 4s ease-in-out infinite 0.5s;
}

.f-particle:nth-child(3) {
    bottom: 20%;
    left: 50%;
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
    animation: particle-float-3 3.5s ease-in-out infinite 1s;
}

.feature-card:hover .f-particle {
    opacity: 0.8;
}

@keyframes particle-float-1 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.2); }
}

@keyframes particle-float-2 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-10px) translateX(5px); }
}

@keyframes particle-float-3 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(0.8); }
}

/* ========================================
   Advantages Section - Enhanced Glass Cards
   ======================================== */
.advantages {
    background: linear-gradient(180deg, var(--dark-surface) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.advantages::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

.advantage-card {
    position: relative;
    border-radius: var(--radius-xl);
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    cursor: pointer;
}

.advantage-card:hover {
    z-index: 10;
}

/* Advantage Glass Effect */
.advantage-glass {
    position: relative;
    background: rgba(26, 26, 37, 0.5);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-glass {
    border-color: rgba(0, 245, 255, 0.25);
    box-shadow: 
        0 30px 60px -15px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 245, 255, 0.08);
}

/* Advantage Glow */
.advantage-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.3), rgba(124, 58, 237, 0.3));
    border-radius: calc(var(--radius-xl) + 2px);
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.advantage-card:hover .advantage-glow {
    opacity: 0.5;
}

/* Advantage Shine */
.advantage-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.03) 45%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.03) 55%,
        transparent 60%
    );
    border-radius: var(--radius-xl);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.advantage-card:hover .advantage-shine {
    opacity: 1;
}

/* Circuit Pattern */
.card-circuit {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: 
        linear-gradient(90deg, var(--neon-cyan) 1px, transparent 1px),
        linear-gradient(var(--neon-cyan) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: circuit-flow 15s linear infinite;
    pointer-events: none;
}

@keyframes circuit-flow {
    0% { background-position: 0 0; }
    100% { background-position: 30px 30px; }
}

.advantage-card:hover .card-circuit {
    opacity: 0.1;
}

.advantage-card .card-content-wrapper {
    position: relative;
    z-index: 1;
    background: transparent;
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    text-align: center;
    transform: translateZ(20px);
}

/* Advantage Icon Wrapper */
.advantage-icon-wrapper {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.08) translateZ(30px);
}

.advantage-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(0, 245, 255, 0.3));
    transition: filter 0.3s ease;
}

.advantage-card:hover .advantage-icon svg {
    filter: drop-shadow(0 0 25px rgba(0, 245, 255, 0.5));
}

/* Advantage Icon Glow */
.adv-icon-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 245, 255, 0.25), transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(15px);
}

.advantage-card:hover .adv-icon-glow {
    opacity: 1;
}

.advantage-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    transform: translateZ(25px);
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-title {
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}

.advantage-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    transform: translateZ(15px);
}

/* Advantage Benefits List */
.advantage-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    transform: translateZ(10px);
}

.advantage-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-benefits li {
    background: rgba(0, 245, 255, 0.05);
    border-color: rgba(0, 245, 255, 0.15);
    transform: translateX(5px);
}

.advantage-benefits li:nth-child(2) {
    transition-delay: 0.05s;
}

.advantage-benefits li:nth-child(3) {
    transition-delay: 0.1s;
}

.benefit-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.2), rgba(124, 58, 237, 0.2));
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.advantage-card:hover .benefit-check {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.4), rgba(124, 58, 237, 0.4));
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

.benefit-check svg {
    width: 12px;
    height: 12px;
    color: var(--neon-cyan);
}

.benefit-text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    text-align: left;
    transition: color 0.3s ease;
}

.advantage-card:hover .benefit-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Advantage Particles */
.advantage-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.a-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--neon-cyan);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 8px var(--neon-cyan);
}

.a-particle:nth-child(1) {
    top: 15%;
    left: 10%;
    animation: a-particle-float-1 4s ease-in-out infinite;
}

.a-particle:nth-child(2) {
    top: 25%;
    right: 12%;
    background: var(--neon-purple);
    box-shadow: 0 0 8px var(--neon-purple);
    animation: a-particle-float-2 5s ease-in-out infinite 0.7s;
}

.a-particle:nth-child(3) {
    bottom: 30%;
    left: 8%;
    background: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green);
    animation: a-particle-float-3 4.5s ease-in-out infinite 1.2s;
}

.a-particle:nth-child(4) {
    bottom: 20%;
    right: 10%;
    background: var(--neon-orange);
    box-shadow: 0 0 8px var(--neon-orange);
    animation: a-particle-float-4 5.5s ease-in-out infinite 0.3s;
}

.advantage-card:hover .a-particle {
    opacity: 0.7;
}

@keyframes a-particle-float-1 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(5px); }
}

@keyframes a-particle-float-2 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-15px) translateX(-8px); }
}

@keyframes a-particle-float-3 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-25px) scale(1.3); }
}

@keyframes a-particle-float-4 {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); }
    50% { transform: translateY(-12px) translateX(10px) scale(0.8); }
}

/* ========================================
   Products Section
   ======================================== */
.products {
    background: var(--dark-bg);
    position: relative;
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.product-category {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    transition: all 0.4s;
}

.category-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s;
}

.mobile-glow { background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.2), transparent 70%); }
.unicom-glow { background: radial-gradient(circle at 50% 0%, rgba(239, 68, 68, 0.2), transparent 70%); }
.telecom-glow { background: radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.2), transparent 70%); }
.broadcast-glow { background: radial-gradient(circle at 50% 0%, rgba(34, 197, 94, 0.2), transparent 70%); }

.product-category:hover .category-glow {
    opacity: 1;
}

.product-category:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
}

.category-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.category-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-badge {
    padding: 0.375rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.mobile .category-badge { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.unicom .category-badge { background: rgba(239, 68, 68, 0.2); color: #f87171; }
.telecom .category-badge { background: rgba(6, 182, 212, 0.2); color: #22d3ee; }
.broadcast .category-badge { background: rgba(34, 197, 94, 0.2); color: #4ade80; }

.category-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.category-features {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.category-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.category-features li svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.mobile .category-features li svg { color: #60a5fa; }
.unicom .category-features li svg { color: #f87171; }
.telecom .category-features li svg { color: #22d3ee; }
.broadcast .category-features li svg { color: #4ade80; }

.products-cta {
    text-align: center;
}

.btn-view-all {
    padding: 1rem 2rem;
}

.btn-view-all .btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.btn-view-all:hover .btn-arrow {
    transform: translateX(4px);
}

/* ========================================
   Settlement Section
   ======================================== */
.settlement {
    background: linear-gradient(180deg, var(--dark-surface) 0%, var(--dark-bg) 100%);
}

.settlement-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.settlement-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--dark-elevated);
    border: 1px solid var(--dark-border);
    transition: all 0.4s;
}

.card-circuit {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: 
        linear-gradient(90deg, var(--neon-cyan) 1px, transparent 1px),
        linear-gradient(var(--neon-cyan) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: circuit-flow 10s linear infinite;
}

@keyframes circuit-flow {
    0% { background-position: 0 0; }
    100% { background-position: 20px 20px; }
}

.settlement-card:hover {
    border-color: rgba(0, 245, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.settlement-card.instant:hover {
    box-shadow: 0 20px 40px -10px rgba(245, 158, 11, 0.2);
}

.settlement-card.monthly:hover {
    box-shadow: 0 20px 40px -10px rgba(34, 197, 94, 0.2);
}

.settlement-card .card-content-wrapper {
    background: transparent;
    padding: 3rem 2rem;
    text-align: center;
}

.settlement-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.settlement-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.settlement-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.settlement-benefits {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.settlement-benefits li {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--text-secondary);
    font-size: 0.8125rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 100px;
    border: 1px solid var(--dark-border);
    white-space: nowrap;
}

.settlement-benefits li svg {
    width: 16px;
    height: 16px;
    color: var(--neon-cyan);
}

.instant .settlement-benefits li svg { color: var(--neon-orange); }
.monthly .settlement-benefits li svg { color: var(--neon-green); }

.card-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* ========================================
   Poster Section
   ======================================== */
.poster-section {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(0, 245, 255, 0.05));
    position: relative;
    overflow: hidden;
}

.poster-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300f5ff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.poster-content {
    color: white;
}

.poster-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
}

.poster-badge svg {
    width: 18px;
    height: 18px;
}

.poster-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.poster-subtitle {
    font-size: 1rem;
    letter-spacing: 0.5em;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
    font-family: 'Orbitron', sans-serif;
}

.poster-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon-cyan);
    font-weight: 600;
    font-size: 0.9375rem;
    min-width: 100px;
}

.info-label svg {
    width: 16px;
    height: 16px;
}

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

.poster-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.poster-footer svg {
    width: 24px;
    height: 24px;
    color: var(--neon-orange);
    filter: drop-shadow(0 0 8px var(--neon-orange));
}

.poster-qr {
    flex-shrink: 0;
}

.qr-container {
    background: rgba(18, 18, 26, 0.9);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: var(--glow-cyan);
}

.qr-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.qr-corners {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--neon-cyan);
}

.corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.corner.br { bottom: 0; right: 0; border-left: none; border-top: none; }

.qr-image {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-sm);
}

.qr-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    animation: qr-scan 2s ease-in-out infinite;
}

@keyframes qr-scan {
    0%, 100% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.qr-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--neon-cyan);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-top: 1rem;
}

.qr-text svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   CTA Section - Enhanced Cyberpunk Design
   ======================================== */
.cta-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(15, 15, 25, 1) 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

/* CTA Background Effects */
.cta-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: ctaGlowPulse 8s ease-in-out infinite;
}

.cta-glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
    top: -100px;
    left: 10%;
    animation-delay: 0s;
}

.cta-glow-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
    bottom: -50px;
    right: 15%;
    animation-delay: -3s;
}

.cta-glow-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.6) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
}

@keyframes ctaGlowPulse {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.4;
    }
    33% {
        transform: scale(1.1) translate(20px, -20px);
        opacity: 0.5;
    }
    66% {
        transform: scale(0.95) translate(-10px, 10px);
        opacity: 0.35;
    }
}

.cta-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(0, 245, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(124, 58, 237, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(0, 245, 255, 0.2), transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(124, 58, 237, 0.3), transparent),
        radial-gradient(1px 1px at 230px 80px, rgba(236, 72, 153, 0.2), transparent),
        radial-gradient(2px 2px at 300px 150px, rgba(0, 245, 255, 0.3), transparent);
    background-repeat: repeat;
    background-size: 350px 200px;
    animation: ctaParticlesFloat 20s linear infinite;
}

@keyframes ctaParticlesFloat {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-200px);
    }
}

.cta-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* CTA Badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--neon-cyan);
}

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

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neon-cyan);
    letter-spacing: 0.5px;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--neon-cyan) 50%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-desc {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Stats */
.cta-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.cta-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--dark-border), transparent);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 245, 255, 0.3);
}

.cta-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 245, 255, 0.4);
}

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

.cta-btn-primary .btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.cta-btn-primary:hover .btn-shine {
    left: 100%;
}

.cta-btn-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: transparent;
    border: 2px solid var(--dark-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-btn-secondary:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 245, 255, 0.15);
}

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

.cta-btn-secondary .btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* CTA Trust */
.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-icons {
    display: flex;
    gap: 0.5rem;
}

.trust-icons svg {
    width: 24px;
    height: 24px;
    color: var(--neon-cyan);
    opacity: 0.8;
}

.trust-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* ========================================
   Footer - Modern Multi-Column Layout
   ======================================== */
.footer {
    background: linear-gradient(180deg, rgba(15, 15, 25, 1) 0%, var(--dark-surface) 100%);
    border-top: 1px solid var(--dark-border);
    position: relative;
    overflow: hidden;
}

/* Footer Background Effects */
.footer-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.footer-glow-1 {
    width: 500px;
    height: 500px;
    background: var(--neon-purple);
    top: -200px;
    right: -100px;
}

.footer-glow-2 {
    width: 400px;
    height: 400px;
    background: var(--neon-cyan);
    bottom: -150px;
    left: -100px;
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem 2rem;
}

/* Footer Layout - Brand + Links */
.footer-brand {
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-links .link-group {
    flex: 1;
    min-width: 200px;
}

.footer-links .link-group h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-links .link-group ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
}

.footer-links .link-group li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links .link-group li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--neon-cyan);
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

/* Footer Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Brand Column */
.footer-brand-col {
    max-width: 320px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-2px);
}

.footer-logo .logo-icon {
    width: 44px;
    height: 44px;
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.3));
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: rgba(0, 245, 255, 0.1);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 245, 255, 0.2);
}

/* Footer Column Titles */
.footer-col-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.title-line {
    width: 3px;
    height: 20px;
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 2px;
}

/* Footer Link List */
.footer-link-list,
.link-group ul {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-link-list li,
.link-group li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link-list li svg,
.link-group li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.link-arrow {
    font-size: 0.75rem;
    color: var(--neon-cyan);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--neon-cyan);
    padding-left: 0.5rem;
}

.footer-link:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Column */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 8px;
    color: var(--neon-cyan);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-link {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    position: relative;
}

.legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-cyan);
    transition: width 0.3s ease;
}

.legal-link:hover {
    color: var(--neon-cyan);
}

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

.legal-divider {
    color: var(--dark-border);
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Footer Decoration */
.footer-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.deco-line {
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dark-border), transparent);
}

.deco-dot {
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-cyan);
    animation: dotPulse 2s ease-in-out infinite;
}

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

/* ========================================
   Mobile Navigation
   ======================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--dark-surface);
    border-left: 1px solid var(--dark-border);
    z-index: 1000;
    padding: 5rem 1.5rem 2rem;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    min-height: 56px;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    background: rgba(0, 245, 255, 0.1);
    color: var(--neon-cyan);
}

.mobile-nav-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.mobile-nav-cta {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--gradient-cyber);
    color: white;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 56px;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }
    
    .poster-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .poster-qr {
        order: -1;
    }
    
    .info-item {
        justify-content: center;
    }
    
    .poster-footer {
        justify-content: center;
    }
    
    /* CTA Section Tablet */
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-glow-1 {
        width: 300px;
        height: 300px;
    }
    
    .cta-glow-2 {
        width: 200px;
        height: 200px;
    }
    
    .cta-glow-3 {
        width: 180px;
        height: 180px;
    }
    
    /* Footer Tablet */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand-col {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-desc {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav-overlay {
        display: block;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 5.5rem 1rem 3rem;
        min-height: auto;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .glitch-wrapper {
        margin-bottom: 1.5rem;
        padding: 0.625rem 1rem;
    }
    
    .badge-text {
        font-size: 0.8125rem;
    }
    
    .hero-title {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .title-main {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
        letter-spacing: 0.05em;
    }
    
    .title-sub {
        font-size: clamp(1rem, 4vw, 1.25rem);
        letter-spacing: 0.15em;
    }
    
    .hero-subtitle {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 1.25rem;
        letter-spacing: 0.1em;
    }
    
    .hero-divider {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .divider-line {
        max-width: 60px;
    }
    
    .divider-text {
        font-size: 0.75rem;
        letter-spacing: 0.3em;
    }
    
    .hero-desc {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .desc-item {
        font-size: 0.9375rem;
        gap: 0.625rem;
    }
    
    .desc-item svg {
        width: 18px;
        height: 18px;
    }
    
    .desc-separator {
        display: none;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 0.875rem;
    }
    
    .cyber-btn,
    .cyber-btn-outline {
        width: 100%;
        min-height: 56px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
    }
    
    .btn-content {
        font-size: 1rem;
    }
    
    /* App Hero Mobile */
    .app-hero {
        min-height: auto;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        padding: 6rem 1rem 3rem;
        gap: 2.5rem;
        text-align: center;
    }
    
    .app-hero .hero-content {
        text-align: center;
        max-width: 100%;
        order: 1;
    }
    
    .app-hero .hero-visual {
        order: 2;
    }
    
    .glass-badge {
        margin: 0 auto 1.25rem;
        padding: 0.5rem 1rem;
    }
    
    .badge-icon {
        width: 16px;
        height: 16px;
    }
    
    .badge-text {
        font-size: 0.8125rem;
    }
    
    .app-hero .hero-title {
        align-items: center;
        margin-bottom: 0.875rem;
    }
    
    .title-word,
    .title-highlight {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-subtitle-wrapper {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .subtitle-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.625rem;
    }
    
    .app-hero .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }
    
    .app-hero .hero-divider {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .app-hero .divider-line {
        flex: 0 0 40px;
    }
    
    .hero-features {
        align-items: center;
        gap: 0.625rem;
        margin-bottom: 2rem;
    }
    
    .feature-tag {
        padding: 0.5rem 0.875rem;
    }
    
    .tag-icon {
        width: 18px;
        height: 18px;
    }
    
    .feature-tag span {
        font-size: 0.875rem;
    }
    
    .app-hero .hero-cta-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-btn {
        width: 100%;
        min-height: 52px;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .cta-btn .btn-icon {
        width: 18px;
        height: 18px;
    }
    
    /* Phone Showcase Mobile */
    .phone-showcase {
        max-width: 260px;
    }
    
    .showcase-ring {
        display: none;
    }
    
    .phone-frame {
        border-radius: 32px;
        padding: 6px;
    }
    
    .phone-screen {
        border-radius: 26px;
        padding: 10px;
    }
    
    .screen-statusbar {
        padding: 3px 6px;
        margin-bottom: 6px;
    }
    
    .status-time {
        font-size: 9px;
    }
    
    .status-icon {
        width: 12px;
        height: 12px;
    }
    
    .screen-header {
        padding: 6px;
        margin-bottom: 8px;
    }
    
    .app-logo {
        width: 24px;
        height: 24px;
    }
    
    .app-name {
        font-size: 12px;
    }
    
    .screen-stats {
        gap: 6px;
        margin-bottom: 8px;
    }
    
    .stat-card {
        padding: 8px;
        border-radius: 10px;
    }
    
    .stat-icon {
        width: 16px;
        height: 16px;
        margin-bottom: 4px;
    }
    
    .stat-value {
        font-size: 12px;
    }
    
    .stat-label {
        font-size: 9px;
    }
    
    .stat-trend {
        font-size: 8px;
        padding: 1px 4px;
        top: 6px;
        right: 6px;
    }
    
    .screen-chart {
        padding: 8px;
        margin-bottom: 8px;
        border-radius: 10px;
    }
    
    .chart-header {
        margin-bottom: 8px;
    }
    
    .chart-header span:first-child {
        font-size: 10px;
    }
    
    .chart-period {
        font-size: 8px;
        padding: 1px 5px;
    }
    
    .chart-bars {
        height: 60px;
        gap: 3px;
    }
    
    .chart-labels span {
        font-size: 7px;
    }
    
    .screen-nav {
        padding: 6px;
        border-radius: 10px;
    }
    
    .nav-item svg {
        width: 16px;
        height: 16px;
    }
    
    .nav-item span {
        font-size: 8px;
    }
    
    .phone-particles .particle {
        width: 4px;
        height: 4px;
    }
    
    .phone-shadow {
        bottom: -30px;
        height: 15px;
    }
    
    /* Section Mobile */
    .section-container {
        padding: 3.5rem 1rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-tag {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .section-tag svg {
        width: 14px;
        height: 14px;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }
    
    /* Features Grid Mobile - Bento Style */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
    
    /* Feature Cards Mobile */
    .feature-card {
        min-height: 160px;
    }
    
    .feature-card .card-glass {
        min-height: 100%;
    }
    
    .feature-card .card-content-wrapper {
        padding: 1.5rem 0.875rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100%;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        width: 52px;
        height: 52px;
    }
    
    .feature-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .feature-desc {
        font-size: 0.8125rem;
        line-height: 1.5;
        text-align: center;
    }
    
    /* Advantage Cards Mobile */
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .advantage-card .card-content-wrapper {
        padding: 2rem 1.25rem;
    }
    
    .advantage-icon-wrapper {
        width: 72px;
        height: 72px;
        margin-bottom: 1.25rem;
    }
    
    .advantage-icon {
        width: 64px;
        height: 64px;
    }
    
    .advantage-title {
        font-size: 1.375rem;
        margin-bottom: 0.75rem;
    }
    
    .advantage-desc {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }
    
    .advantage-benefits {
        gap: 0.625rem;
    }
    
    .advantage-benefits li {
        padding: 0.625rem 0.875rem;
    }
    
    .benefit-check {
        width: 20px;
        height: 20px;
    }
    
    .benefit-check svg {
        width: 10px;
        height: 10px;
    }
    
    .benefit-text {
        font-size: 0.875rem;
    }
    
    /* Products Mobile */
    .products-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
    
    .product-category {
        min-height: 180px;
    }
    
    .product-category .category-content {
        padding: 1.25rem 0.875rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .category-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0.75rem;
    }
    
    .category-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .category-header {
        margin-bottom: 0.75rem;
    }
    
    .category-header h3 {
        font-size: 1rem;
    }
    
    .category-badge {
        font-size: 0.6875rem;
        padding: 0.25rem 0.625rem;
    }
    
    .category-features {
        gap: 0.5rem;
    }
    
    .category-features li {
        font-size: 0.8125rem;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .category-features li svg {
        width: 12px;
        height: 12px;
    }
    
    /* Settlement Mobile */
    .settlement-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }
    
    .settlement-card {
        min-height: 200px;
    }
    
    .settlement-card .card-content-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .settlement-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 1rem;
    }
    
    .settlement-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .settlement-desc {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }
    
    .settlement-benefits {
        gap: 0.5rem;
    }
    
    .settlement-benefits li {
        font-size: 0.75rem;
        padding: 0.375rem 0.625rem;
    }
    
    /* Poster Section Mobile */
    .poster-wrapper {
        gap: 2.5rem;
    }
    
    .poster-content {
        padding: 0;
    }
    
    .poster-badge {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .poster-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 0.75rem;
    }
    
    .poster-subtitle {
        font-size: 0.875rem;
        letter-spacing: 0.3em;
        margin-bottom: 2rem;
    }
    
    .poster-info {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .info-item {
        flex-direction: column;
        gap: 0.375rem;
        padding: 0.875rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: var(--radius);
        border: 1px solid var(--dark-border);
    }
    
    .info-label {
        font-size: 0.875rem;
        gap: 0.375rem;
    }
    
    .info-label svg {
        width: 14px;
        height: 14px;
    }
    
    .info-value {
        font-size: 0.9375rem;
    }
    
    .poster-footer {
        font-size: 1rem;
        flex-direction: row;
        justify-content: center;
        gap: 0.625rem;
    }
    
    .poster-footer svg {
        width: 24px;
        height: 24px;
    }
    
    .qr-container {
        padding: 1.25rem;
    }
    
    .qr-image {
        width: 160px;
        height: 160px;
    }
    
    .qr-text {
        font-size: 0.9375rem;
        margin-top: 0.875rem;
    }
    
    /* CTA Section Mobile */
    .cta-content {
        padding: 0 0.5rem;
    }
    
    .cta-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0.875rem;
    }
    
    .cta-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.875rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        min-height: 56px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
    }
    
    .cta-stats {
        gap: 1.5rem;
    }
    
    .cta-stat-divider {
        display: none;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* Footer Mobile */
    .footer-container {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-links .link-group {
        min-width: auto;
    }

    .footer-links .link-group h4 {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }

    .footer-links .link-group ul {
        justify-content: center;
        gap: 0.5rem 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    .footer-brand-col {
        max-width: 100%;
        text-align: center;
    }

    .footer-logo {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
    }

    .footer-logo .logo-icon {
        width: 40px;
        height: 40px;
    }

    .footer-desc {
        font-size: 0.9375rem;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col-title {
        font-size: 1rem;
        margin-bottom: 1rem;
        justify-content: center;
    }
    
    .footer-link-list {
        gap: 0.625rem;
        text-align: center;
    }
    
    .footer-link {
        justify-content: center;
        font-size: 0.9375rem;
        min-height: 44px;
    }
    
    .footer-contact-list {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    /* Small Screen Optimizations */
    .hero {
        padding: 5rem 0.875rem 2.5rem;
    }
    
    .title-main {
        font-size: clamp(2rem, 12vw, 2.75rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1.25rem, 7vw, 1.75rem);
    }
    
    .section-container {
        padding: 3rem 0.875rem;
    }
    
    /* Cards Grid - Maintain 2 columns but tighter */
    .features-grid,
    .products-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
    }
    
    .feature-card {
        min-height: 140px;
    }
    
    .feature-card .card-content-wrapper {
        padding: 1.25rem 0.625rem;
    }
    
    .feature-icon-wrapper {
        width: 52px;
        height: 52px;
        margin-bottom: 0.75rem;
    }
    
    .feature-icon {
        width: 44px;
        height: 44px;
    }
    
    .feature-title {
        font-size: 0.9375rem;
    }
    
    .feature-desc {
        font-size: 0.75rem;
    }
    
    .advantage-icon-wrapper {
        width: 64px;
        height: 64px;
        margin-bottom: 1rem;
    }
    
    .advantage-icon {
        width: 56px;
        height: 56px;
    }
    
    .advantage-title {
        font-size: 1.25rem;
    }
    
    .advantage-desc {
        font-size: 0.875rem;
    }
    
    .benefit-text {
        font-size: 0.8125rem;
    }
    
    .product-category {
        min-height: 160px;
    }
    
    .product-category .category-content {
        padding: 1rem 0.625rem;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
    }
    
    .category-header h3 {
        font-size: 0.9375rem;
    }
    
    .category-features li {
        font-size: 0.75rem;
    }
    
    .settlement-card .card-content-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .settlement-icon {
        width: 60px;
        height: 60px;
    }
    
    .settlement-title {
        font-size: 1.125rem;
    }
    
    .settlement-desc {
        font-size: 0.875rem;
    }
    
    .settlement-benefits li {
        font-size: 0.6875rem;
        padding: 0.25rem 0.5rem;
    }
    
    .qr-image {
        width: 140px;
        height: 140px;
    }
}

/* ========================================
   超小屏幕优化 (iPhone SE 等)
   ======================================== */
@media (max-width: 375px) {
    .hero {
        padding: 4.5rem 0.75rem 2rem;
    }
    
    .title-main {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-container {
        padding: 2.5rem 0.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .features-grid,
    .products-showcase {
        gap: 0.5rem;
    }
    
    .feature-card .card-content-wrapper {
        padding: 1rem 0.5rem;
    }
    
    .feature-icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: 0.625rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-title {
        font-size: 0.875rem;
    }
    
    .feature-desc {
        font-size: 0.6875rem;
    }
    
    .advantage-icon-wrapper {
        width: 56px;
        height: 56px;
        margin-bottom: 0.875rem;
    }
    
    .advantage-icon {
        width: 48px;
        height: 48px;
    }
    
    .advantage-title {
        font-size: 1.125rem;
    }
    
    .advantage-desc {
        font-size: 0.8125rem;
        margin-bottom: 1rem;
    }
    
    .advantage-benefits li {
        padding: 0.5rem 0.75rem;
    }
    
    .benefit-check {
        width: 18px;
        height: 18px;
    }
    
    .benefit-text {
        font-size: 0.75rem;
    }
    
    .product-category .category-content {
        padding: 0.875rem 0.5rem;
    }
    
    .category-icon {
        width: 36px;
        height: 36px;
    }
    
    .category-header h3 {
        font-size: 0.875rem;
    }
    
    .category-features li {
        font-size: 0.6875rem;
    }
    
    .cyber-btn,
    .cyber-btn-outline {
        min-height: 52px;
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }
}

/* ========================================
   Icon Responsive Adjustments
   ======================================== */
@media (max-width: 768px) {
    /* Tablet Icon Sizes */
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .feature-icon {
        width: 52px;
        height: 52px;
    }
    
    .advantage-icon {
        width: 64px;
        height: 64px;
    }
    
    .settlement-icon {
        width: 72px;
        height: 72px;
    }
    
    .highlight-icon,
    .support-icon,
    .commission-icon {
        width: 64px;
        height: 64px;
    }
    
    .category-icon {
        width: 48px;
        height: 48px;
    }
    
    .badge-icon {
        width: 16px;
        height: 16px;
    }
    
    .tag-icon {
        width: 18px;
        height: 18px;
    }
    
    .stat-icon {
        width: 16px;
        height: 16px;
    }
    
    .app-logo {
        width: 24px;
        height: 24px;
    }
    
    .status-icon {
        width: 12px;
        height: 12px;
    }
    
    .nav-item svg {
        width: 16px;
        height: 16px;
    }
    
    .detail-icon {
        width: 28px;
        height: 28px;
    }
    
    .btn-icon,
    .cta-icon {
        width: 18px;
        height: 18px;
    }
    
    .desc-item svg {
        width: 18px;
        height: 18px;
    }
    
    .section-tag svg {
        width: 14px;
        height: 14px;
    }
    
    .trust-icons svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-logo .logo-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    /* Mobile Icon Sizes */
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .feature-icon {
        width: 44px;
        height: 44px;
    }
    
    .advantage-icon {
        width: 56px;
        height: 56px;
    }
    
    .settlement-icon {
        width: 60px;
        height: 60px;
    }
    
    .highlight-icon,
    .support-icon,
    .commission-icon {
        width: 56px;
        height: 56px;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
    }
    
    .signal-icon {
        width: 32px;
        height: 32px;
    }
    
    .badge-icon {
        width: 14px;
        height: 14px;
    }
    
    .tag-icon {
        width: 16px;
        height: 16px;
    }
    
    .btn-icon,
    .cta-icon {
        width: 16px;
        height: 16px;
    }
    
    .detail-icon {
        width: 24px;
        height: 24px;
    }
    
    .poster-footer svg {
        width: 20px;
        height: 20px;
    }
    
    .qr-text svg {
        width: 16px;
        height: 16px;
    }
    
    .info-label svg {
        width: 14px;
        height: 14px;
    }
    
    .benefit-check {
        width: 18px;
        height: 18px;
    }
    
    .benefit-check svg {
        width: 10px;
        height: 10px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .contact-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .mobile-nav-link svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 375px) {
    /* Small Mobile Icon Sizes */
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .advantage-icon {
        width: 48px;
        height: 48px;
    }
    
    .category-icon {
        width: 36px;
        height: 36px;
    }
    
    .highlight-icon,
    .support-icon,
    .commission-icon {
        width: 48px;
        height: 48px;
    }
    
    .settlement-icon {
        width: 52px;
        height: 52px;
    }
}

/* ========================================
   触摸优化
   ======================================== */
@media (hover: none) and (pointer: coarse) {
    /* 触摸设备优化 */
    .cyber-btn:hover,
    .cyber-btn-outline:hover {
        transform: none;
    }
    
    .cyber-btn:active,
    .cyber-btn-outline:active {
        transform: scale(0.98);
    }
    
    .feature-card:hover,
    .product-category:hover,
    .settlement-card:hover {
        transform: none;
    }
    
    .feature-card:active,
    .product-category:active,
    .settlement-card:active {
        transform: scale(0.98);
    }
    
    /* 增大触摸区域 */
    .cyber-btn,
    .cyber-btn-outline,
    .nav-links a,
    .footer-links a {
        min-height: 44px;
    }
}

/* ========================================
   Reduced Motion
   ======================================== */
/* ========================================
   Accessibility Improvements
   ======================================== */

/* Focus Visible Styles */
*:focus-visible {
    outline: 2px solid var(--neon-cyan);
    outline-offset: 2px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-surface);
    color: var(--neon-cyan);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--neon-cyan);
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 1rem;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --neon-cyan: #00ffff;
        --neon-purple: #bf00ff;
        --text-secondary: rgba(255, 255, 255, 0.9);
        --text-muted: rgba(255, 255, 255, 0.8);
    }
    
    .cyber-btn {
        border: 2px solid var(--neon-cyan);
    }
    
    .feature-card,
    .product-category,
    .settlement-card {
        border: 2px solid var(--dark-border);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .cyber-grid {
        animation: none;
    }
    
    .particle {
        animation: none;
        display: none;
    }
    
    .mouse-glow {
        display: none !important;
    }
    
    .glitch::before,
    .glitch::after {
        animation: none !important;
    }
    
    .hologram-card {
        animation: none;
    }
    
    .scan-line,
    .qr-scan-line {
        animation: none;
        display: none;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-visual,
    .particles-container,
    .cyber-grid,
    .mouse-glow,
    .cta-section,
    .poster-qr {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-container {
        padding: 2rem 1rem;
    }
    
    a {
        text-decoration: underline;
        color: black;
    }
    
    .feature-card,
    .product-category,
    .settlement-card {
        break-inside: avoid;
        border: 1px solid #ccc;
        background: white;
    }
}

/* ========================================
   Nav Link Active State
   ======================================== */
.nav-link.active {
    color: var(--neon-cyan);
}

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

.mobile-nav-link.active {
    background: rgba(0, 245, 255, 0.1);
    color: var(--neon-cyan);
}

/* ========================================
   Unified Page-Level Utilities
   ======================================== */

/* Page Hero - Common hero for sub-pages */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 2rem;
    overflow: hidden;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 245, 255, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-content .badge-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 245, 255, 0.1);
    color: var(--neon-cyan);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 245, 255, 0.2);
}

.page-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero-content .neon-text {
    display: inline-block;
}

.page-hero-content .hero-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Breadcrumb - Unified */
.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.page-breadcrumb a {
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: color 0.3s;
}

.page-breadcrumb a:hover {
    color: var(--neon-cyan);
}

.page-breadcrumb .separator {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.page-breadcrumb .current {
    color: var(--neon-cyan);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Page Nav - In-page tab navigation */
.page-nav {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 0;
    border-top: 1px solid var(--dark-border);
}

.page-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 100px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.page-nav a:hover {
    background: rgba(0, 245, 255, 0.05);
    border-color: rgba(0, 245, 255, 0.3);
    color: var(--neon-cyan);
}

.page-nav a.active {
    background: rgba(0, 245, 255, 0.1);
    border-color: rgba(0, 245, 255, 0.4);
    color: var(--neon-cyan);
    font-weight: 600;
}

/* Badge Text - Unified tag/badge */
.badge-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 245, 255, 0.1);
    color: var(--neon-cyan);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(0, 245, 255, 0.2);
}

.badge-yellow {
    background: rgba(245, 197, 66, 0.1);
    color: var(--accent-yellow);
    border-color: rgba(245, 197, 66, 0.2);
}

.badge-purple {
    background: rgba(168, 85, 247, 0.1);
    color: var(--neon-purple);
    border-color: rgba(168, 85, 247, 0.2);
}

.badge-green {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success-green);
    border-color: rgba(34, 197, 94, 0.2);
}

.badge-blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    border-color: rgba(59, 130, 246, 0.2);
}

/* Image Placeholder - Styled placeholder for missing images */
.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-elevated) 100%);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(45deg, transparent 48%, rgba(0, 245, 255, 0.05) 49%, rgba(0, 245, 255, 0.05) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 245, 255, 0.05) 49%, rgba(0, 245, 255, 0.05) 51%, transparent 52%);
    background-size: 20px 20px;
}

.image-placeholder .placeholder-icon {
    width: 64px;
    height: 64px;
    color: var(--text-muted);
    opacity: 0.5;
    z-index: 1;
}

.step-image-caption {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 1rem;
    text-align: center;
}

/* Card Accent Bar - Common card top accent */
.card-accent-bar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    border-radius: 0 0 4px 4px;
}

/* Nav Link Active State */
.nav-link.active {
    background: rgba(0, 245, 255, 0.08);
    color: var(--neon-cyan);
    font-weight: 600;
}

.nav-link.active .link-line {
    width: 100%;
    background: var(--neon-cyan);
    box-shadow: 0 0 8px rgba(0, 245, 255, 0.6);
}

/* Section Container - Unified content section wrapper */
.content-section {
    padding: 5rem 0;
    position: relative;
    background: var(--dark-bg);
}

.content-section:nth-child(even) {
    background: var(--dark-surface);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header .section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header .section-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
}

/* ========================================
   Policy Page - Hero Section
   ======================================== */
.policy-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 2rem;
    overflow: hidden;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
}

.policy-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.policy-hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.policy-hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.policy-hero-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    letter-spacing: 0.1em;
}

.policy-hero-cta {
    margin-top: 1rem;
}

/* ========================================
   Breadcrumb Navigation
   ======================================== */
.breadcrumb {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--neon-cyan);
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb li[aria-current="page"] {
    color: var(--text-secondary);
}

/* ========================================
   Policy Page - Agent Policy Section
   ======================================== */
.policy-agent {
    background: var(--dark-surface);
    position: relative;
}

.policy-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.policy-highlight-card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 1px;
    overflow: hidden;
    cursor: pointer;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 100%;
    height: 100%;
}

.highlight-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.highlight-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
}

.policy-detail-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--dark-elevated);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--neon-cyan);
}

.detail-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--neon-cyan);
}

.detail-icon svg {
    width: 100%;
    height: 100%;
}

.detail-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.detail-content p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.8;
}

/* ========================================
   Policy Page - Commission Section
   ======================================== */
.policy-commission {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
}

.commission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.commission-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--dark-elevated);
    border: 1px solid var(--dark-border);
    transition: all 0.4s;
}

.commission-card:hover {
    border-color: rgba(0, 245, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.commission-card.instant:hover {
    box-shadow: 0 20px 40px -10px rgba(245, 158, 11, 0.2);
}

.commission-card.monthly:hover {
    box-shadow: 0 20px 40px -10px rgba(34, 197, 94, 0.2);
}

.commission-card .card-content-wrapper {
    background: transparent;
    padding: 3rem 2.5rem;
    text-align: center;
}

.commission-badge {
    display: inline-block;
    padding: 0.375rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.instant .commission-badge {
    background: rgba(245, 158, 11, 0.15);
    color: var(--neon-orange);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.monthly .commission-badge {
    background: rgba(34, 197, 94, 0.15);
    color: var(--neon-green);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.commission-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.commission-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.commission-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.commission-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.commission-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    border: 1px solid var(--dark-border);
}

.commission-features li svg {
    width: 16px;
    height: 16px;
    color: var(--neon-cyan);
    flex-shrink: 0;
}

.instant .commission-features li svg {
    color: var(--neon-orange);
}

.monthly .commission-features li svg {
    color: var(--neon-green);
}

/* ========================================
   Policy Page - Settlement Section
   ======================================== */
.policy-settlement {
    background: var(--dark-surface);
}

.settlement-operator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.operator-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    transition: all 0.4s;
}

.operator-card .category-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s;
}

.operator-card:hover .category-glow {
    opacity: 1;
}

.operator-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
}

.operator-card .category-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.operator-desc {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ========================================
   Policy Page - Support Section
   ======================================== */
.policy-support {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.support-card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 1px;
    overflow: hidden;
    cursor: pointer;
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    flex-shrink: 0;
}

.support-icon svg {
    width: 100%;
    height: 100%;
}

.support-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.support-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
}

/* ========================================
   Policy Page - Responsive
   ======================================== */
@media (max-width: 768px) {
    .policy-hero {
        min-height: auto;
        padding: 5.5rem 0 2rem;
    }

    .policy-hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .policy-hero-desc {
        font-size: 1rem;
        letter-spacing: 0.05em;
    }

    .breadcrumb {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }

    .breadcrumb ol {
        justify-content: center;
    }

    .policy-highlight-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .policy-highlight-card .card-content-wrapper {
        padding: 2rem 1.5rem;
    }

    .highlight-icon {
        width: 64px;
        height: 64px;
    }

    .highlight-title {
        font-size: 1.25rem;
    }

    .highlight-desc {
        font-size: 0.9375rem;
    }

    .policy-detail-box {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .commission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .commission-card .card-content-wrapper {
        padding: 2.5rem 1.5rem;
    }

    .commission-icon {
        width: 80px;
        height: 80px;
    }

    .commission-title {
        font-size: 1.5rem;
    }

    .settlement-operator-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .operator-card .category-content {
        padding: 1.5rem;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .support-card .card-content-wrapper {
        padding: 2rem 1.5rem;
    }

    .support-icon {
        width: 64px;
        height: 64px;
    }

    .support-title {
        font-size: 1.25rem;
    }

    .support-desc {
        font-size: 0.9375rem;
    }
}

/* ========================================
   Unified Page-Level Utilities - Mobile
   ======================================== */
@media (max-width: 768px) {
    .page-hero {
        min-height: auto;
        padding: 5.5rem 0 1.5rem;
    }

    .page-hero-content h1 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .page-hero-content .hero-desc {
        font-size: 1rem;
    }

    .page-breadcrumb {
        gap: 0.5rem;
    }

    .page-nav {
        gap: 0.375rem;
        padding: 0.75rem 0;
    }

    .page-nav a {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }

    .badge-text {
        font-size: 0.8125rem;
        padding: 0.375rem 0.875rem;
    }

    .image-placeholder {
        min-height: 160px;
    }

    .image-placeholder .placeholder-icon {
        width: 48px;
        height: 48px;
    }

    .content-section {
        padding: 3.5rem 0;
    }

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

@media (max-width: 480px) {
    .page-hero-content h1 {
        font-size: 1.75rem;
    }

    .page-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 0.5rem;
    }

    .page-nav::-webkit-scrollbar {
        display: none;
    }

    .page-nav a {
        flex-shrink: 0;
    }

    .policy-hero-title {
        font-size: 1.75rem;
    }

    .policy-hero-desc {
        font-size: 0.875rem;
    }

    .breadcrumb li {
        font-size: 0.8125rem;
    }

    .policy-detail-box {
        padding: 1.25rem;
    }

    .detail-content h3 {
        font-size: 1rem;
    }

    .detail-content p {
        font-size: 0.875rem;
    }
}
