/* Hero section */
.hero-section {
    position: relative;
    width: 100%;
    padding: 80px 20px;
    color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Внутренний контейнер */
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 2fr; /* две колонки */
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Левая часть (текст + буллеты) */
.hero-left {
    text-align: left;
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.hero-title .brand-name {
    color: #f9d776; /* жёлтый акцент */
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #e5e7eb;
}

/* Список преимуществ */
.hero-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.hero-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin-right: 14px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #eaeaea; /* светлый фон */
}

.hero-icon svg {
    width: 22px;
    height: 22px;
    stroke: #1a202c;
    fill: none;
}

.hero-feature-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e5e7eb;
}

.hero-feature-text strong {
    color: #fff;
    font-weight: 600;
}

.hero-right {
    background: var(--color-background);
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr; /* одна колонка */
        gap: 30px;
    }

    .hero-left {
        text-align: center;
    }

    .hero-feature {
        justify-content: center;
    }
}
