
/* ===== HERO ===== */
.hero {
    --margin-top:calc(var(--header-height) + (var(--header-margin-top) * 2));
    background-color: var(--color-dark);
    background-image: url('img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    margin-top: calc(-1 * var(--margin-top));
    padding-top: var(--margin-top);

    
}
/* Dark overlay — left stronger for text readability, fading to right to show image */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:linear-gradient(90deg,rgba(0, 0, 0, .8) 40%, rgba(255, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 0;
}
/* Subtle amber glow accent */
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,160,0,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,160,0,0.15);
    color: var(--color-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255,160,0,0.3);
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 600px;
}
.hero h1 .accent { color: var(--color-primary); }
.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.6;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.btn-primary-lg {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 16px 22px;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}
.btn-primary-lg:hover {
    background: var(--color-primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255,160,0,0.4);
}
.btn-outline-lg {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}
.btn-outline-lg:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255,255,255,0.1);
}
.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
    font-size: clamp(1.5rem, 5vw, 1.8rem);
    font-weight: 800;
    color: var(--color-primary);
    white-space: nowrap;
}
.hero-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}
/* hero-visual removed — now using full-width background image */

/* ===== ADVANTAGES BAR ===== */
.advantages-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}
.advantages-list {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.advantages-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-text);
}
.advantages-list .adv-icon {
    width: 36px;
    height: 36px;
    background: var(--color-primary-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.advantages-list .adv-icon svg { 
    width: 20px; height: 20px; color: var(--color-primary); 
}
/* ===== SECTIONS COMMON ===== */
.section { padding: 72px 0; }
.section-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    color: var(--color-dark);
}
.section-desc {
    text-align: center;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
}
/* ===== HOW IT WORKS ===== */
.how-section { background: var(--color-bg-light); }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.step-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.step-num {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-dark);
}
.step-card p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}
/* ===== BENEFITS ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.benefit-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #f0f0f0;
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.benefit-title{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap:1rem;
}
.benefit-icon {
    width: 52px;
    height: 52px;
    background: var(--color-primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}
.benefit-icon svg { width: 26px; height: 26px; color: var(--color-primary); }
.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-dark);
}
.benefit-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}
/* ===== CTA BOTTOM ===== */
        .cta-bottom {
            background: var(--color-primary);
            padding: 48px 0;
            text-align: center;
        }
        .cta-bottom h2 {
            color: #fff;
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 12px;
        }
        .cta-bottom p {
            color: rgba(255,255,255,0.85);
            margin-bottom: 24px;
            font-size: 1.05rem;
        }
        .btn-cta-white {
            background: #fff;
            color: var(--color-primary);
            border: none;
            padding: 16px 36px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-cta-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.2);
            color: var(--color-primary-hover);
        }
/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .hero h1 { font-size: 2.2rem; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .header-nav { display: none; }
    .header-phone { display: none; }
    .btn-header-cta { display: none; }
    .mobile-toggle { display: block; }

    .hero {
        padding: 48px 0 40px;
        min-height: auto;
        background-position: center center;
    }
    .hero::before {
        background: linear-gradient(
            180deg,
            rgba(26, 29, 39, 0.9) 0%,
            rgba(26, 29, 39, 0.85) 50%,
            rgba(26, 29, 39, 0.75) 100%
        );
    }
    .hero h1 { font-size: 2rem; }
    .hero-sub { font-size: 1rem; }
    .hero-stats { gap: 24px; }

    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }

    .advantages-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    .advantages-list li { flex: 0 0 45%; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
    .section { padding: 48px 0; }
    .section-title { font-size: 1.6rem; }
    .section-desc { font-size: 0.95rem; }

    .hero { padding: 36px 0 32px; }
    .hero h1 { font-size: 1.7rem; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .hero-stat { flex: 0 0 calc(50% - 10px); }

    .steps-grid { grid-template-columns: 1fr; gap: 16px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }

    .advantages-list li { flex: 0 0 100%; }

    .request-form-card { padding: 24px; }

    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 12px; }

    .cta-bottom h2 { font-size: 1.4rem; }
}

@media (max-width: 575px) {
    .hero h1 { font-size: 1.5rem; }
    .hero-badge { font-size: 0.75rem; }
    .hero-actions { flex-direction: column; }
    .btn-primary-lg, .btn-outline-lg { width: 100%; justify-content: center; }
    .floor-group { flex-direction: column; }
}