:root {
    --bg-dark: #050505;
    --card-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #9CA3AF;
    
    /* Акцентный градиент (Neon Red/Orange) */
    --accent-gradient: linear-gradient(135deg, #FF3E3E 0%, #FF8A00 100%);
    --accent-color: #FF3E3E;
    
    --font-main: 'Manrope', sans-serif;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { 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;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.background-glow {
    position: fixed;
    top: -20%; left: -10%;
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(255, 62, 62, 0.15) 0%, rgba(0,0,0,0) 70%);
    filter: blur(80px);
    z-index: -1;
    animation: pulse 10s infinite alternate;
}
.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

@keyframes pulse {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10%, 10%) scale(1.1); }
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* Typography */
h1, h2, h3 { line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 24px; }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 16px; }

/* Utilities */
.section-spacing { margin-bottom: 120px; }
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}
.fade-in-up { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; transform: translateY(20px); }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Header */
.glass-header {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 0;
}
.nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 800; font-size: 1.25rem; display: flex; align-items: center; gap: 8px; letter-spacing: -0.5px; }
.region-badge {
    font-size: 0.65rem; font-weight: 600; 
    padding: 2px 6px; border-radius: 4px; 
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
}
.desktop-nav { display: flex; align-items: center; gap: 32px; }
.nav-link { font-weight: 600; font-size: 0.95rem; color: var(--text-muted); }
.nav-link:hover { color: white; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 28px; border-radius: 100px;
    font-weight: 700; font-size: 0.95rem;
    border: none; cursor: pointer; transition: var(--transition);
}
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-glow {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 62, 62, 0.3);
}
.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 62, 62, 0.5);
}
.btn-outline {
    background: transparent; border: 1px solid rgba(255,255,255,0.2); color: white;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.05); }

/* Hero Section */
.hero { min-height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; padding-top: 80px; }
.hero-content { max-width: 900px; }
.hero-label { 
    display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; 
    color: var(--accent-color); margin-bottom: 16px; text-transform: uppercase;
}
.hero h1 {
    background: linear-gradient(180deg, #FFFFFF 0%, #aaaaaa 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-intro { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Region Info Card */
.region-card { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.region-text { padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.region-text p { color: var(--text-muted); margin-bottom: 32px; font-size: 1.1rem; }
.features-grid { display: grid; gap: 20px; }
.feature-item { display: flex; align-items: center; gap: 12px; font-weight: 600; color: white; }
.feature-item i { color: var(--accent-color); font-size: 1.2rem; }
.map-frame { height: 100%; min-height: 400px; position: relative; }
.map-frame iframe { width: 100%; height: 100%; border: none; filter: grayscale(1) contrast(1.2) brightness(0.8); }

/* Releases Grid */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.decoration-line { height: 1px; background: rgba(255,255,255,0.1); flex-grow: 1; margin-left: 30px; }
.releases-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 32px;
}
.release-card {
    background: transparent; border-radius: var(--radius-md); overflow: hidden;
    transition: var(--transition); position: relative; group;
}
.release-card:hover { transform: translateY(-8px); }
.release-cover {
    width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-md);
    margin-bottom: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.release-title { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 4px; }
.release-artist { color: var(--text-muted); font-size: 0.9rem; }

/* Loader */
.loader-wrapper { grid-column: 1/-1; text-align: center; color: var(--text-muted); padding: 40px; }
.spinner { width: 40px; height: 40px; border: 3px solid rgba(255,255,255,0.1); border-top-color: var(--accent-color); border-radius: 50%; margin: 0 auto 16px; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Demo Section */
.demo-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 0; overflow: hidden; }
.demo-info { background: rgba(255,255,255,0.02); padding: 60px; border-right: 1px solid var(--glass-border); }
.demo-steps { margin-top: 40px; display: grid; gap: 24px; }
.step { font-weight: 600; display: flex; align-items: center; gap: 16px; }
.step span { 
    width: 32px; height: 32px; background: var(--glass-border); border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--accent-color);
}
.demo-form-container { padding: 60px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
@media(min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-input, .form-textarea {
    width: 100%; padding: 16px; background: rgba(0,0,0,0.3); border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm); color: white; font-family: inherit; transition: var(--transition);
}
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--accent-color); background: rgba(0,0,0,0.5); }

.file-drop-area {
    border: 2px dashed var(--glass-border); border-radius: var(--radius-sm);
    padding: 30px; text-align: center; position: relative; margin-bottom: 20px;
    transition: var(--transition); cursor: pointer;
}
.file-drop-area:hover { border-color: var(--text-muted); background: rgba(255,255,255,0.02); }
.file-drop-area input { position: absolute; width: 100%; height: 100%; top: 0; left: 0; opacity: 0; cursor: pointer; }
.drop-msg { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-muted); }
.drop-msg i { font-size: 24px; color: white; }

.terms-check { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; font-size: 0.9rem; color: var(--text-muted); }
.terms-check a { text-decoration: underline; color: white; }
.full-width { width: 100%; }

/* Region Cloud */
.regions-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.region-tag {
    padding: 8px 16px; border-radius: 100px; border: 1px solid var(--glass-border);
    font-size: 0.9rem; color: var(--text-muted); transition: var(--transition);
}
.region-tag:hover { background: rgba(255,255,255,0.1); color: white; border-color: white; }

/* Footer */
footer { border-top: 1px solid var(--glass-border); padding: 60px 0; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: flex-end; }
.footer-socials { display: flex; gap: 16px; font-size: 24px; color: var(--text-muted); }
.footer-socials a:hover { color: white; }

/* Chat Widget */
.chat-widget { position: fixed; bottom: 32px; right: 32px; z-index: 200; }
.chat-btn {
    width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 28px; cursor: pointer;
}
.chat-window {
    position: absolute; bottom: 80px; right: 0; width: 360px; height: 500px;
    display: none; flex-direction: column; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.chat-window.active { display: flex; }
.chat-header {
    padding: 16px 20px; border-bottom: 1px solid var(--glass-border); background: rgba(255,255,255,0.03);
    display: flex; justify-content: space-between; font-weight: 700;
}
.messages { flex: 1; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.msg { padding: 12px 16px; border-radius: 12px; font-size: 0.95rem; max-width: 85%; }
.msg.bot { background: rgba(255,255,255,0.1); color: white; border-bottom-left-radius: 2px; }
.msg.user { background: var(--accent-gradient); color: white; align-self: flex-end; border-bottom-right-radius: 2px; }
.chat-input-area { padding: 16px; border-top: 1px solid var(--glass-border); display: flex; gap: 12px; }
.send-btn { width: 48px; padding: 0; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hero { padding-top: 120px; text-align: left; align-items: flex-start; }
    .hero-content { margin: 0; }
    .hero-actions { justify-content: flex-start; }
    .region-card, .demo-wrapper { grid-template-columns: 1fr; }
    .region-text, .demo-info, .demo-form-container { padding: 32px; }
    .map-frame { min-height: 250px; }
    .nav-link { display: none; } /* Mobile menu logic needed or simplify */
}
/* Анимация загрузки чата */
.msg.loading {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    color: #aaa;
    font-size: 1.5rem;
    line-height: 0.5;
}

.dot {
    animation: typing 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) { animation-delay: -0.32s; }
.dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}
/* --- MODERN HERO SECTION --- */
.hero-modern {
    position: relative;
    min-height: 90vh; /* Почти на весь экран */
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
    background: #0a0a0a; /* Очень темный фон */
}

/* Фоновые анимированные пятна */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
    animation: blob-bounce 10s infinite ease-in-out;
}
.blob-1 {
    top: -10%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, #ffcc00, transparent);
}
.blob-2 {
    bottom: 10%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, #7000ff, transparent); /* Фиолетовый акцент */
    animation-delay: -5s;
}

@keyframes blob-bounce {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Бейдж "Онлайн лейбл" */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.pulse-dot {
    width: 8px; height: 8px;
    background: #ffcc00;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffcc00;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

/* Заголовок */
.hero-title {
    font-size: clamp(3rem, 6vw, 5rem); /* Адаптивный размер */
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 25px 0;
    color: #fff;
}
.gradient-text {
    background: linear-gradient(90deg, #ffcc00, #fff); /* Градиент текста */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Описание */
.hero-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #bbb;
    max-width: 500px;
    margin-bottom: 40px;
}

/* Кнопки */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}
.btn-lg {
    padding: 15px 35px;
    font-size: 1rem;
    display: flex; align-items: center; gap: 10px;
}
.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Статистика */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-item strong {
    display: block;
    font-size: 1.5rem;
    color: #fff;
    line-height: 1;
}
.stat-item span {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stat-separator {
    width: 1px; height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

/* Визуал (Пластинка) */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.vinyl-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
}
.vinyl-record {
    width: 100%; height: 100%;
    background: radial-gradient(circle at 30% 30%, #333, #000);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    display: flex; justify-content: center; align-items: center;
    position: relative;
    animation: vinyl-spin 10s linear infinite; /* Вращение */
}
/* Канавки на пластинке */
.vinyl-record::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 90%; height: 90%;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.02);
    box-shadow: 0 0 0 10px rgba(255,255,255,0.02),
                0 0 0 20px rgba(255,255,255,0.02),
                0 0 0 30px rgba(255,255,255,0.02),
                0 0 0 45px rgba(255,255,255,0.02),
                0 0 0 60px rgba(255,255,255,0.02);
}
.vinyl-label {
    width: 35%; height: 35%;
    background: #ffcc00;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-weight: 900; font-size: 1.5rem; color: #000;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
}

@keyframes vinyl-spin { 100% { transform: rotate(360deg); } }

/* Эквалайзер */
.equalizer-bars {
    position: absolute;
    bottom: -20px; right: 0;
    display: flex; gap: 5px;
}
.equalizer-bars span {
    width: 8px;
    background: #ffcc00;
    animation: equalize 1s infinite ease-in-out;
    border-radius: 4px;
}
.equalizer-bars span:nth-child(1) { height: 30px; animation-delay: 0.1s; }
.equalizer-bars span:nth-child(2) { height: 50px; animation-delay: 0.2s; }
.equalizer-bars span:nth-child(3) { height: 40px; animation-delay: 0.3s; }
.equalizer-bars span:nth-child(4) { height: 60px; animation-delay: 0.4s; }
.equalizer-bars span:nth-child(5) { height: 25px; animation-delay: 0.5s; }

@keyframes equalize {
    0%, 100% { height: 20px; opacity: 0.5; }
    50% { height: 60px; opacity: 1; }
}

/* Адаптив для мобильных */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin: 0 auto 40px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; /* Скрываем визуал на мобильных для экономии места */ }
    .hero-modern { padding-top: 100px; min-height: auto; }
}
/* --- HERO TOP SECTION --- */
.hero-top {
    position: relative;
    min-height: 90vh; /* Почти на весь экран */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px; /* Отступ от хедера */
    overflow: hidden;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0d0d0d 100%);
    text-align: center;
}

/* Фоновое свечение */
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}
.glow-1 {
    top: -10%;
    left: 20%;
    background: #ffcc00;
    animation: float 10s infinite ease-in-out;
}
.glow-2 {
    bottom: -10%;
    right: 20%;
    background: #8a2be2; /* Фиолетовый акцент для контраста */
    animation: float 12s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px; /* Ограничиваем ширину для читаемости */
}

/* Бейдж */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffcc00;
    margin-bottom: 30px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.pulse-dot {
    width: 8px; height: 8px;
    background: #ffcc00;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffcc00;
    animation: pulse 2s infinite;
}

/* Заголовок */
.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 25px 0;
}

.text-gradient {
    background: linear-gradient(135deg, #ffcc00 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Подзаголовок */
.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Кнопки */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-xl {
    padding: 16px 32px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary-glow {
    background: #ffcc00;
    color: #000;
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.25);
    border: none;
}
.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 204, 0, 0.4);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

/* Блок преимуществ (статистика) */
.hero-features {
    display: inline-flex;
    align-items: center;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 15px 30px;
    backdrop-filter: blur(10px);
    gap: 40px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.feature-box i {
    font-size: 24px;
    color: #ffcc00;
}

.feature-box div {
    display: flex;
    flex-direction: column;
}

.feature-box strong {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1;
}

.feature-box span {
    font-size: 0.8rem;
    color: #777;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 4px;
}

.divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

/* Анимация появления */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}
.hero-badge { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.hero-subtitle { animation-delay: 0.3s; }
.hero-buttons { animation-delay: 0.4s; }
.hero-features { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        align-items: flex-start;
    }
    .divider { display: none; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-xl { width: 100%; justify-content: center; }
    .hero-title { font-size: 2.8rem; }
}