/* =====================================================
   GTA RP HELPER - Landing Page Styles
   Theme: Cyberpunk/Gaming - Dark with Neon Accents
   ===================================================== */

/* CSS Variables */
:root {
    /* Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a24;
    --bg-card-hover: #22222e;
    
    /* Accent Colors - Neon */
    --accent-primary: #00ff88;
    --accent-secondary: #00d4ff;
    --accent-purple: #a855f7;
    --accent-pink: #ff006e;
    --accent-orange: #ff6b35;
    
    /* Gradients */
    --gradient-main: linear-gradient(135deg, #00ff88 0%, #00d4ff 50%, #a855f7 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0,255,136,0.3) 0%, rgba(0,212,255,0.3) 100%);
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b80;
    
    /* Fonts */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1200px;
    
    /* Effects */
    --border-glow: 0 0 20px rgba(0, 255, 136, 0.3);
    --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Effects */
#particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 60%);
}

.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px var(--accent-primary));
}

.logo .accent {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 28px;
    background: var(--gradient-main);
    color: var(--bg-primary);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 700px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: 30px;
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% { border-color: rgba(0, 255, 136, 0.3); }
    50% { border-color: rgba(0, 255, 136, 0.6); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 4px;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.5));
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-subtitle strong {
    color: var(--text-primary);
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-main);
    color: var(--bg-primary);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    background: rgba(0, 255, 136, 0.1);
}

.btn-icon {
    font-size: 1.2rem;
}

.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 25px;
    min-width: 200px;
    box-shadow: var(--shadow-card);
    animation: float 6s ease-in-out infinite;
}

.floating-card .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
}

.key-badge {
    background: var(--gradient-main);
    color: var(--bg-primary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.floating-card .card-content {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.card-1 { top: 10%; left: 10%; animation-delay: 0s; }
.card-2 { top: 5%; right: 15%; animation-delay: 1.5s; }
.card-3 { bottom: 20%; left: 5%; animation-delay: 3s; }
.card-4 { bottom: 10%; right: 10%; animation-delay: 4.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Section Styles */
section {
    position: relative;
    z-index: 2;
    padding: var(--section-padding);
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-primary);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 136, 0.02) 50%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 30px 60px -20px rgba(0, 255, 136, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card.featured {
    border-color: rgba(0, 255, 136, 0.4);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, var(--bg-card) 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-main);
    color: var(--bg-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 1px;
}

.featured-badge.beta {
    background: linear-gradient(135deg, #ff6b35 0%, #ff006e 100%);
    color: #ffffff;
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 20px;
    margin-bottom: 25px;
    font-size: 2rem;
}

.feature-key {
    display: inline-block;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: none;
}

/* Feature Submodes (for Drogue card) */
.feature-submodes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.submode {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.submode.highlight {
    background: rgba(0, 255, 136, 0.08);
    border-color: rgba(0, 255, 136, 0.25);
}

.submode-title {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.submode.highlight .submode-title {
    color: var(--accent-primary);
}

.submode .feature-list {
    margin: 0;
}

.submode .feature-list li {
    padding: 4px 0;
    font-size: 0.85rem;
}

/* How It Works */
.how-it-works {
    background: var(--bg-secondary);
    border-radius: 40px;
    margin: 80px auto;
    padding: 80px 60px !important;
    max-width: calc(var(--container-width) - 80px);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 200px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.step-arrow {
    font-size: 2rem;
    color: var(--accent-primary);
    opacity: 0.5;
}

/* Demo Section */
.demo-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.demo-window {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card), 0 0 80px rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.window-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.window-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.window-title {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.window-content {
    padding: 25px;
}

.app-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px;
    border-radius: 12px;
}

.tab {
    flex: 1;
    padding: 12px 15px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-muted);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active {
    background: var(--gradient-main);
    color: var(--bg-primary);
}

.app-panel {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 25px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.stats-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.mini-stat {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.mini-stat .label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mini-stat .value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.console {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 15px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.console-line {
    padding: 6px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.console-line:last-child {
    border-bottom: none;
}

.console-line .letter {
    color: var(--accent-primary);
    font-weight: 600;
}

.console-line.success {
    color: var(--accent-primary);
    font-weight: 600;
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 20px;
}

.demo-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-size: 1.8rem;
}

.demo-feature h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.demo-feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Demo Subtabs (for Drogue) */
.app-subtabs {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    padding: 5px;
}

.subtab {
    padding: 8px 15px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    cursor: pointer;
}

.subtab.active {
    background: rgba(0, 255, 136, 0.2);
    color: var(--accent-primary);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

/* Demo Sections */
.demo-section {
    margin-bottom: 15px;
}

.demo-section-title {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 2px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

/* Demo Config Grid */
.demo-config-grid {
    display: flex;
    gap: 15px;
}

.demo-config-item {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 12px;
}

.config-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.config-input {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.config-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.config-unit {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Demo Sequence */
.demo-sequence {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
}

.sequence-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    min-width: 60px;
}

.sequence-step.done {
    background: rgba(0, 255, 136, 0.1);
}

.sequence-step.active {
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.4);
}

.step-num {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.sequence-step.done .step-num {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

.sequence-step.active .step-num {
    background: var(--accent-secondary);
    color: var(--bg-primary);
}

.step-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-status {
    font-size: 0.8rem;
    color: var(--accent-primary);
}

.sequence-step.active .step-status {
    color: var(--accent-secondary);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-secondary);
    border-radius: 50%;
    animation: pulse-dot 1s ease-in-out infinite;
}

.sequence-arrow {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Console active line */
.console-line.active {
    color: var(--accent-secondary);
}

/* Demo Button */
.demo-button-row {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 8px;
    cursor: pointer;
}

.demo-btn-success {
    background: var(--gradient-main);
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

/* Pricing Section */
.pricing {
    text-align: center;
    padding-bottom: 150px;
}

.pricing-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 32px;
    padding: 50px 45px;
    position: relative;
    overflow: hidden;
}

.pricing-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.price-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: var(--bg-primary);
    padding: 10px 30px;
    border-radius: 0 0 20px 20px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.price-header {
    margin-bottom: 30px;
    margin-top: 30px;
}

.price-header h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.price-header p {
    color: var(--text-secondary);
}

.price-amount {
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-top: 10px;
}

.amount {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 15px;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-features li:last-child {
    border-bottom: none;
}

.check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.2);
    color: var(--accent-primary);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.paypal-button-container {
    margin: 30px 0;
    min-height: 55px;
}

#paypal-button {
    max-width: 350px;
    margin: 0 auto;
}

.secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.guarantee {
    font-size: 0.95rem;
    color: var(--accent-primary);
}

/* FAQ Section */
.faq {
    padding-top: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 255, 136, 0.2);
    transform: translateY(-5px);
}

.faq-item h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent-primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-links span {
    color: var(--text-muted);
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .demo-container {
        grid-template-columns: 1fr;
    }
    
    .demo-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .step {
        max-width: 300px;
    }
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .demo-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
    
    section {
        padding: 80px 20px;
    }
    
    .hero {
        padding: 120px 20px 60px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .how-it-works {
        margin: 40px 20px;
        padding: 40px 25px !important;
        border-radius: 24px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .pricing-card {
        padding: 40px 25px;
    }
    
    .amount {
        font-size: 4.5rem;
    }
    
    .app-tabs {
        flex-wrap: wrap;
    }
    
    .tab {
        flex: 0 0 calc(50% - 5px);
    }
    
    .stats-row {
        flex-wrap: wrap;
    }
    
    .mini-stat {
        flex: 0 0 calc(50% - 10px);
    }
}

/* Smooth scroll offset for fixed navbar */
html {
    scroll-padding-top: 100px;
}

/* Selection color */
::selection {
    background: rgba(0, 255, 136, 0.3);
    color: var(--text-primary);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 136, 0.3);
}

/* =====================================================
   ACTIVATION SECTION
   ===================================================== */

.activation {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.activation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.activation-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.activation-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.1);
    box-shadow: var(--shadow-card);
}

.activation-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.activation-step {
    text-align: center;
}

.activation-step.active {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.step-icon.success {
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.activation-step h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.activation-step > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-family: var(--font-body);
}

.license-input-container {
    position: relative;
    margin-bottom: 25px;
}

#license-key-input {
    width: 100%;
    padding: 18px 20px 18px 50px;
    font-family: var(--font-mono);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--bg-secondary);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    outline: none;
    transition: all 0.3s ease;
}

#license-key-input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

#license-key-input::placeholder {
    color: var(--text-muted);
    letter-spacing: 1px;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.btn-activate,
.btn-download {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.btn-activate:disabled,
.btn-download:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.activation-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.activation-message.error {
    background: rgba(255, 0, 110, 0.15);
    border: 1px solid rgba(255, 0, 110, 0.3);
    color: #ff6b9d;
}

.activation-message.success {
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--accent-primary);
}

.license-info {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.info-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-label {
    color: var(--text-muted);
    font-family: var(--font-body);
}

.info-value {
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.status-active {
    color: var(--accent-primary) !important;
    font-weight: 600;
}

.download-progress {
    margin: 20px 0;
}

.progress-bar {
    height: 6px;
    background: var(--bg-secondary);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-main);
    border-radius: 3px;
    animation: progressAnim 1.5s ease infinite;
}

@keyframes progressAnim {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.progress-text {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-family: var(--font-body);
}

.download-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: var(--font-body);
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 600px) {
    .activation-card {
        padding: 30px 20px;
    }

    #license-key-input {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
}

/* =====================================================
   NEWSLETTER SECTION
   ===================================================== */

.newsletter {
    padding: 100px 20px;
    position: relative;
    text-align: center;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.newsletter-card {
    position: relative;
    background: var(--bg-card);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 24px;
    padding: 50px 50px 40px;
    overflow: hidden;
}

.newsletter-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.newsletter-form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsletter-input-group {
    display: flex;
    gap: 15px;
    background: var(--bg-secondary);
    border: 2px solid rgba(0, 255, 136, 0.15);
    border-radius: 16px;
    padding: 8px;
    transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.15), inset 0 0 20px rgba(0, 255, 136, 0.03);
}

.newsletter-input-group input {
    flex: 1;
    padding: 18px 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.1rem;
    min-width: 0;
}

.newsletter-input-group input:focus {
    outline: none;
}

.newsletter-input-group input::placeholder {
    color: var(--text-muted);
}

.btn-newsletter {
    padding: 18px 35px;
    white-space: nowrap;
    font-size: 1rem;
    border-radius: 12px;
    flex-shrink: 0;
}

.newsletter-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.newsletter-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    border-radius: 14px;
    font-size: 1.05rem;
    animation: fadeIn 0.4s ease;
}

.newsletter-message.success {
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid rgba(0, 255, 136, 0.3);
    color: var(--accent-primary);
}

.newsletter-message.error {
    background: rgba(255, 70, 70, 0.1);
    border: 2px solid rgba(255, 70, 70, 0.3);
    color: #ff6b6b;
}

/* Responsive Newsletter */
@media (max-width: 700px) {
    .newsletter-card {
        padding: 40px 25px 30px;
    }

    .newsletter-input-group {
        flex-direction: column;
        padding: 5px;
        gap: 10px;
    }

    .newsletter-input-group input {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .btn-newsletter {
        width: 100%;
        padding: 16px 20px;
    }
}

/* =====================================================
   EMAIL PURCHASE FIELD (dans pricing)
   ===================================================== */

.email-purchase-container {
    margin: 24px 0;
    text-align: left;
}

.email-label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-primary);
}

.email-label .optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.9em;
}

.email-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.email-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.15);
}

.email-input::placeholder {
    color: var(--text-muted);
}

.email-note {
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =====================================================
   OFFRE DE LANCEMENT - COUNTDOWN & PRICING
   ===================================================== */

/* Countdown Timer */
.launch-countdown {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 68, 68, 0.1) 100%);
    border: 2px solid rgba(255, 107, 0, 0.4);
    border-radius: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-label {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: #FF6B00;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 4px;
    font-family: var(--font-display);
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6B00;
}

.countdown-unit {
    font-size: 1rem;
    color: var(--text-muted);
    margin-right: 8px;
}

.countdown-sep {
    font-size: 2rem;
    color: #FF6B00;
    margin: 0 2px;
}

/* Countdown urgence (moins de 24h) */
.countdown-timer.urgent .countdown-value {
    color: #FF4444;
    animation: pulse-urgent 1s ease-in-out infinite;
}

@keyframes pulse-urgent {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Launch Badge */
.price-badge.launch-badge {
    background: linear-gradient(135deg, #FF6B00 0%, #FF4444 100%);
    color: #FFFFFF;
    font-size: 0.85rem;
    padding: 10px 24px;
    animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 0, 0.5); }
    50% { box-shadow: 0 0 35px rgba(255, 107, 0, 0.8); }
}

/* Prix - Offre de lancement */
.price-amount {
    text-align: center;
    margin: 25px 0;
}

.price-amount .original-price {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #888;
    text-decoration: line-through;
    margin-right: 15px;
}

.price-amount .current-price {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-primary);
    line-height: 1;
}

.price-amount .period {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* Hero Button Launch */
.btn-launch {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 35px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF4444 100%);
    position: relative;
    overflow: hidden;
}

.btn-launch::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: btn-shine 3s ease-in-out infinite;
}

@keyframes btn-shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-launch .btn-icon {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.btn-launch .btn-original-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.btn-launch .btn-current-price {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: var(--font-display);
    line-height: 1;
}

.btn-launch .btn-launch-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .countdown-value {
        font-size: 1.8rem;
    }
    
    .countdown-sep {
        font-size: 1.5rem;
    }
    
    .price-amount .current-price {
        font-size: 3rem;
    }
    
    .price-amount .original-price {
        font-size: 1.2rem;
    }
}