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

:root {
    --primary: #22c55e;
    --primary-dark: #16a34a;
    --bg: #0f1a12;
    --bg-card: #1a2e1f;
    --text: #f0fdf4;
    --text-muted: #86efac;
    --border: #2d4a35;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.bg-pattern {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(15, 26, 18, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}

.logo-emoji { font-size: 1.5rem; }

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #4ade80);
    color: #0f1a12;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.btn-white {
    background: white;
    color: var(--bg);
}

.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }

/* Hero */
.hero {
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero-content { max-width: 700px; margin: 0 auto; }

.badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.2);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-buttons { margin-bottom: 2rem; }

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Stats */
.stats {
    padding: 3rem 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat .num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat .label {
    color: var(--text-muted);
}

/* Features */
.features {
    padding: 5rem 0;
}

.features h2, .howto h2, .faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature h3 { margin-bottom: 0.5rem; }
.feature p { color: var(--text-muted); font-size: 0.95rem; }

/* How to */
.howto {
    padding: 5rem 0;
    background: var(--bg-card);
}

.steps {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.step {
    text-align: center;
    max-width: 250px;
}

.step-num {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #4ade80);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg);
    margin: 0 auto 1rem;
}

.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--text-muted); font-size: 0.9rem; }

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

/* FAQ */
.faq { padding: 5rem 0; }

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item h3 { margin-bottom: 0.5rem; color: var(--primary); }
.faq-item p { color: var(--text-muted); }

/* CTA Section */
.cta-section { padding: 5rem 0; }

.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
}

.cta-box h2 { font-size: 2rem; margin-bottom: 1rem; color: var(--bg); }
.cta-box p { margin-bottom: 2rem; color: var(--bg); opacity: 0.9; }

/* Footer */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 2rem 0;
}

.footer-content { text-align: center; }
.footer-logo { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.footer-links { margin-bottom: 1rem; }
.footer-links a { color: var(--text-muted); margin: 0 1rem; text-decoration: none; }
.footer p { color: var(--text-muted); font-size: 0.9rem; }

/* Mobile */
@media (max-width: 768px) {
    .header .container { flex-wrap: wrap; gap: 1rem; }
    .nav { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .steps { flex-direction: column; align-items: center; }
    .trust-badges { flex-direction: column; gap: 0.5rem; }
}

