/* ============================================
   HERO — Cinematic, Luxury
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy-deep);
    overflow: hidden;
}

/* Subtle radial glow */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 65% 45%, rgba(194, 163, 109, 0.06) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: calc(var(--header-height) + 4rem) 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero-text { max-width: 540px; }

.hero .label { color: var(--gold-light); }

.hero h1 {
    color: #fff;
    font-weight: 300;
    margin-bottom: var(--space-xl);
    line-height: 1.08;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-subtitle {
    font-size: 1.08rem;
    color: var(--text-on-dark-secondary);
    line-height: 1.85;
    margin-bottom: var(--space-2xl);
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.hero-trust {
    display: flex;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.trust-item {
    font-size: 0.68rem;
    color: var(--text-on-dark-muted);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.trust-item svg { width: 13px; height: 13px; color: var(--gold); opacity: 0.7; }

/* Hero visual — anatomy side */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-anatomy {
    position: relative;
    width: 100%;
    max-width: 380px;
}

/* Body labels */
.body-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    pointer-events: auto;
}
.body-label.left { flex-direction: row-reverse; }
.body-label-line { width: 30px; height: 1px; background: var(--gold); opacity: 0.35; }
.body-label-text {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.25rem 0.5rem;
    border: 1px solid rgba(194,163,109,0.2);
    background: rgba(7,21,37,0.7);
    cursor: pointer;
    transition: all var(--duration-fast) ease;
}
.body-label-text:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* Hotspot dots */
.body-hotspot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    z-index: 2;
}
.body-hotspot::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    opacity: 0.25;
    animation: pulse-ring 2.5s ease-in-out infinite;
}
@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.25; }
    50% { transform: scale(1.8); opacity: 0; }
}
.body-hotspot:hover { transform: scale(1.5); box-shadow: 0 0 16px rgba(194,163,109,0.4); }

/* Floating stat cards */
.stat-float {
    position: absolute;
    background: rgba(7,21,37,0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(194,163,109,0.12);
    padding: 0.7rem 1rem;
    min-width: 140px;
    animation: float 7s ease-in-out infinite;
}
.stat-float:nth-child(2) { animation-delay: -2.5s; }
.stat-float:nth-child(3) { animation-delay: -5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.stat-float-label { font-size: 0.55rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.stat-float-value { font-family: var(--font-display); font-size: 1.5rem; color: #fff; font-weight: 300; }
.stat-float-sub { font-size: 0.62rem; color: var(--text-on-dark-muted); margin-top: 1px; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: calc(var(--header-height) + 3rem) 1.5rem 3rem;
        gap: var(--space-2xl);
    }
    .hero-text { max-width: 100%; margin: 0 auto; }
    .hero-subtitle { margin-left: auto; margin-right: auto; max-width: 500px; }
    .hero-actions { justify-content: center; flex-wrap: wrap; }
    .hero-trust { justify-content: center; flex-wrap: wrap; gap: var(--space-md); }
    .hero-visual { display: none; }
    .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
}
@media (max-width: 600px) {
    .hero { min-height: auto; padding-bottom: 3rem; }
    .hero-content { padding: calc(var(--header-height) + 3rem) 1.25rem 2.5rem; }
    .hero h1 { font-size: 2.2rem; line-height: 1.12; letter-spacing: -0.03em; margin-bottom: var(--space-xl); }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 0.6rem; }
    .hero-actions .btn { text-align: center; justify-content: center; padding: 0.9rem 1.5rem; font-size: 0.65rem; }
    .hero-trust { flex-direction: column; align-items: center; gap: 0.5rem; }
    .hero-subtitle { font-size: 0.9rem; line-height: 1.7; }
    .label { font-size: 0.58rem; letter-spacing: 0.16em; }
}

/* Sub-page hero - shorter, tighter */
.hero.hero--short {
    min-height: 0 !important;
    max-height: none;
    height: auto;
    padding: 120px 0 60px !important;
}

.hero.hero--short .hero-content {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.hero.hero--short .label {
    margin-bottom: 0.5rem !important;
}

.hero.hero--short h1 {
    margin-bottom: 0.75rem !important;
    font-size: clamp(1.8rem, 4vw, 3rem) !important;
}

.hero.hero--short p {
    margin-bottom: 1.25rem !important;
    margin-top: 0 !important;
}

@media (max-width: 768px) {
    .hero.hero--short {
        padding: 100px 0 40px !important;
    }
    .hero.hero--short h1 {
        font-size: clamp(1.5rem, 5vw, 2.2rem) !important;
    }
}

@media (max-width: 768px) {
    .hero.hero--short {
        min-height: 40vh;
        max-height: 400px;
        padding-top: 70px;
    }
}
