﻿:root {
    --bg-color: #050507;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --accent: #00f0ff;
    --accent-hover: #00c3d0;
    --card-bg: #0f131a;
    --border-color: #1e293b;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--bg-color); color: var(--text-main); font-family: var(--font-body);
    line-height: 1.6; overflow-x: hidden; position: relative;
}
/* Уникальный графический элемент (Неоновые сферы) */
.glowing-orb {
    position: absolute; width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,240,255,0.15) 0%, rgba(0,0,0,0) 70%);
    top: -200px; right: -200px; z-index: -1; pointer-events: none; filter: blur(50px);
}
.glowing-orb-2 { top: 40%; left: -300px; }

header { padding: 2rem 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-color); background: rgba(5,5,7,0.8); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; }
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: #fff; text-decoration: none; display: flex; align-items: center; gap: 10px;}
.logo img { width: 30px; height: 30px; }
nav a { color: var(--text-main); text-decoration: none; margin-left: 2rem; font-weight: 500; transition: color 0.3s; }
nav a:hover { color: var(--accent); }

section { padding: 6rem 5%; }
h1, h2, h3 { font-family: var(--font-heading); color: #fff; line-height: 1.1; }
h1 { font-size: clamp(3rem, 6vw, 5.5rem); margin-bottom: 1.5rem; letter-spacing: -1px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 2rem; }

.hero { min-height: 80vh; display: flex; align-items: center; gap: 4rem; flex-wrap: wrap; }
.hero-content { flex: 1; min-width: 300px; }
.hero-content p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 600px; }
.hero-image { flex: 1; min-width: 300px; position: relative; }
.hero-image img { width: 100%; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); object-fit: cover; aspect-ratio: 4/3; }

.btn { display: inline-block; background: var(--accent); color: #000; padding: 1rem 2.5rem; border-radius: 50px; font-weight: 700; text-decoration: none; border: none; cursor: pointer; transition: all 0.3s; font-size: 1.1rem; }
.btn:hover { background: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,240,255,0.2); }
.btn:disabled { background: #334155; cursor: not-allowed; transform: none; box-shadow: none; color: #94a3b8;}

.features { background: var(--card-bg); display: flex; align-items: center; gap: 4rem; flex-wrap: wrap-reverse; }
.features-img { flex: 1; min-width: 300px; }
.features-img img { width: 100%; border-radius: 20px; object-fit: cover; }
.features-text { flex: 1; min-width: 300px; }
.feature-list { list-style: none; margin-top: 2rem; }
.feature-list li { margin-bottom: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; font-size: 1.1rem; }
.feature-list i { color: var(--accent); font-size: 1.5rem; margin-top: 3px; }

.random-section { text-align: center; border-top: 1px solid var(--border-color); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.process-card { background: var(--bg-color); padding: 2.5rem; border: 1px solid var(--border-color); border-radius: 15px; text-align: left; }
.process-card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 1.5rem; }

.form-section { background: linear-gradient(135deg, var(--card-bg) 0%, #050507 100%); border-top: 1px solid var(--border-color); display: flex; justify-content: center; }
.form-container { background: var(--bg-color); padding: 3rem; border-radius: 20px; border: 1px solid var(--border-color); max-width: 600px; width: 100%; box-shadow: 0 25px 50px rgba(0,0,0,0.5); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.9rem; color: var(--text-muted); }
.form-group input { width: 100%; padding: 1rem; background: var(--card-bg); border: 1px solid var(--border-color); color: #fff; border-radius: 8px; font-family: var(--font-body); font-size: 1rem; transition: border 0.3s; }
.form-group input:focus { outline: none; border-color: var(--accent); }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 2rem; }
.checkbox-group input { width: auto; margin-top: 5px; }
.checkbox-group label { font-size: 0.85rem; color: var(--text-muted); }
#form-success { display: none; text-align: center; padding: 2rem; }
#form-success i { font-size: 4rem; color: #10b981; margin-bottom: 1rem; }

.faq { max-width: 800px; margin: 0 auto; }
details { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 10px; margin-bottom: 1rem; overflow: hidden; }
summary { padding: 1.5rem; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: #fff; }
summary::-webkit-details-marker { display: none; }
summary:after { content: '\f107'; font-family: 'FontAwesome'; color: var(--accent); transition: transform 0.3s; }
details[open] summary:after { transform: rotate(180deg); }
.details-content { padding: 0 1.5rem 1.5rem; color: var(--text-muted); }

footer { background: var(--card-bg); padding: 4rem 5% 2rem; border-top: 1px solid var(--border-color); text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: #fff; }
.footer-copy { color: #475569; font-size: 0.9rem; }

.cookie-banner { position: fixed; bottom: -100%; left: 0; width: 100%; background: var(--card-bg); border-top: 1px solid var(--border-color); padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; z-index: 1000; transition: bottom 0.5s ease-in-out; box-shadow: 0 -10px 30px rgba(0,0,0,0.5); }
.cookie-banner.show { bottom: 0; }
.cookie-text { flex: 1; min-width: 300px; font-size: 0.9rem; color: var(--text-muted); }
.cookie-btns { display: flex; gap: 1rem; }
.btn-outline { background: transparent; border: 1px solid var(--border-color); color: #fff; }

/* Стили для юридических страниц */
.legal-main { padding: 6rem 5%; min-height: 80vh; }
.legal-container { background: #ffffff; color: #1e293b; max-width: 900px; margin: 0 auto; padding: 4rem; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.legal-container h1 { color: #0f172a; margin-bottom: 2rem; font-size: 2.5rem; border-bottom: 2px solid #f1f5f9; padding-bottom: 1rem; }
.legal-container h2 { color: #0f172a; font-size: 1.5rem; margin: 2rem 0 1rem; }
.legal-container p, .legal-container ul { margin-bottom: 1.2rem; font-family: var(--font-body); font-size: 1.05rem; line-height: 1.7; }
.legal-container ul { padding-left: 2rem; }
.legal-container a { color: #0284c7; }

@media (max-width: 768px) {
    header { flex-direction: column; gap: 1rem; }
    nav { display: flex; flex-wrap: wrap; justify-content: center; }
    nav a { margin: 0 1rem; }
    .legal-container { padding: 2rem; }
}
