/* =============================================================================
   OpenClaw Shop v3 — Premium Dark Theme + Sales Optimized
   ============================================================================= */

:root {
    --primary: #7C6CF0;
    --primary-hover: #6B5CE0;
    --primary-glow: rgba(124, 108, 240, 0.4);
    --accent: #FF6B9D;
    --accent-2: #4ECDC4;
    --bg: #08080C;
    --bg-elevated: #0E0E14;
    --bg-card: #111118;
    --bg-card-hover: #16161F;
    --text: #EEEEF0;
    --text-secondary: #8B8BA0;
    --text-muted: #55556A;
    --border: #1E1E2A;
    --border-hover: #2E2E40;
    --success: #4ECDC4;
    --warning: #FFB347;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

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

a { color: var(--primary); text-decoration: none; }
a:hover { color: #A29BFE; }

/* ─── Urgency Banner ─────────────────────────────────────────────────────── */
.urgency-banner {
    background: linear-gradient(90deg, rgba(255, 107, 157, 0.15), rgba(124, 108, 240, 0.15));
    border-bottom: 1px solid rgba(255, 107, 157, 0.2);
    text-align: center;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    position: relative;
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.urgency-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: urgency-blink 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes urgency-blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 107, 157, 0.6); }
    50% { opacity: 0.6; box-shadow: 0 0 8px 4px rgba(255, 107, 157, 0.2); }
}

/* ─── Nav ─────────────────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(8, 8, 12, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(30, 30, 42, 0.5);
    transition: top 0.3s;
}
.has-banner .nav { top: 37px; }
.nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo-icon { font-size: 1.4rem; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
    background: var(--primary) !important;
    color: white !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: all 0.2s;
}
.nav-cta:hover { background: var(--primary-hover) !important; transform: translateY(-1px); }

/* Language toggle */
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 12px;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.2s;
}
.lang-toggle:hover {
    border-color: var(--border-hover);
    color: var(--text);
    background: var(--bg-card-hover);
}
#lang-flag { font-size: 1rem; line-height: 1; }

/* ─── Hero ────────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    text-align: center;
    padding: 180px 24px 40px;
    overflow: hidden;
}
.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.4;
    pointer-events: none;
    animation: glow-pulse 8s ease-in-out infinite;
}
.hero-glow-2 {
    position: absolute;
    top: -100px;
    left: 30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 107, 157, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: glow-pulse 6s ease-in-out infinite reverse;
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateX(-50%) scale(1.1); }
}
.hero-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.3);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}
.hero h1 {
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -2px;
}
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--accent-2));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 6s ease infinite;
}
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-guarantee {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ─── Hero Visual — Mockup Window ─────────────────────────────────────────── */
.hero-visual {
    position: relative;
    max-width: 720px;
    margin: 60px auto 0;
    z-index: 2;
}
.mockup-window {
    background: #0C0C12;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 20px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(124, 108, 240, 0.08);
}
.mockup-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #111118;
    border-bottom: 1px solid var(--border);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-hover);
}
.mockup-dots span:first-child { background: #FF5F57; }
.mockup-dots span:nth-child(2) { background: #FEBC2E; }
.mockup-dots span:nth-child(3) { background: #28C840; }
.mockup-url {
    flex: 1;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    background: var(--bg);
    padding: 4px 16px;
    border-radius: 6px;
}
.mockup-body {
    display: flex;
    min-height: 260px;
}
.mockup-sidebar {
    width: 140px;
    background: rgba(14, 14, 20, 0.8);
    border-right: 1px solid var(--border);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mockup-sb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
    cursor: default;
    transition: background 0.2s;
}
.mockup-sb-item.active {
    background: rgba(124, 108, 240, 0.1);
    color: var(--text);
}
.sb-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    flex-shrink: 0;
}
.sb-dot.green { background: var(--success); }

.mockup-chat {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: flex-end;
}
.chat-msg {
    display: flex;
    gap: 10px;
    animation: msg-in 0.5s ease both;
}
.chat-msg.user {
    justify-content: flex-end;
}
.chat-msg.user span {
    background: var(--primary);
    color: white;
    padding: 10px 16px;
    border-radius: 14px 14px 4px 14px;
    font-size: 0.85rem;
    max-width: 320px;
}
.chat-msg.ai {
    align-items: flex-start;
}
.ai-avatar {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(124, 108, 240, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.ai-text {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 12px 16px;
    border-radius: 4px 14px 14px 14px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 340px;
    line-height: 1.6;
}
@keyframes msg-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Typing dots animation */
.typing-dots {
    display: flex;
    gap: 4px;
    padding: 4px 0;
}
.typing-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    animation: typing-bounce 1.4s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* Floating cards */
.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
    z-index: 3;
    white-space: nowrap;
}
.float-icon { font-size: 1rem; }
.float-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}
.float-2 {
    bottom: 60px;
    left: -30px;
    animation-delay: -2s;
}
.float-3 {
    bottom: -10px;
    right: 40px;
    animation-delay: -4s;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    font-family: inherit;
}
.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
}
.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}
.btn-ghost:hover {
    border-color: var(--border-hover);
    color: var(--text);
    background: var(--bg-elevated);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(124, 108, 240, 0.05);
}
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Trust ────────────────────────────────────────────────────────────────── */
.trust {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-label {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.trust-logo {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.7;
}
.trust-divider { color: var(--text-muted); }

/* ─── Section Headers ─────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
    display: inline-block;
    background: rgba(124, 108, 240, 0.08);
    border: 1px solid rgba(124, 108, 240, 0.2);
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
}
.section-sub {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-top: 12px;
}

/* ─── Features ────────────────────────────────────────────────────────────── */
.features { padding: 120px 0; }

/* Big feature hero card (privacy) */
.feature-hero-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    margin-bottom: 24px;
    align-items: center;
}
.fhc-icon { font-size: 2.5rem; margin-bottom: 16px; }
.fhc-content h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.fhc-content p { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; }

/* Privacy visualization */
.privacy-viz {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.viz-your-server {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    width: 100%;
    text-align: center;
}
.viz-label {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.viz-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}
.viz-item {
    background: var(--bg-elevated);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    border: 1px solid var(--border);
    font-weight: 500;
}
.viz-item.pulse-1 { animation: viz-pulse 3s ease-in-out infinite; }
.viz-item.pulse-2 { animation: viz-pulse 3s ease-in-out infinite 0.5s; }
.viz-item.pulse-3 { animation: viz-pulse 3s ease-in-out infinite 1s; }
.viz-item.pulse-4 { animation: viz-pulse 3s ease-in-out infinite 1.5s; }
@keyframes viz-pulse {
    0%, 100% { border-color: var(--border); }
    50% { border-color: var(--primary); box-shadow: 0 0 12px rgba(124, 108, 240, 0.15); }
}
.viz-shield {
    background: rgba(78, 205, 196, 0.08);
    border: 1px solid rgba(78, 205, 196, 0.25);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--accent-2);
    font-weight: 600;
    display: inline-block;
}
.viz-blocked {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.82rem;
}
.viz-block-line {
    width: 40px;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--text-muted) 0px,
        var(--text-muted) 4px,
        transparent 4px,
        transparent 8px
    );
}
.viz-block-label { font-weight: 600; }

/* Feature grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}
.feature-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}
.fc-icon { font-size: 1.8rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* ─── Personas / Use Cases ───────────────────────────────────────────────── */
.personas {
    padding: 120px 0;
    background: var(--bg-elevated);
}
.persona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.persona-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    transition: all 0.3s;
}
.persona-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.persona-emoji {
    font-size: 2.2rem;
    margin-bottom: 16px;
}
.persona-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.persona-use {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}
.persona-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.persona-tags span {
    background: rgba(124, 108, 240, 0.08);
    border: 1px solid rgba(124, 108, 240, 0.15);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

/* ─── Showcase (metrics) ──────────────────────────────────────────────────── */
.showcase {
    padding: 80px 0;
}
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.showcase-stat {
    text-align: center;
    padding: 32px 16px;
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--text), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 8px;
}
.stat-unit {
    font-size: 1.5rem;
    letter-spacing: 0;
}
.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ─── How it works ────────────────────────────────────────────────────────── */
.how { padding: 120px 0; }
.how-grid {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.how-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px;
    border-radius: var(--radius);
    transition: all 0.2s;
    border: 1px solid transparent;
}
.how-step:hover, .how-step.active {
    background: var(--bg-card);
    border-color: var(--border);
}
.how-step.active { border-color: var(--primary); }
.how-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-muted);
    min-width: 48px;
    letter-spacing: -1px;
}
.how-step.active .how-num { color: var(--primary); }
.how-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.how-content p { color: var(--text-secondary); font-size: 0.9rem; }

/* ─── Demo / Terminal ─────────────────────────────────────────────────────── */
.demo-section {
    padding: 120px 0;
    background: var(--bg-elevated);
}
.terminal-wrapper {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}
.terminal {
    background: #0C0C12;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(124, 108, 240, 0.08);
}
.terminal-header {
    background: #111118;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}
.terminal-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green { background: #28C840; }
.terminal-title { color: var(--text-muted); font-size: 0.8rem; font-family: 'JetBrains Mono', monospace; }
.terminal-body {
    padding: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.8;
    min-height: 200px;
}
.term-line { margin-bottom: 2px; }
.term-prompt { color: var(--primary); font-weight: 500; }
.term-response { color: var(--text-secondary); }
.term-highlight { color: var(--accent-2); }
.term-bold { color: var(--text); font-weight: 600; }
.cursor {
    display: inline-block;
    animation: blink 1s step-end infinite;
    color: var(--primary);
}
@keyframes blink { 50% { opacity: 0; } }

/* ─── Comparison Table ───────────────────────────────────────────────────── */
.comparison {
    padding: 120px 0;
}
.compare-table-wrap {
    max-width: 700px;
    margin: 0 auto;
    overflow-x: auto;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.compare-table th,
.compare-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.compare-table thead th {
    font-weight: 700;
    font-size: 1rem;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}
.compare-table thead th:first-child { width: 40%; }
.compare-them {
    color: var(--text-muted);
    text-align: center !important;
}
.compare-us {
    text-align: center !important;
    color: var(--text);
    font-weight: 600;
}
.compare-us.highlight {
    color: var(--success);
    font-weight: 700;
}
.compare-them.dim {
    color: var(--text-muted);
    opacity: 0.7;
}
.compare-table small {
    font-weight: 400;
    color: var(--text-muted);
}
.compare-table tbody tr:hover {
    background: rgba(124, 108, 240, 0.03);
}
.compare-table thead .compare-us {
    background: rgba(124, 108, 240, 0.08);
    border-radius: 10px 10px 0 0;
    color: var(--primary);
}

/* ─── Pricing ─────────────────────────────────────────────────────────────── */
.pricing { padding: 120px 0; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}
.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.price-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.price-card.popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(124, 108, 240, 0.06) 0%, var(--bg-card) 40%);
    box-shadow: 0 0 60px rgba(124, 108, 240, 0.1);
}
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.pc-header { margin-bottom: 24px; }
.pc-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.pc-desc { color: var(--text-muted); font-size: 0.85rem; }
.pc-price { margin-bottom: 4px; }
.pc-amount { font-size: 3.5rem; font-weight: 900; letter-spacing: -2px; }
.pc-period { color: var(--text-muted); font-size: 1rem; }
.pc-setup {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 4px;
}
.pc-setup s { text-decoration: line-through; opacity: 0.6; }
.pc-launch-offer {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 24px;
}
.pc-features {
    list-style: none;
    margin-bottom: 20px;
    flex: 1;
}
.pc-features li {
    padding: 10px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(30, 30, 42, 0.5);
}
.pc-features li.muted { color: var(--text-muted); }
.check { color: var(--success); font-weight: 700; font-size: 1rem; }
.x { color: var(--text-muted); }
.pc-guarantee {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    justify-content: center;
}

/* ─── Testimonials ───────────────────────────────────────────────────────── */
.testimonials {
    padding: 120px 0;
    background: var(--bg-elevated);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    transition: all 0.3s;
}
.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.tc-stars {
    color: #FFB347;
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.tc-quote {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}
.tc-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.tc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(124, 108, 240, 0.1);
    border: 1px solid rgba(124, 108, 240, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}
.tc-name {
    font-weight: 600;
    font-size: 0.9rem;
}
.tc-role {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ─── FAQ ─────────────────────────────────────────────────────────────────── */
.faq { padding: 120px 0; }
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item summary {
    padding: 20px 0;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}
.faq-item summary:hover { color: var(--primary); }
.faq-item summary::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--text-muted);
    transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
    padding: 0 0 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ─── CTA ─────────────────────────────────────────────────────────────────── */
.cta { padding: 120px 0; }
.cta-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(124, 108, 240, 0.1), rgba(255, 107, 157, 0.05));
    border: 1px solid rgba(124, 108, 240, 0.2);
    border-radius: var(--radius-xl);
    padding: 80px 40px;
}
.cta-urgency {
    display: inline-block;
    background: rgba(255, 107, 157, 0.12);
    border: 1px solid rgba(255, 107, 157, 0.25);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.cta-box h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.cta-box p { color: var(--text-secondary); margin-bottom: 32px; font-size: 1.1rem; }
.cta-trust {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}
.cta-trust span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ─── Footer ──────────────────────────────────────────────────────────────── */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-brand { font-weight: 700; color: var(--text-secondary); font-size: 0.9rem; }
.footer-links { color: var(--text-muted); font-size: 0.85rem; }
.footer-links a { color: var(--text-secondary); }
.footer-sep { margin: 0 8px; }

/* ─── Modal ───────────────────────────────────────────────────────────────── */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal.hidden { display: none; }
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}
.modal-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    max-width: 440px;
    width: 90%;
    z-index: 1;
    animation: modal-in 0.3s ease;
}
@keyframes modal-in {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.6rem;
    cursor: pointer;
    transition: color 0.2s;
}
.modal-close:hover { color: var(--text); }
.modal-icon { font-size: 2.5rem; text-align: center; margin-bottom: 8px; }
.modal-content h2 { text-align: center; font-size: 1.4rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; }
.form-group input {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
}
.form-group input:focus { outline: none; border-color: var(--primary); }
.form-group input::placeholder { color: var(--text-muted); }
.form-group small { display: block; margin-top: 4px; color: var(--text-muted); font-size: 0.8rem; }
.plan-summary {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.9rem;
}
.modal-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 12px;
}
.modal-guarantee {
    text-align: center;
    color: var(--accent-2);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 8px;
}

/* ─── Scroll reveal animation ─────────────────────────────────────────────── */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .feature-hero-card { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
    .showcase-grid { grid-template-columns: repeat(2, 1fr); }
    .mockup-sidebar { display: none; }
    .float-card { display: none; }
    .persona-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .testimonial-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .compare-table-wrap { margin: 0 -12px; }
    .compare-table th,
    .compare-table td { padding: 12px 14px; font-size: 0.85rem; }
    .cta-trust { flex-direction: column; align-items: center; gap: 12px; }
}
@media (max-width: 600px) {
    .feature-grid { grid-template-columns: 1fr; }
    .nav-links a:not(.nav-cta):not(.lang-toggle) { display: none; }
    .nav-links { gap: 12px; }
    .hero { padding: 160px 20px 40px; }
    .hero h1 { letter-spacing: -1px; }
    .cta-box { padding: 48px 24px; }
    .showcase-grid { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 2.5rem; }
    .feature-hero-card { padding: 28px; }
    .hero-visual { margin-top: 40px; }
    .mockup-body { min-height: 180px; }
    .chat-msg.user span,
    .ai-text { max-width: 100%; font-size: 0.78rem; }
    .urgency-banner { font-size: 0.78rem; padding: 8px 16px; }
}
