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

:root {
    --bg: #0a0a0f;
    --bg2: #12121a;
    --text: #e0e0e8;
    --text-muted: #8888a0;
    --accent: #4FC3F7;
    --accent2: #7C4DFF;
    --gold: #D4AF37;
    --card-bg: #16162a;
    --border: #1e1e35;
}

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

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

/* Lang Toggle */
.lang-toggle {
    position: fixed; top: 20px; right: 20px; z-index: 100;
    display: flex; gap: 4px; background: var(--card-bg); border-radius: 8px; padding: 4px;
    border: 1px solid var(--border);
}
.lang-btn {
    background: none; border: none; color: var(--text-muted); padding: 6px 12px;
    cursor: pointer; border-radius: 6px; font-size: 13px; font-weight: 500;
}
.lang-btn.active { background: var(--accent); color: #000; }

/* Hero */
.hero {
    padding: 120px 0 80px; text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(79,195,247,0.08) 0%, transparent 60%);
}
.badge {
    display: inline-block; padding: 6px 16px; border-radius: 20px;
    background: rgba(79,195,247,0.1); color: var(--accent); font-size: 14px;
    margin-bottom: 24px; border: 1px solid rgba(79,195,247,0.2);
}
h1 {
    font-size: clamp(32px, 5vw, 56px); font-weight: 700; line-height: 1.15;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.subtitle { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto 40px; }

.cta-btn {
    display: inline-block; padding: 14px 36px; border-radius: 10px;
    background: var(--accent); color: #000; font-weight: 600; font-size: 16px;
    text-decoration: none; transition: all 0.2s;
}
.cta-btn:hover { background: #3DAEE0; transform: translateY(-1px); }
.cta-btn.secondary { background: var(--card-bg); color: var(--text); border: 1px solid var(--border); }
.cta-btn.secondary:hover { border-color: var(--accent); }

/* Features */
.features { padding: 80px 0; }
.features h2, .pricing h2, .how-it-works h2 { text-align: center; font-size: 36px; margin-bottom: 48px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.feature-card {
    background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px;
    padding: 32px; transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--accent); }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 15px; }

/* Pricing */
.pricing { padding: 80px 0; background: var(--bg2); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 960px; margin: 0 auto; }
.price-card {
    background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px;
    padding: 36px 28px; text-align: center; position: relative;
}
.price-card.featured { border-color: var(--accent); transform: scale(1.03); }
.popular-tag {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #000; padding: 4px 16px; border-radius: 12px;
    font-size: 12px; font-weight: 600;
}
.plan-badge {
    display: inline-block; padding: 4px 14px; border-radius: 8px;
    font-size: 13px; font-weight: 600; margin-bottom: 16px;
}
.plan-badge.basic { background: rgba(102,187,106,0.15); color: #66BB6A; }
.plan-badge.pro { background: rgba(79,195,247,0.15); color: var(--accent); }
.plan-badge.enterprise { background: rgba(171,71,188,0.15); color: #AB47BC; }
.price { font-size: 48px; font-weight: 700; margin-bottom: 24px; }
.price span { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.price-card ul { list-style: none; text-align: left; margin-bottom: 28px; }
.price-card li { padding: 8px 0; color: var(--text-muted); font-size: 14px; border-bottom: 1px solid var(--border); }
.price-card li:before { content: "✓ "; color: var(--accent); }
.price-card .cta-btn { width: 100%; text-align: center; }
.payment-note { text-align: center; color: var(--text-muted); margin-top: 32px; font-size: 14px; }

/* How it Works */
.how-it-works { padding: 80px 0; }
.steps { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.step { text-align: center; max-width: 250px; }
.step-num {
    width: 48px; height: 48px; border-radius: 50%; background: var(--accent);
    color: #000; font-weight: 700; font-size: 20px; display: flex;
    align-items: center; justify-content: center; margin: 0 auto 16px;
}
.step h3 { font-size: 16px; font-weight: 500; }

/* Footer */
footer { padding: 40px 0; text-align: center; color: var(--text-muted); font-size: 14px; border-top: 1px solid var(--border); }
footer a { color: var(--accent); text-decoration: none; }

@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .price-card.featured { transform: none; }
    .steps { flex-direction: column; align-items: center; }
}

/* Login Section */
.login-section { padding: 80px 0; background: var(--bg2); }
.login-section h2 { text-align: center; font-size: 36px; margin-bottom: 16px; }

/* Selected plan */
.price-card.selected { border-color: #66BB6A; box-shadow: 0 0 20px rgba(102,187,106,0.2); }
.price-card.selected .cta-btn, .price-card.selected .cta-btn.secondary { background: #66BB6A; color: #000; border-color: #66BB6A; }

/* Contacts */
.contacts { padding: 60px 0; }
.contacts h2 { text-align: center; font-size: 28px; margin-bottom: 16px; }
