/* ==========================================================
   PAGE HERO — used across inner pages
========================================================== */

.pageHero {

    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    padding: 140px 6vw 70px;
    overflow: hidden;
}

.pageHeroBg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pageHeroBg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pageHeroOverlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 33, 30, .55) 0%, rgba(7, 33, 30, .55) 40%, rgba(7, 33, 30, .92) 100%);
}

.pageHeroContent {
    position: relative;
    z-index: 1;
    max-width: 760px;
    color: var(--white);
}

.breadcrumb {
    font-size: .82rem;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 18px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 6px;
}

.pageHeroEyebrow {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.pageHeroTitle {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}

.pageHeroText {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .82);
    max-width: 56ch;
    margin-bottom: 30px;
}

.pageHeroActions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.pageHeroBtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 26px;
    border-radius: 999px;
    border: none;
    background: var(--gradient);
    color: var(--white);
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
}

.pageHeroBtnGhost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 26px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
}

/* ==========================================================
   SHARED SECTION HEADING STYLES
========================================================== */

.sectionEyebrow {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.sectionHeading {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 700;
    color: #0B1F1C;
    max-width: 24ch;
    line-height: 1.25;
    margin-bottom: 14px;
}

.sectionIntro {
    color: #4B5A57;
    max-width: 64ch;
    line-height: 1.7;
    margin-bottom: 34px;
}

/* ==========================================================
   RELATED SERVICES
========================================================== */

.relatedSection {
    padding: 80px 6vw;
    background: #F4F7F6;
}

.relatedContainer {
    max-width: 1080px;
    margin: 0 auto;
}

.relatedGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.relatedCard {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 26px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    transition: var(--transition);
}

.relatedCard:hover {
    transform: translateY(-4px);
}

.relatedCard i {
    font-size: 1.6rem;
    color: var(--primary);
}

.relatedCard h3 {
    color: #0B1F1C;
    font-size: 1.05rem;
}

.relatedCard p {
    color: #4B5A57;
    font-size: .88rem;
    line-height: 1.55;
}

/* ==========================================================
   HOW IT WORKS / STEPS — shared across pages
========================================================== */

.stepsSection {
    padding: 90px 6vw;
    background: #F4F7F6;
}

.stepsContainer {
    max-width: 1080px;
    margin: 0 auto;
}

.stepsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.stepCard {
    padding: 28px 24px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.stepNumber {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 800;
    color: var(--white);
    background: var(--gradient);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin-bottom: 14px;
}

.stepCard h3 {
    font-size: 1.05rem;
    color: #0B1F1C;
    margin-bottom: 8px;
}

.stepCard p {
    font-size: .88rem;
    color: #4B5A57;
    line-height: 1.6;
}

@media (max-width: 560px) {

    .pageHero {
        min-height: 60vh;
        padding: 120px 6vw 50px;
    }

    .pageHeroActions {
        flex-direction: column;
        align-items: stretch;
    }

    .pageHeroBtn,
    .pageHeroBtnGhost {
        justify-content: center;
    }
}
