    
    .compact-hero {
        position: relative;
        min-height: 55vh; /* Half-page height */
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-color);
        padding: 120px 5% 60px; /* Space for sticky navbar */
        overflow: hidden;
        color: var(--text-main);
        transition: background 0.5s ease, color 0.5s ease;
    }

    .hero-container {
        max-width: 1100px;
        width: 100%;
        position: relative;
        z-index: 5;
        text-align: center;
    }

    /* --- BREADCRUMB --- */
    .hero-breadcrumb {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: var(--glass-bg);
        border: 1px solid var(--card-border);
        padding: 8px 20px;
        border-radius: 100px;
        margin-bottom: 30px;
        backdrop-filter: blur(10px);
    }

    .hero-breadcrumb a {
        text-decoration: none;
        color: var(--text-muted);
        font-size: 0.85rem;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .hero-breadcrumb a:hover {
        color: var(--primary-orange);
    }

    .breadcrumb-separator {
        color: var(--card-border);
        font-size: 0.8rem;
    }

    .current-page {
        color: var(--primary-orange);
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* --- TITLES --- */
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 20px;
        letter-spacing: -2px;
    }

    .accent-text {
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }

    .hero-description {
        font-size: 1.2rem;
        color: var(--text-muted);
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* --- BACKGROUND DECORATION --- */
    .hero-glow-circle {
        position: absolute;
        top: -10%;
        right: -5%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 123, 0, 0.07) 0%, transparent 70%);
        z-index: 1;
        pointer-events: none;
    }

    .hero-ambient-line {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--card-border), transparent);
        z-index: 2;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 768px) {
        .compact-hero {
            min-height: 45vh;
            padding-top: 100px;
        }

        .hero-title {
            font-size: 2.5rem;
            letter-spacing: -1px;
        }

        .hero-description {
            font-size: 1rem;
        }
    }
