:root {
    --primary-color: #020617; /* Slate 950 */
    --accent-color: #0ea5e9;  /* Sky 500 */
    --accent-hover: #0284c7;
    --text-main: #0f172a;
    --bg-light: #f8fafc;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
}

h1, h2, h3, .navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -1px;
}

/* Навигация */
.custom-nav-wrapper {
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
}

.brand-accent { color: var(--accent-color); }
.brand-accent-text { color: var(--accent-hover); }

/* Hero секция */
.hero-premium {
    background: radial-gradient(circle at top right, #0c4a6e, #020617);
    padding: 140px 0;
    color: white;
    position: relative;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.text-gradient {
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-new {
    background: rgba(14, 165, 233, 0.15);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Кнопки */
.btn-main-gold {
    background: var(--accent-color);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.4);
    transition: all 0.3s ease;
}

.btn-main-gold:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(14, 165, 233, 0.5);
}

.btn-outline-white {
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    transition: 0.3s;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-color);
}

/* Карточки статистики */
.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 24px;
    color: white;
}

.stats-glass {
    background: #020617;
    margin-top: -50px;
}

/* Форма и Контакты */
.contact-section-new {
    background: #0f172a;
}

.form-card-glass {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 32px;
}

.form-control {
    background: #1e293b;
    border: 1px solid #334155;
    
    color: white;
    padding: 15px;
}

.form-control:focus {
    background: #1e293b;
    border-color: var(--accent-color);
    color: white;
}
/* Новая Hero Секция */
.hero-split-modern {
    background: radial-gradient(circle at 0% 0%, #0f172a 0%, #020617 100%);
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Декоративный свет на фоне */
.hero-split-modern::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    z-index: 1;
}

.badge-custom {
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    color: #38bdf8;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.text-accent-glow {
    color: #38bdf8;
    text-shadow: 0 0 30px rgba(14, 165, 233, 0.4);
}

/* Кнопки */
.btn-primary-modern {
    background: #0ea5e9;
    color: white;
    padding: 16px 35px;
    border-radius: 14px;
    font-weight: 700;
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary-modern:hover {
    transform: scale(1.05);
    background: #0284c7;
    color: white;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 35px;
    border-radius: 14px;
}

/* Правая карточка */
.hero-card-visual {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    backdrop-filter: blur(20px);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    box-shadow: 20px 40px 60px rgba(0,0,0,0.5);
}

.progress-bar-custom {
    height: 6px;
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    border-radius: 10px;
    margin-top: 8px;
}

.dot-live {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    70% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

.small-caps {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
}

/* Адаптивность */
@media (max-width: 991px) {
    .hero-split-modern { text-align: center; padding: 100px 0 80px; }
    .hero-split-modern .text-start { text-align: center !important; }
    .cta-group { justify-content: center; }
}
.rounded-custom { border-radius: 2rem; }

/* Адаптивность */
@media (max-width: 768px) {
    .display-3 { font-size: 2.2rem; }
    .hero-premium { padding: 100px 0; }
    .form-control {
   max-width: 240px;
}
}