/* ========================================
   HERO (Homepage)
   ======================================== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 72px;
}
.hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.6) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.45) 0%, transparent 65%);
}
.hero__content {
    position: relative;
    z-index: 2;
    padding: var(--space-xl) 0;
    width: 100%;
}
.hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 0.45rem 1rem 0.45rem 0.65rem;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--slate);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-md);
    animation: heroFadeUp 0.8s 0.1s both cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__pill-stars {
    display: flex;
    align-items: center;
    gap: 1px;
    background: var(--green);
    padding: 0.25rem 0.5rem;
    border-radius: 100px;
    color: white;
    font-size: 0.75rem;
}
.hero__pill-stars svg {
    width: 12px; height: 12px;
    fill: white;
}
.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    line-height: 1.15;
    color: var(--white);
    max-width: 16ch;
    margin-bottom: var(--space-md);
    animation: heroFadeUp 0.8s 0.25s both cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__subtitle {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: rgba(255,255,255,0.85);
    max-width: 50ch;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: var(--space-lg);
    animation: heroFadeUp 0.8s 0.4s both cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    animation: heroFadeUp 0.8s 0.55s both cubic-bezier(0.16, 1, 0.3, 1);
}
