/* =========================
   HERO
========================= */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 88vh;
    color: var(--color-white);
    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.58) 35%,
            rgba(0, 0, 0, 0.42) 60%,
            rgba(0, 0, 0, 0.48) 100%
        ),
        url('../img/landing/hero-gogi.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(200, 16, 58, 0.22), transparent 34%),
        radial-gradient(circle at bottom right, rgba(242, 207, 15, 0.10), transparent 28%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.10) 0%,
        rgba(0, 0, 0, 0.04) 25%,
        rgba(0, 0, 0, 0.16) 100%
    );
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 760px;
    padding: 140px 0 120px;
}

.hero-content > * {
    margin-bottom: 14px;
}

.hero-content > *:last-child {
    margin-bottom: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto;
    max-width: fit-content;
    padding: 10px 16px;
    margin-bottom: var(--space-lg);
    border-radius: var(--radius-pill);
    background-color: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.96);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.02em;
    backdrop-filter: blur(4px);
}

.hero h1 {
    color: var(--color-white);
    max-width: 680px;
    margin-bottom: var(--space-lg);
    text-wrap: balance;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.hero .lead {
    max-width: 650px;
    margin-bottom: var(--space-md);
    font-size: 1.18rem;
    font-weight: 500;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.hero-highlight {
    max-width: 650px;
    margin-bottom: var(--space-md);
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.20);
}

.hero-highlight-strong {
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1.4;
    color: var(--color-secondary);
    margin-top: var(--space-md);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.20);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

.hero-note {
    margin-top: var(--space-lg);
    max-width: 560px;
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}