/* ========================================= */
/* 0. ЗМІННІ (Ті самі, що і всюди)           */
/* ========================================= */
:root {
    --site-bg: #0B0C10;
    --card-bg: #1e1e1e;
    --accent: #7300ff;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
}

body {
    background-color: var(--site-bg);
    color: var(--text-main);
    font-family: 'Neue Machina', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ========================================= */
/* 1. HERO SECTION                           */
/* ========================================= */
.business-page {
    padding-top: 80px;
    width: 100%;
}

.hero-section {
    text-align: center;
    padding: 100px 20px;
    background: radial-gradient(circle at center, rgba(115, 0, 255, 0.15) 0%, transparent 70%);
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gradient-text {
    background: linear-gradient(90deg, #fff, #7300ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    padding: 15px 35px;
    background: var(--accent);
    color: white;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(115, 0, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #5d00ff;
}

.btn-secondary {
    padding: 15px 35px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ========================================= */
/* 2. FEATURES GRID                          */
/* ========================================= */
.features-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s ease;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(115, 0, 255, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ========================================= */
/* 3. STATS BAR                              */
/* ========================================= */
.stats-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 60px 20px;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================= */
/* 4. CONTACT FORM                           */
/* ========================================= */
.contact-section {
    padding: 60px 20px 100px;
    display: flex;
    justify-content: center;
}

.contact-container {
    width: 100%;
    max-width: 700px;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.contact-container h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-container p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.business-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #fff;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: #333;
}

.form-status {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-status.is-success {
    border-color: rgba(16, 185, 129, 0.35);
    background: rgba(16, 185, 129, 0.12);
}

.form-status.is-error {
    border-color: rgba(239, 68, 68, 0.35);
    background: rgba(239, 68, 68, 0.12);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
    box-shadow: none;
}

.btn-submit:hover {
    background: #5d00ff;
    box-shadow: 0 5px 15px rgba(115, 0, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-text h1 { font-size: 2.5rem; }
    .form-row { flex-direction: column; gap: 20px; }
    .contact-container { padding: 25px; }
    .stats-bar { flex-direction: column; gap: 40px; }
    .form-status { font-size: 0.9rem; }
}
