/* ===================== INNER PAGE HERO - ENHANCED ===================== */

.page-hero {
    position: relative;
    width: 100%;
    min-height: 520px; /* taller */
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy-dark);
    padding: 110px 0 150px; /* extra breathing room for divider */
}

/* ── Background ── */
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.30;
    filter: grayscale(20%);
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(10, 22, 40, 0.95) 0%,
        rgba(10, 22, 40, 0.88) 45%,
        rgba(10, 22, 40, 0.55) 100%
    );
}

/* Green ambient glow (right side) */
.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.12) 0%, transparent 65%);
    z-index: 1;
    pointer-events: none;
}

/* ── Content ── */
.page-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 18px;
    /* max-width: 780px; */
    width: 100%;
}

/* Breadcrumb */
.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 4px;
}

.page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-hero-breadcrumb a:hover {
    color: var(--accent-light);
}

.page-hero-breadcrumb .sep {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
}

.page-hero-breadcrumb .current {
    color: var(--accent-light);
    font-weight: 600;
}

/* Title */
.page-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
}

.page-hero-title span {
    color: var(--accent-light);
}

/* Subtitle */
.page-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.70);
    margin: 0;
    max-width: 560px;
    line-height: 1.7;
    font-weight: 400;
}

/* ── Feature Bullets ── */
.page-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 32px;
    margin-top: 4px;
}

.page-hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.90);
    font-weight: 500;
}

.page-hero-feature::before {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    background: rgba(22, 163, 74, 0.20);
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234ade80' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* ── Buttons ── */
.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--green-gradient);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.35);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: transparent;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.60);
}

/* ── Mini Stats Row ── */
.page-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 18px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.page-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.page-hero-stat strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
}

.page-hero-stat span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* ── Bottom Shape Divider ── */
.page-hero-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
    pointer-events: none;
}

.page-hero-divider svg {
    display: block;
    width: 100%;
    height: auto;
    min-height: 90px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .page-hero {
        min-height: 440px;
        padding: 90px 0 120px;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-subtitle {
        font-size: 0.95rem;
    }

    .page-hero-features {
        gap: 12px 24px;
    }

    .page-hero-stats {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 400px;
        padding: 80px 0 100px;
    }

    .page-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-outline-white {
        width: 100%;
    }
}
