/* ============================================================
   NAMASTE NETWORK — Providers Page Hero Section
   File: assets/css/sections/mob-providers-hero.css
   Handle: mob-providers-hero | Depends on: mob-app-css
   ============================================================ */

/* ── Section ──────────────────────────────────────────── */
.mob-phero-section {
    background: linear-gradient(
        135deg,
        var(--mob-primary-dark) 0%,
        var(--mob-primary) 55%,
        var(--mob-primary-mid) 100%
    );
    padding: clamp(52px, 8vw, 100px) 0 clamp(40px, 6vw, 80px);
    position: relative;
    overflow: hidden;
}

/* Decorative background radial glows */
.mob-phero-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232,168,124,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.mob-phero-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(26,122,150,0.25) 0%, transparent 65%);
    pointer-events: none;
}

/* ── Inner wrapper ────────────────────────────────────── */
.mob-phero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(20px, 3vw, 32px);
}

/* ── Eyebrow badge ────────────────────────────────────── */
.mob-phero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    width: fit-content;
}

.mob-phero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mob-accent);
    flex-shrink: 0;
    animation: mob-phero-pulse 2s ease-in-out infinite;
}

@keyframes mob-phero-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.75); }
}

/* ── H1 heading ───────────────────────────────────────── */
.mob-phero-heading {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin: 0;
    max-width: 820px;
}

.mob-phero-heading em {
    font-style: normal;
    color: var(--mob-accent);
}

/* ── Subheading ───────────────────────────────────────── */
.mob-phero-sub {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin: 0;
    max-width: 640px;
}

/* ── Stats row ────────────────────────────────────────── */
.mob-phero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--mob-radius-md);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.mob-phero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 18px 36px;
    flex: 1;
}

/* Divider between stats */
.mob-phero-stat + .mob-phero-stat {
    border-left: 1px solid rgba(255,255,255,0.15);
}

.mob-phero-stat-number {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.mob-phero-stat-number span {
    color: var(--mob-accent);
}

.mob-phero-stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.03em;
    white-space: nowrap;
}

/* ── Trust badges row ─────────────────────────────────── */
.mob-phero-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.mob-phero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    padding: 7px 15px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
}

.mob-phero-trust-badge svg {
    width: 14px;
    height: 14px;
    stroke: var(--mob-accent);
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* ── CTA buttons ──────────────────────────────────────── */
.mob-phero-cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* White primary button override for dark hero */
.mob-phero-section .mob-btn-primary {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--mob-primary-dark);
    padding: 15px 36px;
    font-size: 1rem;
}

.mob-phero-section .mob-btn-primary:hover {
    background: var(--mob-primary-light);
    border-color: var(--mob-primary-light);
    color: var(--mob-primary-dark);
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

/* Outline ghost for dark hero */
.mob-phero-section .mob-btn-outline {
    border-color: rgba(255,255,255,0.45);
    color: #ffffff;
    padding: 15px 36px;
    font-size: 1rem;
}

.mob-phero-section .mob-btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
    color: #ffffff;
    box-shadow: none;
    transform: translateY(-1px);
}

/* ── Scroll indicator ─────────────────────────────────── */
.mob-phero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    opacity: 0.4;
}

.mob-phero-scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
    animation: mob-phero-scroll 1.8s ease-in-out infinite;
}

@keyframes mob-phero-scroll {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.mob-phero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 680px) {
    .mob-phero-stats {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .mob-phero-stat {
        padding: 14px 24px;
        width: 100%;
    }

    .mob-phero-stat + .mob-phero-stat {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.15);
    }

    .mob-phero-cta-row {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .mob-phero-section .mob-btn-primary,
    .mob-phero-section .mob-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .mob-phero-trust-row {
        gap: 8px;
    }
}

@media (max-width: 420px) {
    .mob-phero-trust-badge {
        font-size: 0.72rem;
        padding: 6px 12px;
    }

    .mob-phero-stat-number {
        font-size: 1.5rem;
    }
}