/* ============================================
   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 — highlighted pre-headline ── */
.hero-pill {
    display: inline-block;
    padding: 12px 28px;
    background: var(--lime);
    border: none;
    border-radius: 4px;
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    font-weight: 700;
    color: var(--plum);
    margin-bottom: 40px;
    line-height: 1.5;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.1s;
}

.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.4; }
}

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

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

/* ── Subtitle ── */
.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--text-on-dark-muted);
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto 44px;
    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: 130px 0 90px;
    }

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

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

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