* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --bg: #0f172a;
    --bg-card: #1e293b;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --accent: #38bdf8;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.logo { font-size: 1.5rem; font-weight: 700; color: var(--accent); }
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.hero {
    text-align: center;
    padding: 6rem 2rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}
.hero h1 { font-size: 3rem; line-height: 1.2; margin-bottom: 1.5rem; }
.hero p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 2rem; }
.cta {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.2s;
}
.cta:hover { background: var(--primary-dark); }
section { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
h2 { font-size: 2rem; text-align: center; margin-bottom: 0.5rem; }
.subtitle { text-align: center; color: var(--text-muted); margin-bottom: 2.5rem; }
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.plans-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #334155;
    transition: border-color 0.2s;
}
.card:hover { border-color: var(--accent); }
.card h3 { margin-bottom: 0.5rem; color: var(--text); }
.card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }
.price { color: var(--accent); font-weight: 700; font-size: 1.1rem; }
.plan ul { list-style: none; margin-top: 1rem; }
.plan ul li { padding: 0.4rem 0; color: var(--text-muted); border-bottom: 1px solid #334155; }
.plan ul li:last-child { border: none; }
.featured { border-color: var(--primary); position: relative; }
.featured::before {
    content: "Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.contact-methods { display: flex; justify-content: center; gap: 1.5rem; margin: 2rem 0; flex-wrap: wrap; }
.contact-btn {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    transition: opacity 0.2s;
}
.contact-btn:hover { opacity: 0.9; }
.telegram { background: #0088cc; }
.email { background: #475569; }
.response-time { text-align: center; color: var(--text-muted); font-size: 0.9rem; }
footer {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted);
    border-top: 1px solid #334155;
    font-size: 0.9rem;
}
footer p + p { margin-top: 0.5rem; }
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .nav-links a { margin-left: 1rem; font-size: 0.9rem; }
    nav { padding: 1rem; }
    section { padding: 3rem 1rem; }
}
