/* ═══════════════════════════════════════════
   BotNPlay — Global Design System
   Dark futuristic theme with neon accents
   ═══════════════════════════════════════════ */

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-card: #16161f;
    --bg-card-hover: #1c1c28;
    --border: #1e1e2e;
    --border-light: #2a2a3d;

    --text-primary: #f0f0f5;
    --text-secondary: #8888a0;
    --text-muted: #55556a;

    --accent-purple: #6C5CE7;
    --accent-blue: #00D2FF;
    --accent-green: #00E676;
    --accent-red: #FF5252;
    --accent-yellow: #FFAB40;
    --accent-pink: #FF6B9D;

    --gradient-main: linear-gradient(135deg, #6C5CE7, #00D2FF);
    --gradient-warm: linear-gradient(135deg, #FF6B9D, #6C5CE7);
    --gradient-glow: radial-gradient(ellipse at center, rgba(108, 92, 231, 0.15), transparent 70%);

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(108, 92, 231, 0.3);
}

/* ═══════════ Reset & Base ═══════════ */

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

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

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul, ol {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════ Particles Canvas ═══════════ */

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ═══════════ Gradient Text ═══════════ */

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

/* ═══════════ Section Styling ═══════════ */

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

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-purple);
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
}

/* ═══════════ Buttons ═══════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(108, 92, 231, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
    background: rgba(108, 92, 231, 0.05);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--text-primary);
}

.btn-lang {
    background: rgba(108, 92, 231, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(108, 92, 231, 0.25);
    padding: 8px 14px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.btn-lang:hover {
    background: rgba(108, 92, 231, 0.2);
    border-color: var(--accent-purple);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

.btn-xl {
    padding: 20px 44px;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.btn-block {
    width: 100%;
}

.btn-play {
    font-size: 0.85em;
}

.btn-play-sm {
    font-size: 0.8em;
}

/* ═══════════ Navigation ═══════════ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gradient-main);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: white;
}

.logo-text .accent {
    color: var(--accent-blue);
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
}

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

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

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

/* ═══════════ Hero ═══════════ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
    text-align: center;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(108, 92, 231, 0.12), rgba(0, 210, 255, 0.05), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-purple);
    background: rgba(108, 92, 231, 0.08);
    border: 1px solid rgba(108, 92, 231, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.play-btn-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    border-radius: 50%;
    font-size: 1.4rem;
    vertical-align: middle;
    box-shadow: 0 0 30px rgba(108, 92, 231, 0.5);
    animation: pulse-glow 3s infinite;
    color: white;
    -webkit-text-fill-color: white;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(108, 92, 231, 0.5); }
    50% { box-shadow: 0 0 60px rgba(108, 92, 231, 0.8), 0 0 100px rgba(0, 210, 255, 0.3); }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

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

/* ═══════════ Hero Visual / Terminal ═══════════ */

.hero-visual {
    margin-top: 60px;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.terminal-window {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border);
}

.terminal-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; }

.terminal-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.terminal-body {
    padding: 24px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    min-height: 260px;
}

.terminal-line {
    display: flex;
    gap: 12px;
    padding: 6px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.terminal-line.visible {
    opacity: 1;
    transform: translateY(0);
}

.terminal-line.hidden {
    display: none;
}

.terminal-prompt {
    flex-shrink: 0;
}

.text-blue { color: var(--accent-blue); }
.text-purple { color: var(--accent-purple); }
.text-green { color: var(--accent-green); }
.text-yellow { color: var(--accent-yellow); }

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

.terminal-text.typing::after {
    content: '█';
    animation: blink 1s infinite;
    color: var(--accent-purple);
}

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

/* ═══════════ Trust Bar ═══════════ */

.trust-bar {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.trust-label {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-logo {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.trust-logo:hover {
    opacity: 1;
}

/* ═══════════ Problem Section ═══════════ */

.problem-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
}

.comparison-card.bad {
    background: rgba(255, 82, 82, 0.03);
    border-color: rgba(255, 82, 82, 0.15);
}

.comparison-card.good {
    background: rgba(108, 92, 231, 0.05);
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: var(--shadow-glow);
}

.comparison-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.comparison-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient-main);
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 100px;
}

.comparison-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.comparison-list li {
    padding: 8px 0;
    font-size: 0.95rem;
}

.bad-item {
    color: var(--text-muted);
}

.good-item {
    color: var(--text-primary);
}

/* ═══════════ How It Works ═══════════ */

.how-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: var(--bg-secondary);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    flex: 1;
    max-width: 320px;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-glow);
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    position: absolute;
    top: 16px;
    right: 24px;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    flex-shrink: 0;
    opacity: 0.3;
}

/* ═══════════ Feature Highlight ═══════════ */

.feature-highlight {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-content .section-tag {
    margin-bottom: 16px;
}

.feature-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.feature-content > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.feature-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.fp-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-point strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
}

.feature-point p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Orchestration Diagram */

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

.orchestration-diagram {
    position: relative;
    width: 400px;
    height: 400px;
}

.orch-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.orch-core {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: var(--gradient-main);
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 0 40px rgba(108, 92, 231, 0.5);
    animation: pulse-glow 3s infinite;
}

.orch-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.orch-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    z-index: 2;
}

.orch-node span:first-child {
    font-size: 1.5rem;
}

.orch-task {
    font-size: 0.65rem;
    color: var(--text-muted);
    background: rgba(108, 92, 231, 0.1);
    padding: 2px 10px;
    border-radius: 100px;
    margin-top: 2px;
}

.node-1 { top: 10px; left: 50%; transform: translateX(-50%); }
.node-2 { top: 90px; right: 10px; }
.node-3 { bottom: 60px; right: 10px; }
.node-4 { bottom: 60px; left: 10px; }
.node-5 { top: 90px; left: 10px; }

.orch-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.orch-line {
    stroke: var(--accent-purple);
    stroke-width: 1;
    opacity: 0.3;
    stroke-dasharray: 6 4;
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to { stroke-dashoffset: -200; }
}

/* ═══════════ Marketplace ═══════════ */

.marketplace-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.marketplace-filters {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 100px;
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(108, 92, 231, 0.1);
    border-color: var(--accent-purple);
    color: var(--text-primary);
}

.bots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.bot-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s ease;
    position: relative;
}

.bot-card:hover {
    transform: translateY(-4px);
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: var(--shadow-glow);
}

.bot-card.featured {
    border-color: rgba(108, 92, 231, 0.4);
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.08), rgba(0, 210, 255, 0.05));
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--gradient-warm);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
}

.bot-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.bot-avatar {
    font-size: 2.2rem;
}

.bot-meta {
    text-align: right;
}

.bot-category {
    font-size: 0.75rem;
    color: var(--accent-purple);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bot-rating {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.bot-rating span {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.bot-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.bot-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.bot-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.bot-tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(108, 92, 231, 0.1);
    color: var(--accent-purple);
    border: 1px solid rgba(108, 92, 231, 0.15);
}

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

.bot-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-unit {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.bot-verified {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.7rem;
    color: var(--accent-green);
    font-weight: 600;
    background: rgba(0, 230, 118, 0.08);
    padding: 3px 10px;
    border-radius: 100px;
}

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

/* ═══════════ Developers Section ═══════════ */

.dev-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.dev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.dev-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.3s ease;
}

.dev-card:hover {
    transform: translateY(-4px);
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: var(--shadow-glow);
}

.dev-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.dev-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.dev-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.dev-cta-card {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 210, 255, 0.05));
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.dev-cta-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.dev-cta-content p {
    color: var(--text-secondary);
}

/* ═══════════ Security Section ═══════════ */

.security-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

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

.security-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 230, 118, 0.3);
    box-shadow: 0 0 40px rgba(0, 230, 118, 0.1);
}

.security-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.security-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.security-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ═══════════ Pricing ═══════════ */

.pricing-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.popular {
    border-color: var(--accent-purple);
    background: linear-gradient(180deg, rgba(108, 92, 231, 0.08), var(--bg-card));
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 20px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 8px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: top;
    color: var(--text-secondary);
}

.price-value {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.pricing-credits {
    font-size: 1rem;
    color: var(--accent-purple);
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-bonus {
    font-size: 0.85rem;
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 24px;
}

.pricing-features {
    text-align: left;
    margin: 24px 0 32px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ═══════════ Testimonials ═══════════ */

.testimonials-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(108, 92, 231, 0.3);
}

.testimonial-stars {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    font-size: 2rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ═══════════ Download Hero Button ═══════════ */

.btn-download {
    background: linear-gradient(135deg, #00D2FF, #6C5CE7);
    color: white;
    font-weight: 800;
    font-size: 1.15rem;
    padding: 20px 48px;
    border-radius: var(--radius-lg);
    box-shadow:
        0 0 30px rgba(0, 210, 255, 0.4),
        0 0 60px rgba(108, 92, 231, 0.2);
    animation: download-pulse 3s infinite;
    position: relative;
    overflow: hidden;
}

.btn-download::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.08) 50%,
        transparent 70%
    );
    animation: shimmer 3s infinite;
}

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

.btn-download:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 0 40px rgba(0, 210, 255, 0.5),
        0 0 80px rgba(108, 92, 231, 0.3);
}

@keyframes download-pulse {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(0, 210, 255, 0.4),
            0 0 60px rgba(108, 92, 231, 0.2);
    }
    50% {
        box-shadow:
            0 0 50px rgba(0, 210, 255, 0.6),
            0 0 100px rgba(108, 92, 231, 0.35);
    }
}

.btn-download .dl-icon {
    flex-shrink: 0;
}

/* ═══════════ Download Section ═══════════ */

.download-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.download-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 210, 255, 0.1), rgba(108, 92, 231, 0.05), transparent 70%);
    pointer-events: none;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.08), rgba(108, 92, 231, 0.08));
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    min-width: 260px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.download-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.05), rgba(108, 92, 231, 0.05));
    opacity: 0;
    transition: opacity 0.3s;
}

.download-btn:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 210, 255, 0.5);
    box-shadow:
        0 0 30px rgba(0, 210, 255, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.os-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    color: var(--accent-blue);
    position: relative;
    z-index: 1;
}

.download-info {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.download-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.download-os {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.download-size {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(0, 210, 255, 0.08);
    padding: 4px 10px;
    border-radius: 100px;
    margin-left: auto;
    position: relative;
    z-index: 1;
}

.download-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 24px;
    position: relative;
}

/* ═══════════ Final CTA ═══════════ */

.final-cta {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.cta-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(108, 92, 231, 0.15), transparent 70%);
    pointer-events: none;
}

.cta-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.cta-card > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    flex-wrap: wrap;
}

.cta-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
}

/* ═══════════ Footer ═══════════ */

.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

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

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    font-size: 0.85rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    border-color: var(--accent-purple);
    background: rgba(108, 92, 231, 0.1);
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 6px 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-purple);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ═══════════ Animations (AOS-like) ═══════════ */

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* ═══════════ Responsive ═══════════ */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .feature-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .feature-visual {
        order: -1;
    }

    .bots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        border-bottom: 1px solid var(--border);
        gap: 16px;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .play-btn-inline {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .steps-grid {
        flex-direction: column;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .bots-grid {
        grid-template-columns: 1fr;
    }

    .dev-grid {
        grid-template-columns: 1fr;
    }

    .dev-cta-card {
        flex-direction: column;
        text-align: center;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 48px 24px;
    }

    .cta-card h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════ French language nav overrides ═══════════ */
html[lang="fr"] .nav-links {
    gap: 18px;
}

html[lang="fr"] .nav-links a {
    font-size: 0.83rem;
}

html[lang="fr"] .nav-actions {
    gap: 8px;
}

html[lang="fr"] .nav-actions .btn-ghost,
html[lang="fr"] .nav-actions .btn-primary {
    font-size: 0.83rem;
    padding: 10px 16px;
}
