:root {
    --graphite: #2c3e50;
    --accent: #3498db;
    --muted: #7f8c8d;
    --white: #ffffff;
    --soft-blue: #8da9c4; /* Цвет из твоего макета */
}

.landing-wrapper {
    background-color: var(--white);
    font-family: 'Inter', sans-serif;
}

/* --- Hero Section --- */
.hero-section {
    padding: 80px 0;
    background: radial-gradient(circle at 90% 10%, rgba(52, 152, 219, 0.05) 0%, transparent 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.badge-status {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(141, 169, 196, 0.15);
    color: var(--soft-blue);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--graphite);
    margin-bottom: 20px;
}

.hero-text h1 span { color: var(--accent); }

.hero-text p {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 40px;
}

/* --- Кнопки --- */
.hero-actions { display: flex; gap: 15px; }

.btn-hero {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.btn-main {
    background-color: var(--soft-blue);
    color: white !important;
    box-shadow: 0 10px 20px rgba(141, 169, 196, 0.3);
}

.btn-secondary {
    border: 2px solid #eee;
    color: var(--graphite) !important;
}

/* --- Визуал справа (только ПК) --- */
.unify-card-visual {
    background: var(--graphite);
    height: 400px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.visual-icon {
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin-bottom: 20px;
}

/* --- Features Section (Исправлено для мобилок) --- */
.features-section { padding: 80px 0; }

.section-header { margin-bottom: 60px; }
.section-header h2 { font-weight: 800; font-size: 2.2rem; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 колонки на ПК */
    gap: 30px;
}

.f-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: 0.3s ease;
}

.f-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}

.f-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

/* --- АДАПТИВНОСТЬ (Mobile First) --- */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    .btn-secondary { margin-left: 0; }
    
    /* Оживляем сетку преимуществ */
    .features-grid {
        grid-template-columns: 1fr; /* 1 колонка на планшетах и мобилках */
        gap: 20px;
    }
    
    .f-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .hero-section { padding: 50px 0; }
    .hero-text h1 { font-size: 2rem; }
}