/* Shared page hero — used across About, Contact, Features (via partials/hero.blade.php) */
.page-hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 45%, #ec4899 100%);
    padding: 110px 0 150px;
    position: relative;
    overflow: hidden;
}

.page-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4;
}

.page-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.5;
}
.page-hero-orb.a { width: 340px; height: 340px; background: #ec4899; top: -120px; left: -80px; }
.page-hero-orb.b { width: 380px; height: 380px; background: #6366f1; bottom: -150px; right: -90px; }

.page-hero-glyph {
    position: absolute;
    color: rgba(255, 255, 255, 0.18);
    font-weight: 800;
    user-select: none;
    animation: pageHeroFloat 7s ease-in-out infinite;
    z-index: 0;
}
@keyframes pageHeroFloat {
    0%, 100% { transform: translateY(0) rotate(-4deg); }
    50%      { transform: translateY(-22px) rotate(4deg); }
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    color: #fff !important;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 640px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-hero-title { font-size: 2.3rem; }
    .page-hero-subtitle { font-size: 1.05rem; }
    .page-hero-glyph { display: none; }
}
