
:root {
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --border-color: #334155;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --primary: #f97316;
    --primary-hover: #ea580c;
    --accent-blue: #38bdf8;
    --accent-green: #22c55e;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    padding-bottom: 70px;
}

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

.top-bar {
    background-color: #020617;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand {
    font-size: 19px;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.brand span { color: var(--primary); }

.nav-contacts { display: flex; gap: 10px; align-items: center; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-hover); }
.btn-green { background: var(--accent-green); color: white; }
.btn-green:hover { background: #16a34a; }

.hero {
    padding: 40px 0 30px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: start;
}

.hero-pill {
    display: inline-block;
    background: rgba(249, 115, 22, 0.15);
    color: var(--primary);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-h1 {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.4px;
}
.hero-h1 span { color: var(--primary); }

.hero-p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.hero-checklist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
}
.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-main);
}
.check-icon {
    width: 20px;
    height: 20px;
    background: rgba(34, 197, 94, 0.2);
    color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    flex-shrink: 0;
}

.lead-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}
.lead-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: var(--text-main);
}
.lead-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.form-group { margin-bottom: 14px; }
.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-input, .form-select {
    width: 100%;
    padding: 11px 14px;
    background: #0f172a;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    outline: none;
}
.form-input:focus, .form-select:focus {
    border-color: var(--primary);
}

.section {
    padding: 45px 0;
    border-top: 1px solid var(--border-color);
}

.section-title {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 32px;
}
.section-title h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--primary);
}
.section-title p {
    color: var(--text-muted);
    font-size: 14px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
}
.service-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--accent-blue);
}
.service-card p {
    font-size: 14px;
    color: var(--text-muted);
}

.content-block {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 28px;
    margin-bottom: 30px;
}
.content-block h2 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 12px;
}
.content-block h3 {
    font-size: 18px;
    color: var(--accent-blue);
    margin: 18px 0 8px;
}
.content-block p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.7;
}
.content-block ul {
    margin: 10px 0 18px 20px;
    color: var(--text-muted);
    font-size: 15px;
}
.content-block li {
    margin-bottom: 6px;
}

.authority-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
.authority-info h4 {
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 4px;
}
.authority-info p {
    font-size: 13px;
    color: var(--text-muted);
}
.authority-link {
    background: var(--primary);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}
.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 18px;
}
.faq-card h4 {
    font-size: 15px;
    color: var(--accent-blue);
    margin-bottom: 6px;
}
.faq-card p {
    font-size: 13px;
    color: var(--text-muted);
}

.region-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.region-pill {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s;
}
.region-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.footer {
    background: #020617;
    border-top: 1px solid var(--border-color);
    padding: 40px 0 20px;
    font-size: 13px;
    color: var(--text-muted);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
.footer h4 {
    color: var(--text-main);
    margin-bottom: 12px;
    font-size: 15px;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 12px;
}

.sticky-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f172a;
    border-top: 1px solid var(--border-color);
    padding: 10px;
    z-index: 1000;
    gap: 10px;
}
.sticky-mobile-bar a {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 13px;
    text-decoration: none;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 70px;
    left: 16px;
    right: 16px;
    max-width: 420px;
    background: #1e293b;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2000;
}
.cookie-banner h4 { font-size: 14px; margin-bottom: 6px; color: white; }
.cookie-banner p { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.cookie-btns { display: flex; gap: 10px; }
.cookie-btn-accept { flex: 1; background: var(--accent-green); color: white; border: none; padding: 8px; border-radius: 6px; font-weight: bold; cursor: pointer; }
.cookie-btn-reject { background: #334155; color: white; border: none; padding: 8px 12px; border-radius: 6px; cursor: pointer; }

@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; }
    .top-bar { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .sticky-mobile-bar { display: flex; }
}
