﻿.home-hero {
    min-height: 620px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 34px;
    align-items: center;
    padding: 42px 0 56px;
}

.hero-kicker,
.section-title span,
.reward-info span {
    color: #9b6b3d;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: clamp(46px, 7vw, 82px);
    line-height: .92;
    font-weight: 950;
    letter-spacing: -3px;
    color: #24150d;
    margin: 12px 0 18px;
}

.hero-content p {
    max-width: 560px;
    font-size: 20px;
    color: #6f5745;
    margin-bottom: 26px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-main,
.btn-secondary {
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 900;
    text-decoration: none;
}

.btn-main {
    background: #24150d;
    color: white;
}

.btn-secondary {
    background: #fff;
    color: #24150d;
    box-shadow: 0 10px 30px rgba(36,21,13,.08);
}

.preview-card {
    background: linear-gradient(180deg, #7a5749, #56382f);
    color: white;
    border-radius: 32px;
    padding: 26px;
    box-shadow: 0 30px 80px rgba(36,21,13,.28);
    transform: rotate(2deg);
}

.preview-top {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 24px;
}

    .preview-top span {
        width: 44px;
        height: 44px;
        background: #f5f0df;
        color: #4a2c22;
        border-radius: 16px;
        display: grid;
        place-items: center;
    }

.preview-card h3 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 18px;
}

.preview-stamps {
    background: #f5f0df;
    border-radius: 18px;
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

    .preview-stamps span {
        height: 45px;
        border-radius: 12px;
        background: #d8d1bb;
        color: #9b927f;
        display: grid;
        place-items: center;
        opacity: .45;
    }

    .preview-stamps .active {
        background: white;
        color: #4a2c22;
        opacity: 1;
    }

.preview-reward {
    margin-top: 18px;
    background: rgba(255,255,255,.12);
    border-radius: 20px;
    padding: 16px;
}

    .preview-reward small {
        display: block;
        color: #f4e5c8;
    }

    .preview-reward b {
        display: block;
        font-size: 26px;
    }

.home-section {
    padding: 48px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 24px;
}

    .section-title h2,
    .reward-info h2 {
        color: #24150d;
        font-weight: 950;
        letter-spacing: -1px;
        font-size: 42px;
    }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.step-card,
.reward-card {
    background: white;
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 16px 42px rgba(36,21,13,.09);
}

    .step-card div {
        width: 46px;
        height: 46px;
        border-radius: 16px;
        background: #24150d;
        color: #d5974a;
        display: grid;
        place-items: center;
        font-weight: 900;
        margin-bottom: 18px;
    }

    .step-card h3,
    .reward-card h3 {
        color: #24150d;
        font-weight: 900;
    }

    .step-card p,
    .reward-info p,
    .reward-card p {
        color: #7a6658;
        margin: 0;
    }

.rewards-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 24px;
    align-items: center;
}

.reward-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.reward-card strong {
    color: #9b6b3d;
}

.reward-card.dark {
    background: #24150d;
    color: white;
}

    .reward-card.dark h3,
    .reward-card.dark p {
        color: white;
    }

@media (max-width: 900px) {
    .home-hero,
    .rewards-layout {
        grid-template-columns: 1fr;
    }

    .steps-grid,
    .reward-cards {
        grid-template-columns: 1fr;
    }

    .preview-card {
        transform: none;
    }
}
