/* ── SERVICES PAGE HERO ── */
.page-hero {
    padding: 9rem 5% 5rem;
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,184,0,0.15) 0%, transparent 70%);
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    animation: fadeUp 0.65s ease both;
}
.page-hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    max-width: 580px;
    animation: fadeUp 0.65s 0.1s ease both;
}

/* ── SERVICES STICKY SUB-NAV ── */
.services-nav {
    background: var(--white);
    border-bottom: 1px solid var(--mist);
    position: sticky;
    top: 72px; /* Matches your main-nav height */
    z-index: 50;
}
.services-nav-inner {
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding: 0 5%;
}
.snav-item {
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--txt-mid);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
}
.snav-item:hover, .snav-item.active {
    color: var(--navy);
    border-bottom-color: var(--yellow);
}

/* ── SERVICE DETAIL SECTIONS ── */
.service-detail { padding: 5rem 5%; }
.service-detail:nth-child(even) { background: var(--white); }
.service-detail:nth-child(odd) { background: var(--cream); }

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
/* Reverses layout for even/odd alternating effect */
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }

.service-icon-big {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--mist);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-detail h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.feature-list { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }
.feature-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.feature-check {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-check svg { width: 10px; height: 10px; stroke: #fff; stroke-width: 3; fill: none; }

/* ── SERVICE VISUALS (DARK BOX) ── */
.service-visual {
    background: var(--navy);
    border-radius: 24px;
    padding: 2.5rem;
    color: #fff;
}
.metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.metric-block { background: rgba(255, 255, 255, 0.08); border-radius: 12px; padding: 1.2rem; }
.metric-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--yellow);
    line-height: 1;
}
.tech-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 0.3rem 0.75rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ── PRICING BANDS ── */
/* ── PRICING BAND & GRID ── */
.pricing-band {
    background: var(--navy);
    padding: 5rem 5%;
    text-align: center;
}

.pricing-band .section-label {
    color: var(--yellow); /* Matches your "Free Assessment" style */
    margin-bottom: 1rem;
}

.section-title-light {
    color: var(--white) !important;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

/* ── PRICING CARD ── */
.pricing-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: background 0.2s, transform 0.2s;
}

.pricing-card:hover:not(.featured) {
    background: rgba(255, 255, 255, 0.12);
}

.pricing-card.featured {
    background: var(--yellow);
    border-color: var(--yellow);
    transform: scale(1.02);
}

/* ── CARD CONTENT & TYPOGRAPHY ── */
.plan-name {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.plan-name.dark {
    color: var(--navy);
    opacity: 0.8;
}

.plan-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.plan-title.dark {
    color: var(--navy);
}

.plan-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.plan-desc.dark {
    color: rgba(10, 46, 92, 0.7);
}

/* ── FEATURES LIST ── */
.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1; /* Pushes button to the bottom */
}

.plan-features li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.plan-features li::before {
    content: '✓';
    color: var(--yellow);
    font-weight: 900;
}

.plan-features li.dark {
    color: var(--navy);
}

.plan-features li.dark::before {
    color: var(--navy);
}

/* ── PRICING CTA ── */
.plan-cta {
    display: block;
    text-align: center;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.plan-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.plan-cta.dark {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.plan-cta.dark:hover {
    background: var(--charcoal);
}

/* ── RESPONSIVE ── */
@media(max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* ── RESPONSIVE ── */
@media(max-width: 900px) {
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-detail-grid.reverse { direction: ltr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .services-nav { top: 0; }
}