/* Homepage hero */
.hero {
    padding: 1.5rem 0 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: center;
    gap: 3rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(39, 57, 196, 0.08);
    color: rgb(39, 57, 196);
    font-size: 0.938rem;
    font-weight: 500;
    border-radius: 100px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgb(39, 57, 196);
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(2.25rem, 1.4rem + 2.8vw, 3.625rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: rgb(11, 12, 13);
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgb(63, 71, 81);
    max-width: 34rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.938rem;
    font-weight: 500;
    color: rgb(63, 71, 81);
}

.hero-checklist svg {
    flex-shrink: 0;
}

/* Right column: photo + floating cards */
.hero-media {
    position: relative;
}

.hero-photo {
    display: block;
    width: 100%;
    aspect-ratio: 7 / 6;
    object-fit: cover;
    object-position: 100% 35%;
    border-radius: 24px;
}

.hero-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgb(255, 255, 255);
    border-radius: 16px;
    padding: 0.875rem 1.125rem;
    box-shadow: 0 12px 32px rgba(11, 12, 13, 0.12);
    white-space: nowrap;
}

.hero-card img {
    display: block;
}

.hero-card-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-card-label {
    display: block;
    font-size: 0.813rem;
    line-height: 1.25;
    color: rgb(99, 108, 119);
}

.hero-card-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
    color: rgb(11, 12, 13);
}

.hero-card-clock {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(112, 213, 96, 0.2);
    flex-shrink: 0;
}

.hero-card-blik {
    top: 1.25rem;
    right: -0.5rem;
}

.hero-card-wallets {
    bottom: 5rem;
    left: -2rem;
}

.hero-card-bnpl {
    bottom: -1.25rem;
    right: 2rem;
}

/* Payment methods strip */
.hero-methods {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 1.75rem 0;
    border-top: 1px solid rgb(225, 231, 239);
}

.hero-methods-label {
    max-width: 6.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(99, 108, 119);
    padding-right: 2rem;
    border-right: 1px solid rgb(225, 231, 239);
    flex-shrink: 0;
}

.hero-methods-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.125rem;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.hero-methods-logos::-webkit-scrollbar {
    display: none;
}

.hero-methods-logos img {
    height: 22px;
    width: auto;
    flex-shrink: 0;
}

.hero-methods-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    padding: 0.625rem 1.125rem;
    border: 1px solid rgb(225, 231, 239);
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.938rem;
    font-weight: 600;
    color: rgb(11, 12, 13);
}

.hero-methods-more:hover {
    border-color: rgb(99, 108, 119);
    color: rgb(11, 12, 13);
}

.hero-methods-count {
    color: rgb(39, 57, 196);
}

@media (max-width: 991.98px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.5rem;
    }

    .hero-photo {
        aspect-ratio: 4 / 3;
    }

    .hero-card {
        padding: 0.625rem 0.875rem;
        border-radius: 12px;
        gap: 0.5rem;
    }

    .hero-card-label {
        font-size: 0.75rem;
    }

    .hero-card-value {
        font-size: 1rem;
    }

    .hero-card-clock {
        width: 32px;
        height: 32px;
    }

    .hero-card-clock svg {
        width: 16px;
        height: 16px;
    }

    .hero-card-blik {
        top: 0.75rem;
        left: 0.75rem;
        right: auto;
    }

    .hero-card-wallets {
        bottom: 4.5rem;
        left: 0.75rem;
    }

    .hero-card-bnpl {
        bottom: 0.75rem;
        right: 0.75rem;
    }

    .hero-methods {
        flex-wrap: wrap;
        gap: 1rem 1.5rem;
        margin-top: 2rem;
    }

    .hero-methods-label {
        max-width: none;
        flex: 1;
        padding-right: 0;
        border-right: 0;
    }

    .hero-methods-logos {
        order: 3;
        flex-basis: 100%;
        gap: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-text {
        font-size: 1rem;
    }
}
