/* ===== HERO SECTION ===== */
.hero {
    padding: 70px 20px;
    background: #f9fafb;
    /*background: burlywood;*/
    margin: 0 auto;
    /*margin-bottom: 40px; design */
    margin-bottom: 30px;
    /*margin: 0 auto 40px auto;*/
    /*border-radius: 18px;*/
    box-shadow: 0 20px 45px rgba(29, 22, 22, 0.08);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 20px;
}

.hero-accent {
    color: #f97316;
    display: block;
}

.hero-subtitle {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 30px;
    max-width: 520px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.hero-image {
    max-width: 520px;
    margin-left: auto;
}

.hero-image img {
    width: 100%;
    display: block;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Trust badges */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 14px;
    color: #4b5563;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 35px 25px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 34px;
        margin-top: 0;
    }

    .hero-cta-group {
        justify-content: center;
    }
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-group {
    display: flex;
    gap: 10px;
}

.hero-divider {
    width: 1px;
    height: 24px;
    background: #ddd;
}

/* BUTTON BASE */
.hero-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    background: #f5f5f5;
    color: #333;
    transition: all 0.15s ease;
}

/* HOVER */
.hero-btn:hover {
    background: #e0e0e0;
}

/* ACTIVE */
.hero-btn.is-active {
    background: #111;
    color: #fff;
    cursor: default;
}

/* DISABLED */
.hero-btn.is-disabled {
    pointer-events: none;
    opacity: 0.7;
}

/* MICRO INTERACTION */
.hero-btn:active {
    transform: scale(0.97);
}

.hero-cta-primary.is-disabled,
.hero-cta-secondary.is-disabled {
    pointer-events: none;
    opacity: 0.7;
}