/* Shared inner-page hero — scoped under .page-hero to avoid collisions with index.php */

.page-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 5rem;
    overflow: hidden;
    background: var(--primary-white);
}

/* Decorative blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    pointer-events: none;
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #5856d6, transparent);
    top: -150px;
    left: -100px;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #007aff, transparent);
    bottom: -100px;
    right: -80px;
}

.hero-blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #7c3aed, transparent);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Floating icons */
.page-hero .floating-icon {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.12;
    animation: floatIcon 6s ease-in-out infinite;
    pointer-events: none;
}

.page-hero .floating-icon:nth-child(4)  { top: 20%;    left: 8%;   animation-delay: 0s;   color: #5856d6; }
.page-hero .floating-icon:nth-child(5)  { top: 35%;    right: 10%; animation-delay: 1s;   color: #007aff; }
.page-hero .floating-icon:nth-child(6)  { bottom: 30%; left: 15%;  animation-delay: 2s;   color: #7c3aed; }
.page-hero .floating-icon:nth-child(7)  { bottom: 20%; right: 8%;  animation-delay: 3s;   color: #5856d6; }
.page-hero .floating-icon:nth-child(8)  { top: 60%;    left: 5%;   animation-delay: 1.5s; color: #007aff; }

/* Hero content */
.page-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(88, 86, 214, 0.08);
    border: 1px solid rgba(88, 86, 214, 0.3);
    color: var(--accent-purple);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.page-hero .hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.page-hero .hero-title .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero .hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
    font-weight: 400;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 7rem 1.5rem 4rem;
        min-height: 45vh;
    }

    .page-hero .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .hero-blob-1,
    .hero-blob-2,
    .hero-blob-3 {
        opacity: 0.15;
    }
}
