/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute !important;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}

.hero-glow-1 {
    top: -8%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(43, 142, 240, 0.10) 0%, transparent 70%);
}

.hero-glow-2 {
    bottom: 5%;
    right: -5%;
    width: 500px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
}

.hero>* {
    position: relative;
    z-index: 1;
}

/* ── Badge ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--primary-subtle);
    border: 1px solid rgba(43, 142, 240, 0.22);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* ── Heading ── */
.hero h1 {
    font-size: clamp(46px, 7vw, 82px);
    color: var(--midnight);
    line-height: 1.05;
    letter-spacing: -1px;
    max-width: 820px;
    margin-bottom: 24px;
    animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 em {
    font-style: italic;
    color: var(--primary);
}

/* ── Subheading ── */
.hero-sub {
    font-size: clamp(16px, 2vw, 19px);
    font-weight: 400;
    color: var(--muted);
    line-height: 1.65;
    max-width: 540px;
    margin-bottom: 40px;
    animation: fadeUp 0.6s 0.2s ease both;
}

/* ── CTAs ── */
.hero-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
    animation: fadeUp 0.6s 0.3s ease both;
}

.btn-hero {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(43, 142, 240, 0.32);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(43, 142, 240, 0.44);
}

.btn-hero-ghost {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--slate);
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 13px 24px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-hero-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

/* ── Social proof ── */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0;
    animation: fadeUp 0.6s 0.4s ease both;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
}

.proof-divider {
    width: 1px;
    height: 16px;
    background: var(--border);
}

/* ── Trust strip ── */
.hero-trust-strip {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 56px;
    animation: fadeUp 0.6s 0.7s ease both;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-logo {
    font-size: 15px;
    font-weight: 700;
    color: #CBD5E1;
    letter-spacing: -0.3px;
    transition: color 0.2s;
    cursor: default;
}

.trust-logo:hover {
    color: #94A3B8;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero,
    .btn-hero-ghost {
        width: 100%;
        justify-content: center;
    }

    .hero-social-proof {
        flex-direction: column;
        gap: 8px;
    }

    .proof-divider {
        display: none;
    }

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

    .trust-logos {
        gap: 18px;
    }
}

/* ── Banner scroll animation (used in mock.css) ── */
@keyframes bannerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}