/* ============================================================
   SERVICE PAGE STYLES — HULY-INSPIRED
   Extends styles.css for individual service pages
   ============================================================ */

/* ---------- SERVICE HERO ---------- */
.service-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 60px;
    overflow: hidden;
    z-index: 1;
}

.service-hero__gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.2;
    pointer-events: none;
}

.service-hero__gradient-orb--1 {
    width: 500px;
    height: 500px;
    background: var(--accent-blue);
    top: -100px;
    right: -100px;
}

.service-hero__gradient-orb--2 {
    width: 400px;
    height: 400px;
    background: #4d9aff;
    bottom: -80px;
    left: -80px;
}

.service-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-hero__content {
    position: relative;
    z-index: 2;
}

/* GAP 4: Section tag pill above the title */
.service-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 85, 255, 0.1);
    border: 1px solid rgba(0, 85, 255, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-blue);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.service-hero__tag svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

.service-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.service-hero__desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 520px;
}

.service-hero__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* GAP 1: Trust signal below CTAs */
.service-hero__trust {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 0.82rem;
    color: var(--text-tertiary);
    letter-spacing: 0.01em;
}

.service-hero__trust svg {
    width: 16px;
    height: 16px;
    color: rgba(0, 200, 120, 0.7);
    flex-shrink: 0;
}

/* GAP 2: Enhanced image treatment with glow */
.service-hero__image {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow:
        0 20px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 85, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.service-hero__image:hover {
    box-shadow:
        0 24px 90px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(0, 85, 255, 0.12);
    transform: translateY(-4px);
}

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

/* GAP 3: Stagger fade-in animation */
.service-hero__content .service-hero__tag {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.6s ease-out 0.1s forwards;
}

.service-hero__content .service-hero__title {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.6s ease-out 0.2s forwards;
}

.service-hero__content .service-hero__desc {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.6s ease-out 0.35s forwards;
}

.service-hero__content .service-hero__ctas {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.6s ease-out 0.45s forwards;
}

.service-hero__content .service-hero__trust {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.6s ease-out 0.55s forwards;
}

.service-hero__image {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    animation: heroImageReveal 0.8s ease-out 0.3s forwards;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroImageReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ---------- STATS COUNTER BAR ---------- */
.stats-bar {
    padding: 60px 0;
    position: relative;
}

.stats-bar__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.stats-bar__item {
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

.stats-bar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.stats-bar__number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 40%, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-bar__label {
    font-size: 0.82rem;
    color: var(--text-tertiary);
    letter-spacing: 0.02em;
}

/* ---------- SUB-SERVICES GRID ---------- */
.sub-services {
    padding: var(--section-padding) 0;
}

.sub-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.sub-service-card {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* Spotlight on sub-service cards */
.sub-service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(0, 85, 255, 0.06),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 1;
}

.sub-service-card:hover::after {
    opacity: 1;
}

/* Animated top border */
.sub-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
    z-index: 2;
}

.sub-service-card:hover::before {
    opacity: 1;
}

.sub-service-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-glow);
    border: 1px solid rgba(0, 85, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--accent-blue);
    margin-bottom: 20px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    z-index: 2;
}

.sub-service-card:hover .sub-service-card__icon {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(0, 85, 255, 0.15);
}

.sub-service-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
}

.sub-service-card__desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* ---------- MID-PAGE CTA ---------- */
.mid-cta {
    padding: 40px 0;
}

.mid-cta__card {
    text-align: center;
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 85, 255, 0.08) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 85, 255, 0.04) 100%);
    border: 1px solid rgba(0, 85, 255, 0.15);
}

.mid-cta__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 85, 255, 0.4), transparent);
}

.mid-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.mid-cta__desc {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 32px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.mid-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.mid-cta__note {
    color: var(--text-tertiary);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

/* ---------- APPROACH SECTION ---------- */
.approach {
    padding: 80px 0;
}

.approach__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.approach__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
}

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

.approach__desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

/* ---------- WHY CHOOSE ---------- */
.why-choose {
    padding: 80px 0;
}

.why-choose__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.why-card {
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    cursor: default;
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 85, 255, 0.2);
}

.why-card__number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 16px;
}

.why-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card__desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ---------- OUTCOMES ---------- */
.outcomes {
    padding: 60px 0 80px;
}

.outcomes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.outcome-card {
    padding: 32px 28px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    cursor: default;
}

.outcome-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 85, 255, 0.2);
}

.outcome-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-glow);
    border: 1px solid rgba(0, 85, 255, 0.1);
    border-radius: 50%;
    color: var(--accent-blue);
    margin: 0 auto 20px;
}

.outcome-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.outcome-card__desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ---------- SERVICE FINAL CTA ---------- */
.final-cta {
    padding: 80px 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 85, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta__inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.final-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.final-cta__desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 36px;
    line-height: 1.6;
}

/* ---------- SERVICE PAGE RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .service-hero {
        padding-top: 140px;
    }

    .service-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sub-services__grid,
    .why-choose__grid,
    .outcomes__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {

    /* Service Hero — spacing & typography */
    .service-hero {
        padding-top: 140px;
        padding-bottom: 48px;
        min-height: auto;
    }

    .service-hero__title {
        font-size: 1.8rem;
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .service-hero__desc {
        font-size: 0.92rem;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .service-hero__ctas {
        flex-direction: column;
    }

    .service-hero__ctas .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .service-hero__image {
        aspect-ratio: 16/10;
    }

    .service-hero__tag {
        font-size: 0.72rem;
        padding: 5px 12px;
    }

    .service-hero__trust {
        font-size: 0.78rem;
    }

    /* Stats counter bar */
    .stats-bar__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar__item:nth-child(2)::after {
        display: none;
    }

    .stats-bar__item {
        padding: 28px 16px;
    }

    .stats-bar__item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    /* Sub-service cards */
    .sub-services__grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .sub-service-card {
        padding: 28px 24px;
    }

    .sub-service-card__title {
        font-size: 1rem;
    }

    .sub-service-card__desc {
        font-size: 0.85rem;
        line-height: 1.65;
    }

    /* Mid-page CTA */
    .mid-cta__card {
        padding: 40px 24px;
    }

    .mid-cta__title {
        font-size: 1.5rem;
    }

    .mid-cta__desc {
        font-size: 0.92rem;
    }

    .mid-cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .mid-cta__actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Approach section */
    .approach__desc {
        font-size: 0.92rem;
        line-height: 1.75;
    }

    /* Why Choose cards */
    .why-choose__grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .why-card {
        padding: 28px 24px;
    }

    .why-card__number {
        font-size: 2.5rem;
    }

    .why-card__title {
        font-size: 1.05rem;
    }

    .why-card__desc {
        font-size: 0.84rem;
    }

    /* Outcomes */
    .outcomes__grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .outcome-card {
        padding: 28px 24px;
    }

    .outcome-card__icon {
        width: 48px;
        height: 48px;
    }

    .outcome-card__title {
        font-size: 1rem;
    }

    .outcome-card__desc {
        font-size: 0.84rem;
    }

    /* Final CTA */
    .final-cta {
        padding: 60px 0;
    }

    .final-cta__title {
        font-size: 1.5rem;
    }

    .final-cta__desc {
        font-size: 0.92rem;
        margin-bottom: 28px;
    }
}

/* ============================================================
   PREMIUM DESIGN UPGRADES — Phases 2-7
   ============================================================ */

/* ---------- PHASE 2: EXTRACTED WHO-WE-ARE INLINE STYLES ---------- */

/* Vision / Mission Cards */
.vm-card {
    padding: 40px 36px;
    cursor: default;
}

.vm-card__icon {
    margin-bottom: 24px;
}

.vm-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.vm-card__desc {
    margin-bottom: 0;
}

/* CEO Spotlight Section */
.ceo-spotlight {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
    padding: 48px;
}

.ceo-spotlight__photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 85, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 85, 255, 0.15);
}

.ceo-spotlight__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ceo-spotlight__quote {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgba(0, 85, 255, 0.3);
}

.ceo-spotlight__name {
    font-weight: 700;
    font-size: 1.15rem;
}

.ceo-spotlight__role {
    color: var(--text-tertiary);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.ceo-spotlight__social {
    color: var(--accent-blue);
    transition: opacity 0.3s;
    display: inline-flex;
}

.ceo-spotlight__social:hover {
    opacity: 0.7;
}

/* Section with background image overlay */
.section-bg-overlay {
    position: relative;
    overflow: hidden;
}

.section-bg-overlay__img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.section-bg-overlay__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.06;
}

.section-bg-overlay > .container {
    position: relative;
    z-index: 1;
}

/* ---------- PHASE 3: UNIFORM CARD HOVER EFFECTS ---------- */

/* Spotlight hover for why-cards and outcome-cards */
.why-card,
.outcome-card {
    position: relative;
    overflow: hidden;
}

.why-card::after,
.outcome-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(0, 85, 255, 0.06),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 1;
}

.why-card:hover::after,
.outcome-card:hover::after {
    opacity: 1;
}

/* Animated top border on hover */
.why-card::before,
.outcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
    z-index: 2;
}

.why-card:hover::before,
.outcome-card:hover::before {
    opacity: 1;
}

/* Inner glow on glass cards */
.glass-card:hover {
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Premium image treatment class */
.premium-image {
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

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

/* ---------- PHASE 4: STANDARDIZED SPACING ---------- */
/* Already covered by existing section padding — spacing fine-tuned via approach + mid-cta padding */

.approach {
    padding: 100px 0;
}

.mid-cta {
    padding: 60px 0;
}

.why-choose {
    padding: 100px 0;
}

.outcomes {
    padding: 80px 0;
}

/* ---------- PHASE 5: ANIMATIONS ---------- */

/* Body fade-in on page load */
body {
    animation: bodyFadeIn 0.4s ease-out;
}

@keyframes bodyFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Stagger reveal delays for card grids */
.sub-services__grid .reveal:nth-child(1) { transition-delay: 0s; }
.sub-services__grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.sub-services__grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.sub-services__grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.sub-services__grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.sub-services__grid .reveal:nth-child(6) { transition-delay: 0.40s; }

.why-choose__grid .reveal:nth-child(1) { transition-delay: 0s; }
.why-choose__grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.why-choose__grid .reveal:nth-child(3) { transition-delay: 0.16s; }

.outcomes__grid .reveal:nth-child(1) { transition-delay: 0s; }
.outcomes__grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.outcomes__grid .reveal:nth-child(3) { transition-delay: 0.16s; }

/* ---------- PHASE 6: LAYOUT UPGRADES ---------- */

/* Breadcrumbs — now visible */
.service-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    margin-bottom: 20px;
    color: var(--text-tertiary);
}

/* Footer gradient border */
.footer {
    border-top: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(0, 85, 255, 0.3), transparent) 1;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 85, 255, 0.15);
    border: 1px solid rgba(0, 85, 255, 0.2);
    border-radius: 50%;
    color: var(--accent-blue);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, background 0.3s;
    z-index: 999;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: rgba(0, 85, 255, 0.25);
}

/* ---------- PHASE 7: ACCESSIBILITY & NAVIGATION ---------- */

/* Active nav state */
.nav-link[aria-current="page"] {
    color: var(--accent-blue);
}

.nav-link[aria-current="page"]::after {
    width: 100% !important;
    opacity: 1 !important;
}

/* Focus visible styles */
*:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 3px;
    border-radius: 4px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 3px;
}

/* WhoWeAre specific grid */
.wwa-outcomes-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .wwa-outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wwa-outcomes-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }
}

/* ---------- RESPONSIVE OVERRIDES FOR NEW STYLES ---------- */
@media (max-width: 768px) {
    .ceo-spotlight {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 24px;
        gap: 24px;
    }

    .ceo-spotlight__photo {
        margin: 0 auto;
        width: 100px;
        height: 100px;
    }

    .ceo-spotlight__quote {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid rgba(0, 85, 255, 0.3);
        padding-top: 16px;
    }

    .ceo-spotlight__body {
        align-items: center;
    }

    .vm-card {
        padding: 28px 24px;
    }

    .vm-card__title {
        font-size: 1.15rem;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* ---------- LIGHT MODE — SERVICE PAGE OVERRIDES ---------- */

/* --- Service hero: atmospheric background --- */
[data-theme="light"] .service-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 120%;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(0, 85, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(0, 85, 255, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 0%, rgba(0, 85, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Visible gradient orbs in light mode */
[data-theme="light"] .service-hero__gradient-orb--1 {
    opacity: 0.08;
    background: #0055ff;
}

[data-theme="light"] .service-hero__gradient-orb--2 {
    opacity: 0.06;
    background: #0055ff;
}

/* --- Hero image: brand glow anchor --- */
[data-theme="light"] .service-hero__image {
    box-shadow:
        0 20px 80px rgba(0, 0, 40, 0.1),
        0 4px 20px rgba(0, 85, 255, 0.08),
        0 0 0 1px rgba(0, 85, 255, 0.06);
    border-color: rgba(0, 85, 255, 0.08);
}

[data-theme="light"] .service-hero__image::after {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, rgba(0, 85, 255, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    border-radius: inherit;
}

[data-theme="light"] .service-hero__image:hover {
    box-shadow:
        0 24px 90px rgba(0, 0, 40, 0.14),
        0 8px 40px rgba(0, 85, 255, 0.12),
        0 0 0 1px rgba(0, 85, 255, 0.1);
    transform: translateY(-4px);
}

/* --- Service hero tag: solid brand pill --- */
[data-theme="light"] .service-hero__tag {
    background: #0055ff;
    color: #fff;
    border-color: transparent;
    box-shadow: 0 2px 12px rgba(0, 85, 255, 0.2);
}

/* --- Service hero secondary CTA: premium outline --- */
[data-theme="light"] .service-hero__content .btn--secondary {
    border: 1.5px solid #0055ff;
    color: #0055ff;
    background: transparent;
}

[data-theme="light"] .service-hero__content .btn--secondary:hover {
    background: rgba(0, 85, 255, 0.06);
    border-color: #0055ff;
    box-shadow: 0 0 20px rgba(0, 85, 255, 0.15), 0 8px 32px rgba(0, 85, 255, 0.1);
}

/* --- Trust signal: bolder in light mode --- */
[data-theme="light"] .service-hero__trust {
    color: var(--text-secondary);
    font-weight: 500;
}

[data-theme="light"] .service-hero__trust svg {
    color: #0055ff;
    opacity: 1;
}

/* --- Stats bar: branded appearance --- */
[data-theme="light"] .stats-bar__inner {
    background: #fff;
    border-color: rgba(0, 85, 255, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 40, 0.06);
}

[data-theme="light"] .stats-bar__item:not(:last-child)::after {
    background: linear-gradient(180deg, transparent, rgba(0, 85, 255, 0.15), transparent);
}

[data-theme="light"] .stats-bar__number {
    background: #0055ff;
    -webkit-background-clip: text;
    background-clip: text;
}

/* --- Sub-service cards: brand accents --- */
[data-theme="light"] .sub-service-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 3px solid rgba(0, 85, 255, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 40, 0.04);
}

[data-theme="light"] .sub-service-card:hover {
    border-top-color: #0055ff;
    box-shadow: 0 12px 40px rgba(0, 85, 255, 0.1);
}

[data-theme="light"] .sub-service-card__icon {
    background: linear-gradient(135deg, rgba(0, 85, 255, 0.1), rgba(0, 85, 255, 0.04));
    color: #0055ff;
    transition: all 0.4s var(--ease-out);
}

[data-theme="light"] .sub-service-card:hover .sub-service-card__icon {
    background: linear-gradient(135deg, #0055ff, #003cc0);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 85, 255, 0.25);
}

/* --- Service tabs: brand active state --- */
[data-theme="light"] .service-tab {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-secondary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: all 0.3s var(--ease-out);
}

[data-theme="light"] .service-tab.active {
    background: #0055ff;
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(0, 85, 255, 0.25);
}

[data-theme="light"] .service-tab:hover {
    color: #0055ff;
    border-color: rgba(0, 85, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 85, 255, 0.08);
}

/* --- Why cards: premium left accent --- */
[data-theme="light"] .why-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 3px solid rgba(0, 85, 255, 0.2);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: all 0.4s var(--ease-out);
}

[data-theme="light"] .why-card:hover {
    border-left-color: #0055ff;
    box-shadow: 0 20px 60px rgba(0, 0, 40, 0.06);
    transform: translateY(-4px);
}

/* --- Outcome cards: premium treatment --- */
[data-theme="light"] .outcome-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 2px solid rgba(0, 85, 255, 0.12);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: all 0.4s var(--ease-out);
}

[data-theme="light"] .outcome-card:hover {
    border-top-color: #0055ff;
    box-shadow: 0 20px 60px rgba(0, 0, 40, 0.06);
    transform: translateY(-4px);
}

[data-theme="light"] .outcome-card__icon {
    background: linear-gradient(135deg, #0055ff, #003cc0);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 85, 255, 0.2);
}


/* --- Mid CTA: brand blue gradient --- */
[data-theme="light"] .mid-cta__card {
    background: linear-gradient(135deg, #0055ff 0%, #003cc0 100%);
    border-color: transparent;
}

[data-theme="light"] .mid-cta__card::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

[data-theme="light"] .mid-cta__title {
    color: #fff;
}

[data-theme="light"] .mid-cta__desc {
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .mid-cta .btn--primary {
    background: #fff;
    color: #0055ff;
    text-shadow: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .mid-cta .btn--primary:hover {
    background: #f0f4ff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .mid-cta .btn--outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    text-shadow: none;
}

[data-theme="light"] .mid-cta .btn--outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

/* --- Final CTA: brand blue gradient --- */
[data-theme="light"] .final-cta::before {
    background: radial-gradient(circle, rgba(0, 85, 255, 0.06) 0%, transparent 70%);
}

[data-theme="light"] .final-cta__title {
    color: var(--text-primary);
}

[data-theme="light"] .final-cta__desc {
    color: var(--text-secondary);
}

/* --- CEO spotlight: full white text on blue gradient card --- */
[data-theme="light"] .ceo-spotlight__photo {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .ceo-spotlight .section-tag {
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .ceo-spotlight__quote {
    color: rgba(255, 255, 255, 0.85);
    border-left-color: rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .ceo-spotlight__name {
    color: #fff;
}

[data-theme="light"] .ceo-spotlight__role {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .ceo-spotlight__social {
    color: #fff;
}

[data-theme="light"] .ceo-spotlight__social:hover {
    opacity: 0.8;
}

/* --- Vision/Mission cards --- */
[data-theme="light"] .vm-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 40, 0.04);
}

/* --- Methodology cards --- */
[data-theme="light"] .method-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 40, 0.04);
}

/* ============================================================
   NEW PREMIUM SECTIONS — Process, Proof, FAQ, Related
   ============================================================ */

/* ---------- PROCESS TIMELINE ---------- */
.process-timeline {
    padding: 100px 0;
}

.process-timeline__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
    position: relative;
}

/* Connecting line behind steps */
.process-timeline__grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-blue), var(--accent-blue), transparent);
    opacity: 0.2;
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.process-step__number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--ease-out);
}

.process-step:hover .process-step__number {
    background: var(--accent-blue);
    color: #fff;
    border-color: var(--accent-blue);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 85, 255, 0.3);
}

.process-step__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.process-step__desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 240px;
    margin: 0 auto;
}

/* ---------- PROOF / CASE STUDY SECTION ---------- */
.proof-section {
    padding: 100px 0;
}

.proof-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 48px 56px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    transition: all 0.4s var(--ease-out);
}

.proof-card:hover {
    border-color: rgba(0, 85, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 40, 0.08);
}

.proof-card__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.proof-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-blue);
}

.proof-card__tag svg {
    width: 14px;
    height: 14px;
}

.proof-card__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.proof-card__desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.proof-card__metrics {
    display: flex;
    gap: 32px;
    margin-top: 8px;
}

.proof-metric {
    text-align: left;
}

.proof-metric__value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-metric__label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

.proof-card__quote {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.proof-card__quote-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--accent-blue);
}

.proof-card__quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 20px;
}

.proof-card__quote-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.proof-card__quote-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.proof-card__quote-role {
    font-size: 0.78rem;
    color: var(--text-tertiary);
}

/* ---------- FAQ ACCORDION ---------- */
.faq-section {
    padding: 100px 0;
}

.faq-section .section-header {
    margin-bottom: 48px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s var(--ease-out);
}

.faq-item:hover {
    border-color: rgba(0, 85, 255, 0.15);
}

.faq-item.active {
    border-color: rgba(0, 85, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 85, 255, 0.06);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent-blue);
}

.faq-question__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--text-tertiary);
    transition: transform 0.3s var(--ease-out), color 0.3s;
}

.faq-item.active .faq-question__icon {
    transform: rotate(45deg);
    color: var(--accent-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.4s;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer__inner {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ---------- RELATED SERVICES ---------- */
.related-services {
    padding: 80px 0;
}

.related-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.related-service-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
}

.related-service-card:hover {
    border-color: rgba(0, 85, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 40, 0.08);
}

.related-service-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 85, 255, 0.08);
    color: var(--accent-blue);
    flex-shrink: 0;
}

.related-service-card__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.related-service-card__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.related-service-card__desc {
    font-size: 0.78rem;
    color: var(--text-tertiary);
}

.related-service-card__arrow {
    margin-left: auto;
    color: var(--text-tertiary);
    transition: transform 0.3s, color 0.3s;
}

.related-service-card:hover .related-service-card__arrow {
    transform: translateX(4px);
    color: var(--accent-blue);
}

/* ============================================================
   LIGHT MODE — NEW SECTIONS
   ============================================================ */

[data-theme="light"] .process-step__number {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 40, 0.06);
}

[data-theme="light"] .process-step:hover .process-step__number {
    border-color: var(--accent-blue);
    box-shadow: 0 8px 30px rgba(0, 85, 255, 0.2);
}

[data-theme="light"] .proof-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .proof-card:hover {
    border-color: rgba(0, 85, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 40, 0.06);
}

[data-theme="light"] .faq-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .faq-item:hover {
    border-color: rgba(0, 85, 255, 0.12);
}

[data-theme="light"] .faq-item.active {
    border-color: rgba(0, 85, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 85, 255, 0.04);
}

[data-theme="light"] .related-service-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .related-service-card:hover {
    border-color: rgba(0, 85, 255, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 40, 0.05);
}

[data-theme="light"] .related-service-card__icon {
    background: rgba(0, 85, 255, 0.06);
}

/* ============================================================
   RESPONSIVE — NEW SECTIONS
   ============================================================ */

@media (max-width: 768px) {
    .process-timeline__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 20px;
    }

    .process-timeline__grid::before {
        display: none;
    }

    .process-step {
        text-align: left;
        padding: 0 8px;
    }

    .process-step__number {
        margin: 0 0 16px;
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
    }

    .process-step__desc {
        max-width: none;
    }

    .proof-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 28px;
    }

    .proof-card__metrics {
        flex-wrap: wrap;
        gap: 20px;
    }

    .related-services__grid {
        grid-template-columns: 1fr;
    }

    /* Clearance so FAB doesn't overlap last section */
    .related-services {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .process-timeline__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .proof-card {
        padding: 24px 20px;
    }

    .proof-card__title {
        font-size: 1.3rem;
    }
}