/* ═══════════════════════════════════════════════════════
   Hero Mockup – Visual Only
   ═══════════════════════════════════════════════════════ */

:root {
    --hm-gold:       #c6a96c;
    --hm-gold-light: #ddc9a0;
    --hm-bg-card:    #ffffff;
    --hm-text:       #1a1a1a;
    --hm-text-muted: #6b6b6b;
    --hm-green:      #3a7d44;
    --hm-radius:     12px;
    --hm-shadow:     0 12px 40px rgba(0,0,0,.08);
    --hm-shadow-sm:  0 4px 20px rgba(0,0,0,.06);
}

/* ── Wrapper ────────────────────────────────────────── */
.hm-visual {
    position: relative;
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

/* ── Browser mockup ─────────────────────────────────── */
.hm-mockup {
    width: 100%;
    background: var(--hm-bg-card);
    border-radius: var(--hm-radius);
    box-shadow: var(--hm-shadow);
    overflow: hidden;
    animation: hm-float 6s ease-in-out infinite;
}

@keyframes hm-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

.hm-mockup__bar {
display: flex;
align-items: center;
gap: 12px;
padding: 17px 20px;
background: #faf8f5;
border-bottom: 1px solid #eae7e0;
}

.hm-mockup__dots {
    display: flex;
    gap: 6px;
}

.hm-mockup__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hm-mockup__dots span:nth-child(1) { background: #ec6a5e; }
.hm-mockup__dots span:nth-child(2) { background: #f4bf4f; }
.hm-mockup__dots span:nth-child(3) { background: #61c554; }

.hm-mockup__url {
flex: 1 1 0%;
background: #fff;
border-radius: 50px;
padding: 6px 14px;
font-size: 0.75rem;
color: #9b9490;
}

/* ── Mock content blocks ────────────────────────────── */
.hm-mockup__body {
    padding: 28px 24px 24px;
}

.hm-mock { border-radius: 6px; }

.hm-mock--header {
    width: 55%;
    height: 12px;
    background: var(--hm-gold-light);
    opacity: .5;
    margin-bottom: 16px;
}

.hm-mock--title {
    width: 80%;
    height: 18px;
    margin-bottom: 10px;
    background-size: 200% 100%;
    background-image: linear-gradient(90deg, #e0ddd7 0%, #ede9e2 50%, #e0ddd7 100%);
    animation: hm-shimmer 3s ease-in-out infinite;
}

.hm-mock--title-sm {
    width: 60%;
    height: 18px;
    margin-bottom: 24px;
    background-size: 200% 100%;
    background-image: linear-gradient(90deg, #e0ddd7 0%, #ede9e2 50%, #e0ddd7 100%);
    animation: hm-shimmer 3s ease-in-out infinite .3s;
}

@keyframes hm-shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.hm-mock--line {
    height: 10px;
    background: var(--hm-gold-light);
    opacity: .45;
    margin-bottom: 8px;
    border-radius: 6px;
}

.hm-mock--btn {
    width: 40%;
    height: 36px;
    background: var(--hm-gold);
    border-radius: 50px;
    margin: 20px 0 24px;
    opacity: .85;
}

.hm-mock__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hm-mock--card {
    height: 70px;
    background: #f5f3ef;
    border-radius: 8px;
    border: 1px solid #eae7e0;
}

/* ── Floating badges ────────────────────────────────── */
.hm-badge {
    position: absolute;
    background: var(--hm-bg-card);
    padding: 14px 22px;
    border-radius: var(--hm-radius);
    box-shadow: var(--hm-shadow-sm);
    z-index: 2;
}

.hm-badge--top {
    top: -10px;
    right: -30px;
    animation: hm-badge-float 5s ease-in-out infinite;
}

.hm-badge--bottom {
    bottom: 10px;
    left: -30px;
    animation: hm-badge-float 5s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes hm-badge-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

.hm-badge__label {
display: block;
font-size: .7rem;
text-transform: uppercase;
letter-spacing: 0.08em;
color: #9b9490;
margin-bottom: 1px;
}

.hm-badge__value {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hm-text);
}

.hm-badge__value--green {
    color: var(--hm-green);
}

/* ── Reveal animation ───────────────────────────────── */
.hm-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
}

.hm-reveal.hm-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 600px) {
    .hm-visual {
        max-width: 100%;
    }

    .hm-badge {
        padding: 10px 16px;
    }

    .hm-badge--top {
        right: -5px;
        top: -5px;
    }

    .hm-badge--bottom {
        left: -5px;
        bottom: 5px;
    }

    .hm-badge__value {
        font-size: 1.2rem;
    }

    .hm-mock__grid {
        gap: 8px;
    }

    .hm-mock--card {
        height: 50px;
    }
}
