/* ============================================
   Hero — Deep plum, bold condensed type
   Agency-focused: Master License, white label
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 120px;
    background: var(--plum);
    position: relative;
    overflow: hidden;
}

/* Subtle texture overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(46, 27, 53, 0.6) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    text-align: center;
    max-width: 860px;
    position: relative;
    z-index: 1;
}

/* ── Pill badge ── */
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--lime);
    margin-bottom: 38px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.1s;
    font-weight: 600;
}

.hero-pill-text {
    animation: pillPulse 3s ease-in-out infinite 0.8s;
}

@keyframes pillPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.25; }
}

.hero-pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* ── Title ── */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.2vw, 3.0rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--text-on-dark);
    margin-bottom: 38px;
    letter-spacing: -0.03em;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.25s;
}

.hero-title em {
    font-style: normal;
    color: var(--lime);
}

/* ── Horizontal bullets ── */
.hero-bullets {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 42px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.35s;
}

.hero-bullet {
    flex: 1 1 0;
    min-width: 200px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
}

.hero-bullet-num {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lime);
    color: var(--plum);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-bullet p {
    font-size: 1.08rem;
    color: var(--text-on-dark);
    line-height: 1.55;
    font-weight: 700;
}

.hero-bullet p em {
    font-style: normal;
    color: var(--lime);
}

.hero-bullet-note {
    color: var(--text-on-dark-muted);
    font-weight: 400;
    font-size: 0.85rem;
}

/* ── Secondary headline ── */
.hero-title-secondary {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--lime);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.45s;
}

/* ── Subtitle ── */
.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: #ffffff;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto 28px;
    font-weight: 400;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.4s;
}

/* ── Actions ── */
.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.55s;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 34px;
    background: var(--lime);
    color: var(--plum);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.btn-primary:hover {
    background: var(--lime-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--lime-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 34px;
    color: var(--text-on-dark-muted);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--text-on-dark);
}

/* ── Trust line ── */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.7s;
}

.hero-trust-item {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-trust-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

/* ── Animations ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-pill {
        margin-bottom: 28px;
        font-size: 0.72rem;
    }

    .hero-title {
        margin-bottom: 28px;
    }

    .hero-bullets {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 32px;
    }

    .hero-bullet {
        max-width: 100%;
        flex-direction: row;
        text-align: left;
        padding: 12px;
    }

    .hero-bullet p {
        font-size: 0.92rem;
    }

    .hero-title-secondary {
        margin-bottom: 14px;
    }

    .hero-subtitle {
        margin-bottom: 20px;
        font-size: 0.9rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .hero-trust {
        flex-direction: column;
        gap: 10px;
    }

    .hero-trust-dot {
        display: none;
    }
}
