.hero-home {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
    background:
        radial-gradient(circle at top left, rgba(200, 169, 91, 0.14), transparent 30%),
        linear-gradient(180deg, #fbf8f1 0%, #f6efe2 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(90, 90, 90, 0.08);
    overflow: hidden;
    margin-bottom: 42px;
}

.hero-copy {
    padding: 52px 24px 52px 40px;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    background: var(--gold-soft);
    color: #8b6b2d;
    font-family: Arial, sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 0 0 18px;
    font-size: 4.1rem;
    line-height: 0.98;
    color: #30452e;
}

.hero-copy p {
    margin: 0 0 26px;
    max-width: 640px;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-product {
    background: linear-gradient(180deg, var(--black-1) 0%, var(--black-2) 100%);
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px 24px;
    position: relative;
}

.hero-product::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-product-inner {
    text-align: center;
    color: var(--white);
}

.hero-logo {
    width: 120px;
    margin: 0 auto 18px;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.hero-product-image {
    max-width: 280px;
    margin: 0 auto 18px;
    filter: drop-shadow(0 16px 30px rgba(0,0,0,0.30));
}

.hero-product-name {
    margin: 0 0 8px;
    font-size: 1.9rem;
    color: #f1e0b0;
}

.hero-product-price {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #d8bc75;
}

.benefit-card h3,
.product-card h3 {
    margin: 0 0 12px;
    color: var(--green-dark);
    font-size: 1.3rem;
}

.benefit-card p,
.product-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.products-section {
    margin-top: 42px;
}

.product-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 16px;
    background: #f2eee5;
}

.product-price {
    margin: 12px 0 16px;
    font-family: Arial, sans-serif;
    font-weight: 700;
    color: #7a5f2a;
}

.review-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.review-name {
    margin-top: 14px;
    font-family: Arial, sans-serif;
    font-weight: 700;
    color: var(--green-dark);
}

.cta-strip {
    margin-top: 42px;
    background: linear-gradient(135deg, #30452e, #192418);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 34px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cta-strip h2 {
    margin: 0 0 8px;
    font-size: 2rem;
    color: var(--white);
}

.cta-strip p {
    margin: 0;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

@media (max-width: 980px) {
    .hero-home {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 36px 20px;
    }

    .hero-copy h1 {
        font-size: 2.8rem;
    }

    .cta-strip {
        flex-direction: column;
        text-align: center;
    }
}
