/* ==========================================================================
   Hero section
   ========================================================================== */

.hero {
    padding-block: 56px 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-greeting {
    color: var(--accent-pink);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

.hero-name {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    margin: 8px 0 14px;
    line-height: 1.1;
}

.hero-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--text-primary);
}

.hero-tagline {
    color: var(--text-secondary);
    max-width: 46ch;
    margin: 0 0 28px;
    font-size: 1.02rem;
}

.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-watch { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.92rem; color: var(--text-secondary); }
.hero-watch-icon {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--bg-surface-alt);
    border: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition-base);
}
.hero-watch:hover .hero-watch-icon { background: var(--gradient-primary); border-color: transparent; }
.hero-watch-icon svg { width: 14px; height: 14px; margin-left: 2px; }

.hero-trust { margin-top: 8px; }
.hero-trust-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 14px; }
.hero-trust-logos { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-trust-logos img { height: 28px; width: auto; object-fit: contain; }
.hero-trust-logos span { opacity: 0.6; font-weight: 600; font-size: 0.85rem; }

.hero-media { position: relative; display: flex; justify-content: center; }
.hero-media-frame {
    position: relative;
    width: min(100%, 380px);
    aspect-ratio: 1 / 1.05;
    border-radius: 50% 50% 46% 46% / 54% 54% 46% 46%;
    background: var(--gradient-primary);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}
.hero-media-frame img { width: 100%; height: 100%; object-fit: cover; }

.hero-experience-badge {
    position: absolute;
    right: 6%;
    bottom: 6%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    text-align: center;
    box-shadow: var(--shadow-card);
}
.hero-experience-badge .num { font-size: 1.3rem; font-weight: 800; }
.hero-experience-badge .label { font-size: 0.72rem; color: var(--text-muted); }

@media (max-width: 960px) {
    .hero { grid-template-columns: 1fr; padding-block: 32px 20px; }
    .hero-media { order: -1; }
    .hero-media-frame { width: min(70%, 300px); }
}
