/* ── pages.css — Case Studies, About, Contact, Services page styles ──────── */
/* Requires: base theme variables from main.css                               */

:root {
    --page-navy:     #080C14;   /* updated to match brand spec */
    --page-surface:  #0D1525;   /* updated to match brand spec */
    --page-surface2: #111827;
    --page-border:   #1E2A3A;
    --page-cyan:     #00C8FF;   /* updated to match brand spec */
    --page-violet:   #7B5EA7;
    --page-green:    #00FF9D;
    --page-text:     rgba(255,255,255,0.7);
    --page-muted:    #5B6478;   /* Steel Grey per brand guidelines */
    --page-white:    #FFFFFF;
    --section-gap:   96px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES ARCHIVE — archive-service.php
═══════════════════════════════════════════════════════════════════════════ */

/* Hero */
.svc-archive-hero {
    position: relative;
    padding: 140px 0 100px;
    text-align: center;
    overflow: hidden;
    background: var(--page-navy);
    border-bottom: 1px solid var(--page-border);
}
.svc-archive-hero__glow {
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 600px;
    background: radial-gradient(ellipse at center,
        rgba(0,200,255,0.1) 0%,
        rgba(123,94,167,0.06) 45%,
        transparent 70%);
    pointer-events: none;
}
.svc-archive-hero__headline {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 12px 0 20px;
}
.svc-archive-hero__sub {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.svc-archive-hero__ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Grid section */
.svc-archive-grid-section {
    padding: 80px 0 100px;
    background: var(--page-navy);
}
.svc-archive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 8px;
}

/* Service card */
.svc-archive-card {
    background: var(--page-surface);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}
.svc-archive-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--card-color, 0,200,255), 0.3);
    box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}
/* Image area */
.svc-archive-card__image {
    height: 200px;
    background-color: #0a1020;
    transition: transform 0.4s ease;
    background-size: cover;
    background-position: center;
}
.svc-archive-card:hover .svc-archive-card__image {
    transform: scale(1.04);
}
/* Fallback: gradient fill when no image */
.svc-archive-card__image--fallback {
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--card-color, #00C8FF) 15%, #0a1020) 0%,
        #0a1020 100%);
}
/* Card body */
.svc-archive-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.svc-archive-card__icon {
    margin-bottom: 14px;
    display: flex;
}
.svc-archive-card__title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.0625rem;
    margin: 0 0 10px;
    line-height: 1.3;
}
.svc-archive-card__title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.svc-archive-card__title a:hover { color: var(--page-cyan); }
.svc-archive-card__desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
}
.svc-archive-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--card-color, #00C8FF);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s;
    /* Stretched link — whole card is clickable */
    position: relative;
    z-index: 1;
}
.svc-archive-card__link::before {
    content: '';
    position: absolute;
    inset: -24px;
    z-index: 0;
}
.svc-archive-card__link:hover { gap: 10px; }

/* Stats strip */
.svc-stats-strip {
    padding: 60px 0;
    background: var(--page-surface);
    border-top: 1px solid var(--page-border);
    border-bottom: 1px solid var(--page-border);
}
.svc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.svc-stat__num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--page-cyan);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.svc-stat__num span { font-size: 0.65em; }
.svc-stat__label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}
/* No results */
.svc-no-results {
    text-align: center;
    padding: 80px 0;
    color: rgba(255,255,255,0.5);
}
.svc-no-results a { color: var(--page-cyan); }

/* Responsive */
@media (max-width: 1100px) {
    .svc-archive-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-stats-grid   { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 600px) {
    .svc-archive-grid { grid-template-columns: 1fr; }
    .svc-stats-grid   { grid-template-columns: repeat(2, 1fr); }
    .svc-archive-hero { padding: 100px 0 60px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CASE STUDIES ARCHIVE
═══════════════════════════════════════════════════════════════════════════ */

/* Archive Hero */
.cs-archive-hero {
    padding: 100px 0 72px;
    background: radial-gradient(ellipse at 50% -20%, rgba(0,212,255,.08) 0%, transparent 70%);
    text-align: center;
}
.cs-archive-headline {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--page-white);
    line-height: 1.15;
    margin: 12px 0 20px;
    font-family: 'Syne', sans-serif;
}
.cs-archive-sub {
    font-size: 1.1rem;
    color: var(--page-text);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* Counters bar */
.cs-archive-counters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--page-surface);
    border: 1px solid var(--page-border);
    border-radius: 16px;
    padding: 28px 40px;
    max-width: 880px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.cs-hero-stat {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 8px 16px;
}
.cs-hero-stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--page-cyan);
    font-family: 'Syne', sans-serif;
    line-height: 1;
    margin-bottom: 6px;
}
.cs-hero-stat-label {
    font-size: 0.78rem;
    color: var(--page-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
}
.cs-hero-stat-divider {
    width: 1px;
    height: 48px;
    background: var(--page-border);
    flex-shrink: 0;
}

/* Filter bar */
.cs-filter-bar {
    padding: 32px 0;
    background: var(--page-surface);
    border-bottom: 1px solid var(--page-border);
    position: sticky;
    top: 0;
    z-index: 40;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}
.cs-filter-tabs {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cs-filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.cs-filter-label {
    font-size: 0.75rem;
    color: var(--page-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
    white-space: nowrap;
}
.cs-filter-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.cs-filter-pill {
    background: transparent;
    border: 1px solid var(--page-border);
    color: var(--page-muted);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s;
    font-family: inherit;
    white-space: nowrap;
}
.cs-filter-pill:hover,
.cs-filter-pill.active {
    background: rgba(0,212,255,.1);
    border-color: var(--page-cyan);
    color: var(--page-cyan);
}

/* Card grid */
.cs-archive-grid-wrap { padding: var(--section-gap) 0; }
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    margin-bottom: 48px;
}

/* Case study card */
.cs-card {
    background: var(--page-surface);
    border: 1px solid var(--page-border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .25s, transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    position: relative;
}
.cs-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--page-cyan), var(--page-violet));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.cs-card:hover {
    border-color: rgba(0,212,255,.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.cs-card:hover::before { transform: scaleX(1); }

.cs-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.cs-card-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.cs-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--page-white);
    line-height: 1.4;
    margin-bottom: 12px;
    font-family: 'Syne', sans-serif;
}
.cs-card-excerpt {
    font-size: 0.875rem;
    color: var(--page-text);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cs-card-outcomes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--page-border);
}
.cs-card-outcome-num {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--page-cyan);
    font-family: 'Syne', sans-serif;
    line-height: 1;
    margin-bottom: 3px;
}
.cs-card-outcome-label {
    font-size: 0.7rem;
    color: var(--page-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.cs-card-footer {
    padding: 16px 28px;
    border-top: 1px solid var(--page-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cs-card-read-more {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--page-cyan);
    display: flex;
    align-items: center;
    gap: 6px;
}
.cs-card-read-more svg { transition: transform .2s; }
.cs-card:hover .cs-card-read-more svg { transform: translateX(4px); }

/* Overlay link makes the whole card clickable */
.cs-card-overlay-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 16px;
}
.cs-card-title-link,
.cs-card-read-more { position: relative; z-index: 2; }
.cs-card-title-link { text-decoration: none; color: inherit; }
.cs-card-title-link:hover { color: var(--page-cyan); }

/* Badges */
.badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
    white-space: nowrap;
}
.badge-industry { background: rgba(0,212,255,.1);  color: var(--page-cyan);   border: 1px solid rgba(0,212,255,.25); }
.badge-geo      { background: rgba(0,255,157,.08); color: var(--page-green);  border: 1px solid rgba(0,255,157,.2); }
.badge-service  { background: rgba(123,94,167,.1); color: #A78BFA;            border: 1px solid rgba(123,94,167,.25); }

/* Load more */
.cs-load-more-wrap { text-align: center; }
.cs-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 64px 24px;
    color: var(--page-muted);
    font-size: 1rem;
}

/* Archive CTA */
.cs-archive-cta { padding: 80px 0; }

/* ═══════════════════════════════════════════════════════════════════════════
   CASE STUDY SINGLE
═══════════════════════════════════════════════════════════════════════════ */

.cs-single-hero {
    padding: 80px 0 60px;
    background: radial-gradient(ellipse at 60% -10%, rgba(0,212,255,.07) 0%, transparent 65%);
}
.cs-single-hero-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
}
.cs-single-hero-content { flex: 1; min-width: 0; }
.cs-meta-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.cs-single-title {
    font-size: clamp(1.75rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--page-white);
    line-height: 1.2;
    margin-bottom: 16px;
    font-family: 'Syne', sans-serif;
}
.cs-single-outcome {
    font-size: 1.05rem;
    color: var(--page-cyan);
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.5;
}
.cs-single-client {
    font-size: 0.9rem;
    color: var(--page-text);
    margin-bottom: 20px;
}
.cs-client-label { color: var(--page-muted); margin-right: 6px; }
.cs-client-name  { color: var(--page-white); font-weight: 600; }

.cs-single-meta-row { display: flex; gap: 20px; flex-wrap: wrap; }
.cs-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--page-muted);
}
.cs-meta-icon { width: 14px; height: 14px; }

/* Hero stat */
.cs-single-hero-stat {
    flex-shrink: 0;
    text-align: center;
    background: var(--page-surface);
    border: 1px solid var(--page-border);
    border-top: 3px solid var(--page-cyan);
    border-radius: 16px;
    padding: 32px 40px;
    min-width: 200px;
}
.cs-hero-big-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--page-cyan);
    font-family: 'Syne', sans-serif;
    line-height: 1;
    margin-bottom: 10px;
}
.cs-hero-big-label { font-size: 0.8rem; color: var(--page-muted); text-transform: uppercase; letter-spacing: .05em; }

/* Stats bar */
.cs-stats-bar { background: var(--page-surface); border-top: 1px solid var(--page-border); border-bottom: 1px solid var(--page-border); padding: 32px 0; }
.cs-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    text-align: center;
}
.cs-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--page-cyan);
    font-family: 'Syne', sans-serif;
    line-height: 1;
    margin-bottom: 6px;
}
.cs-stat-label { font-size: 0.78rem; color: var(--page-muted); text-transform: uppercase; letter-spacing: .05em; }

/* Body layout */
.cs-single-body { padding: 60px 0 var(--section-gap); }
.cs-single-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 56px;
    align-items: start;
}

/* Sticky sidebar nav */
.cs-sticky-nav {
    position: sticky;
    top: 80px;
}
.cs-sticky-nav-inner {
    background: var(--page-surface);
    border: 1px solid var(--page-border);
    border-radius: 14px;
    overflow: hidden;
}
.cs-sticky-nav-label {
    padding: 14px 18px;
    font-size: 0.7rem;
    color: var(--page-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    border-bottom: 1px solid var(--page-border);
}
.cs-nav-list { list-style: none; padding: 8px 0; margin: 0; }
.cs-nav-link {
    display: block;
    padding: 10px 18px;
    font-size: 0.82rem;
    color: var(--page-text);
    text-decoration: none;
    transition: color .2s, background .2s;
    border-left: 2px solid transparent;
}
.cs-nav-link:hover,
.cs-nav-link.is-active {
    color: var(--page-cyan);
    background: rgba(0,212,255,.05);
    border-left-color: var(--page-cyan);
}
.cs-sticky-nav-cta { padding: 14px 16px; border-top: 1px solid var(--page-border); }
.cs-sticky-nav-cta .btn { width: 100%; text-align: center; justify-content: center; }

/* Content sections */
.cs-section {
    padding: 48px 0;
    border-bottom: 1px solid var(--page-border);
}
.cs-section:last-child { border-bottom: none; }
.cs-section-tag {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--page-cyan);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 10px;
}
.cs-section-heading {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--page-white);
    margin-bottom: 24px;
    font-family: 'Syne', sans-serif;
}
.cs-richtext {
    color: var(--page-text);
    line-height: 1.8;
    font-size: 1rem;
}
.cs-richtext h3 { font-size: 1.15rem; color: var(--page-white); font-weight: 700; margin: 28px 0 10px; }
.cs-richtext p  { margin-bottom: 16px; }
.cs-richtext ul,
.cs-richtext ol { padding-left: 20px; margin-bottom: 16px; }
.cs-richtext li { margin-bottom: 8px; }
.cs-richtext strong { color: var(--page-white); }

/* Tech grid */
.cs-tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.cs-tech-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,212,255,.07);
    border: 1px solid rgba(0,212,255,.2);
    color: var(--page-text);
    font-size: 0.82rem;
    padding: 8px 16px;
    border-radius: 8px;
}
.cs-tech-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--page-cyan);
    flex-shrink: 0;
}

/* Results section */
.cs-results-stats-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
    background: var(--page-surface2);
    border: 1px solid var(--page-border);
    border-radius: 14px;
    padding: 28px;
}
.cs-result-num {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--page-cyan);
    font-family: 'Syne', sans-serif;
    line-height: 1;
    margin-bottom: 6px;
}
.cs-result-label { font-size: 0.78rem; color: var(--page-muted); }

/* Testimonial */
.cs-testimonial-card {
    background: var(--page-surface2);
    border: 1px solid var(--page-border);
    border-radius: 16px;
    padding: 36px;
    margin: 0;
    position: relative;
}
.cs-quote-icon { position: absolute; top: 24px; right: 28px; width: 40px; opacity: .5; }
.cs-testimonial-quote {
    font-size: 1.1rem;
    color: var(--page-white);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
}
.cs-testimonial-author { display: flex; align-items: center; gap: 14px; }
.cs-testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,212,255,.2), rgba(123,94,167,.2));
    border: 1px solid rgba(0,212,255,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--page-cyan);
    flex-shrink: 0;
}
.cs-testimonial-name  { font-weight: 700; color: var(--page-white); font-size: 0.9rem; }
.cs-testimonial-title { font-size: 0.78rem; color: var(--page-muted); margin-top: 2px; }

/* Related services */
.cs-related-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.cs-related-card {
    background: var(--page-surface);
    border: 1px solid var(--page-border);
    border-radius: 12px;
    padding: 20px 22px;
    text-decoration: none;
    transition: border-color .2s, transform .2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-left: 3px solid var(--card-accent, var(--page-cyan));
}
.cs-related-card:hover { border-color: var(--card-accent, var(--page-cyan)); transform: translateX(4px); }
.cs-related-card-title { font-size: 0.9rem; font-weight: 700; color: var(--page-white); }
.cs-related-card-arrow { color: var(--card-accent, var(--page-cyan)); font-size: 1.1rem; }
.cs-related-card-icon { width: 28px; height: 28px; color: var(--card-accent, var(--page-cyan)); }

/* Bottom CTA card */
.cs-cta-card {
    background: linear-gradient(135deg, rgba(0,212,255,.07) 0%, rgba(123,94,167,.07) 100%);
    border: 1px solid rgba(0,212,255,.2);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
}
.cs-cta-card-headline { font-size: 1.8rem; font-weight: 800; color: var(--page-white); margin-bottom: 14px; font-family: 'Syne', sans-serif; }
.cs-cta-card-sub { font-size: 1rem; color: var(--page-text); max-width: 520px; margin: 0 auto 28px; line-height: 1.7; }
.cs-cta-card-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* More case studies */
.cs-more { padding: var(--section-gap) 0; background: var(--page-surface); }
.cs-more-heading { font-size: 1.75rem; font-weight: 800; color: var(--page-white); margin-bottom: 40px; font-family: 'Syne', sans-serif; }

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════════════════════ */

/* About hero */
.about-hero {
    padding: 120px 0 80px;
    background: radial-gradient(ellipse at 50% 0%, rgba(0,212,255,.07) 0%, transparent 60%);
}
.about-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    gap: 32px;
}
.about-hero-headline {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--page-white);
    line-height: 1.15;
    margin-bottom: 20px;
    font-family: 'Syne', sans-serif;
}
.about-hero-sub {
    font-size: 1.05rem;
    color: var(--page-text);
    line-height: 1.75;
    max-width: 680px;
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
}
.about-hero-certs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.about-cert-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,212,255,.07);
    border: 1px solid rgba(0,212,255,.2);
    color: var(--page-text);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 20px;
}
.about-cert-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--page-green);
    flex-shrink: 0;
}

.about-globe-svg { width: 100%; max-width: 420px; }

/* Founder section */
.about-founder { padding: var(--section-gap) 0; }
.about-founder-inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 72px;
    align-items: start;
}
.about-founder-photo { width: 100%; border-radius: 20px; display: block; }
.about-founder-avatar {
    width: 280px; height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,212,255,.15), rgba(123,94,167,.15));
    border: 2px solid rgba(0,212,255,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto 28px;
}
.about-founder-initials { font-size: 4rem; font-weight: 900; color: var(--page-cyan); font-family: 'Syne', sans-serif; }
.about-founder-glow {
    position: absolute; inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,212,255,.15) 0%, transparent 70%);
    pointer-events: none;
}

.about-founder-badges { display: flex; flex-direction: column; gap: 10px; }
.about-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--page-surface);
    border: 1px solid var(--page-border);
    border-radius: 10px;
    padding: 12px 16px;
}
.about-badge-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(0,212,255,.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 800;
    color: var(--page-cyan);
    flex-shrink: 0;
}
.about-badge-icon--phd { background: rgba(123,94,167,.1); color: #A78BFA; }
.about-badge-icon--ms  { background: rgba(0,164,239,.1);  color: #00A4EF; }
.about-badge-text { font-size: 0.82rem; color: var(--page-text); font-weight: 500; }

.about-founder-name  { font-size: 2rem; font-weight: 800; color: var(--page-white); margin-bottom: 4px; font-family: 'Syne', sans-serif; }
.about-founder-title { font-size: 0.9rem; color: var(--page-cyan); margin-bottom: 28px; }
.about-founder-bio p { color: var(--page-text); line-height: 1.8; margin-bottom: 16px; font-size: 1rem; }
.about-founder-quote {
    border-left: 3px solid var(--page-cyan);
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    color: var(--page-white);
    font-size: 1rem;
    line-height: 1.7;
}
.about-founder-stats {
    display: flex;
    gap: 32px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--page-border);
}
.about-founder-stat-num  { font-size: 2rem; font-weight: 900; color: var(--page-cyan); font-family: 'Syne', sans-serif; line-height: 1; }
.about-founder-stat-label{ font-size: 0.78rem; color: var(--page-muted); margin-top: 4px; }

/* Values */
.about-values { padding: var(--section-gap) 0; background: var(--page-surface); }
/* Fix: 6 - Redesign core values section to 2x3 grid on desktop and 1-column on mobile */
.about-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 56px;
}
@media (min-width: 768px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.about-value-card {
    background: var(--page-page-navy, var(--page-navy));
    border: 1px solid var(--page-border);
    border-radius: 16px;
    padding: 32px;
    border-top: 3px solid var(--card-accent, var(--page-cyan));
    transition: transform .25s, box-shadow .25s;
}
.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.about-value-icon { width: 52px; height: 52px; margin-bottom: 20px; }
.about-value-title { font-size: 1.1rem; font-weight: 800; color: var(--page-white); margin-bottom: 12px; font-family: 'Syne', sans-serif; }
.about-value-desc { font-size: 0.9rem; color: var(--page-text); line-height: 1.7; }

/* Team */
.about-team { padding: var(--section-gap) 0; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; margin-top: 56px; }

/* Team cards */
.team-card {
    background: var(--page-surface);
    border: 1px solid var(--page-border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .25s, transform .25s;
    display: flex;
    flex-direction: column;
}
.team-card:hover {
    border-color: rgba(0,212,255,.3);
    transform: translateY(-3px);
}
.team-card-photo-wrap {
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0,212,255,.1), rgba(123,94,167,.1));
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-card-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,212,255,.2), rgba(123,94,167,.2));
    border: 2px solid rgba(0,212,255,.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; font-weight: 900; color: var(--page-cyan); font-family: 'Syne', sans-serif;
}
.team-card-body { padding: 20px; flex: 1; }
.team-card-name { font-size: 1rem; font-weight: 800; color: var(--page-white); margin-bottom: 2px; font-family: 'Syne', sans-serif; }
.team-card-role { font-size: 0.78rem; color: var(--page-cyan); margin-bottom: 10px; }
.team-card-bio  { font-size: 0.82rem; color: var(--page-text); line-height: 1.65; margin-bottom: 12px; }
.team-card-skills { display: flex; flex-wrap: wrap; gap: 6px; }
.pill { font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 12px; }
.pill-cyan { background: rgba(0,212,255,.1); border: 1px solid rgba(0,212,255,.2); color: var(--page-cyan); }
.team-card-footer { padding: 12px 20px; border-top: 1px solid var(--page-border); }
.team-card-linkedin {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.78rem; font-weight: 600; color: #0077B5; text-decoration: none;
    transition: opacity .2s;
}
.team-card-linkedin:hover { opacity: .8; }
.team-card-li-icon { width: 16px; height: 16px; }

/* Operations */
.about-operations { padding: var(--section-gap) 0; background: var(--page-surface); }
.about-ops-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 56px;
}
.about-ops-card { background: var(--page-navy); border: 1px solid var(--page-border); border-radius: 16px; padding: 36px; }
.about-ops-flag { font-size: 2.5rem; margin-bottom: 16px; }
.about-ops-country { font-size: 1.35rem; font-weight: 800; color: var(--page-white); margin-bottom: 4px; font-family: 'Syne', sans-serif; }
.about-ops-hq { font-size: 0.9rem; color: var(--page-cyan); font-weight: 600; margin-bottom: 2px; }
.about-ops-secondary { font-size: 0.82rem; color: var(--page-muted); margin-bottom: 20px; }
.about-ops-list { padding-left: 18px; margin-bottom: 20px; }
.about-ops-list li { font-size: 0.875rem; color: var(--page-text); margin-bottom: 8px; line-height: 1.6; }
.about-ops-link { font-size: 0.875rem; color: var(--page-cyan); text-decoration: none; }
.about-ops-link:hover { text-decoration: underline; }
.about-ops-divider { display: flex; flex-direction: column; align-items: center; gap: 12px; padding-top: 80px; }
.about-ops-divider-line { width: 1px; height: 80px; background: var(--page-border); }
.about-ops-divider-icon { color: var(--page-cyan); font-size: 1.2rem; }

/* Podcast + Certs */
.about-podcast-certs { padding: var(--section-gap) 0; }
.about-certs {
    text-align: center;
}
.about-certs-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--page-white);
    margin-bottom: 36px;
    font-family: 'Syne', sans-serif;
}

/* Card grid for Certifications and Partnerships */
.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
    justify-content: center;
    margin-top: 32px;
}
.about-card-item {
    background: rgba(13, 21, 37, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.3s ease,
                box-shadow 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.about-card-item:hover {
    transform: translateY(-5px);
    border-color: var(--card-color, var(--page-cyan));
    box-shadow: 
        0 12px 32px rgba(0,0,0,0.5), 
        0 0 20px rgba(0, 200, 255, 0.08);
}
.about-card-logo-wrap {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.about-card-logo-img {
    max-height: 48px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.about-card-item:hover .about-card-logo-img {
    opacity: 1;
}
.about-card-logo-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    transition: transform 0.3s ease;
}
.about-card-item:hover .about-card-logo-svg {
    transform: scale(1.1);
}
.about-card-logo-abbr {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1.5px solid;
    transition: transform 0.3s ease;
}
.about-card-item:hover .about-card-logo-abbr {
    transform: scale(1.1);
}
.about-card-name {
    font-size: 0.85rem;
    color: var(--page-text);
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    transition: color 0.2s;
}
.about-card-item:hover .about-card-name {
    color: var(--page-white);
}

@media (max-width: 768px) {
    .about-cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 16px;
    }
    .about-card-item {
        padding: 20px 12px;
        gap: 12px;
    }
    .about-card-logo-wrap {
        height: 48px;
    }
    .about-card-logo-img {
        max-height: 36px;
    }
    .about-card-logo-svg {
        width: 36px;
        height: 36px;
    }
    .about-card-logo-abbr {
        width: 36px;
        height: 36px;
        font-size: 9px;
    }
}

.about-podcast {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    align-items: start;
    background: var(--page-surface);
    border: 1px solid var(--page-border);
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 64px;
}
.about-podcast-icon { width: 64px; height: 64px; }
.about-podcast-title { font-size: 1.75rem; font-weight: 800; color: var(--page-white); margin-bottom: 12px; font-family: 'Syne', sans-serif; }
.about-podcast-desc { font-size: 1rem; color: var(--page-text); line-height: 1.75; margin-bottom: 24px; }
.about-podcast-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.contact-hero {
    padding: 120px 0 80px;
    background: 
        radial-gradient(circle at 80% -20%, rgba(123, 94, 167, 0.16) 0%, transparent 65%),
        radial-gradient(circle at 20% -20%, rgba(0, 200, 255, 0.12) 0%, transparent 65%);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.contact-headline {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--page-white);
    line-height: 1.15;
    margin: 12px 0 16px;
    font-family: 'Syne', sans-serif;
}
.contact-sub {
    font-size: 1.1rem;
    color: var(--page-text);
    max-width: 600px;
    line-height: 1.75;
    margin: 0 auto;
}

.contact-body { padding: 56px 0 var(--section-gap); }
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

/* Left column details */
.contact-col-heading {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--page-white);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
}
.contact-col-icon { width: 20px; height: 20px; color: var(--page-cyan); flex-shrink: 0; }
.contact-col-desc { font-size: 0.875rem; color: var(--page-muted); margin-bottom: 24px; line-height: 1.65; }

.contact-calendly-wrap {
    background: rgba(13, 21, 37, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Office cards list */
.contact-offices {
    background: rgba(13, 21, 37, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.contact-office {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.01);
    margin-bottom: 16px;
    transition: transform .25s, border-color .25s, background-color .25s;
}
.contact-office:last-child { margin-bottom: 0; }
.contact-office:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 200, 255, 0.25);
    background: rgba(255, 255, 255, 0.03);
}
.contact-office-flag {
    font-size: 1.5rem;
    line-height: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}
.contact-office-city { font-size: 0.95rem; font-weight: 700; color: var(--page-white); margin-bottom: 4px; }
.contact-office-role { font-size: 0.82rem; color: var(--page-muted); font-weight: 500; }
.contact-office-email { font-size: 0.82rem; color: var(--page-cyan); text-decoration: none; display: inline-block; margin-top: 6px; font-weight: 600; transition: color .2s; }
.contact-office-email:hover { color: #fff; text-decoration: none; }

/* Social link grid buttons */
.contact-social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}
.contact-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 16px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s, border-color .2s, box-shadow .2s, background-color .2s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-social-btn:hover {
    transform: translateY(-2px);
}
.contact-social-btn--wa {
    background: rgba(37, 211, 102, 0.06);
    border-color: rgba(37, 211, 102, 0.25);
    color: #25D366;
}
.contact-social-btn--wa:hover {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.5);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.15);
    color: #25D366;
}
.contact-social-btn--li {
    background: rgba(0, 119, 181, 0.06);
    border-color: rgba(0, 119, 181, 0.25);
    color: #00D4FF;
}
.contact-social-btn--li:hover {
    background: rgba(0, 119, 181, 0.12);
    border-color: rgba(0, 119, 181, 0.5);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.15);
    color: #00D4FF;
}
.contact-social-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* Right column — Form Card */
.contact-form-wrap {
    background: rgba(13, 21, 37, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.form-row { display: grid; gap: 20px; }
.form-row--half { grid-template-columns: 1fr 1fr; }

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--page-text);
}
.form-required { color: var(--page-cyan); }

.form-input {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--page-white);
    font-size: 0.92rem;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23B0C4DE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px !important;
}
.form-select option { background: var(--page-surface2); }
.form-textarea { resize: vertical; min-height: 110px; }

.form-error { font-size: 0.78rem; color: #F87171; }
.form-hint  { font-size: 0.75rem; color: var(--page-muted); }

/* GDPR checkbox */
.form-group--gdpr { margin-top: 4px; }
.form-checkbox-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.form-checkbox { position: absolute; opacity: 0; width: 0; height: 0; }
.form-checkbox-custom {
    width: 18px; height: 18px;
    border: 1px solid var(--page-border);
    border-radius: 4px;
    background: rgba(255,255,255,.04);
    flex-shrink: 0;
    margin-top: 2px;
    transition: border-color .2s, background .2s;
    position: relative;
}
.form-checkbox:checked + .form-checkbox-custom {
    background: var(--page-cyan);
    border-color: var(--page-cyan);
}
.form-checkbox:checked + .form-checkbox-custom::after {
    content: '';
    position: absolute;
    left: 5px; top: 2px;
    width: 5px; height: 9px;
    border: 2px solid #000;
    border-top: none; border-left: none;
    transform: rotate(45deg);
}
.form-checkbox:focus + .form-checkbox-custom { box-shadow: 0 0 0 3px rgba(0,212,255,.25); }
.form-checkbox-text { font-size: 0.82rem; color: var(--page-text); line-height: 1.6; }
.form-link { color: var(--page-cyan); }

.btn-contact-submit {
    width: 100%;
    margin-top: 12px;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, var(--page-cyan) 0%, var(--page-violet) 100%);
    border: none;
    color: #05070F;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s, filter .25s;
}
.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 200, 255, 0.45);
    filter: brightness(1.1);
}
.btn-contact-submit:active {
    transform: translateY(0);
}
.btn-spinner { display: flex; align-items: center; }
.spinner-icon {
    width: 18px; height: 18px;
    animation: spin 0.8s linear infinite;
    will-change: transform;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Form status messages */
.form-status {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.55;
}
.form-status--success {
    background: rgba(0,255,157,.08);
    border: 1px solid rgba(0,255,157,.25);
    color: var(--page-green);
}
.form-status--error {
    background: rgba(248,113,113,.08);
    border: 1px solid rgba(248,113,113,.25);
    color: #F87171;
}

/* ── Shared helpers ──────────────────────────────────────────────────────── */
.gradient-text {
    background: linear-gradient(135deg, var(--page-cyan) 0%, var(--page-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-header { text-align: center; margin-bottom: 0; }
.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--page-cyan);
    text-transform: uppercase;
    letter-spacing: .1em;
    border: 1px solid rgba(0,212,255,.25);
    background: rgba(0,212,255,.07);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.section-heading {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--page-white);
    font-family: 'Syne', sans-serif;
    margin-bottom: 16px;
}
.section-sub { font-size: 1rem; color: var(--page-text); max-width: 580px; margin: 0 auto; line-height: 1.75; }

/* CTA strip shared */
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; background: var(--page-surface); border: 1px solid var(--page-border); border-radius: 20px; padding: 48px 56px; }
.cta-strip-headline { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--page-white); margin-bottom: 10px; font-family: 'Syne', sans-serif; }
.cta-strip-sub  { font-size: 1rem; color: var(--page-text); max-width: 480px; line-height: 1.7; }
.cta-strip-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* sr-only */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
    .cs-single-layout { grid-template-columns: 1fr; }
    .cs-sticky-nav { position: relative; top: 0; }
    .cs-sticky-nav-inner { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px; border-radius: 12px; }
    .cs-sticky-nav-label { padding: 0; border-bottom: none; width: 100%; }
    .cs-nav-list { display: flex; flex-wrap: wrap; padding: 0; gap: 4px; }
    .cs-nav-link { padding: 6px 14px; border-radius: 20px; border-left: none; font-size: 0.78rem; }
    .cs-nav-link.is-active { border-left: none; background: rgba(0,212,255,.1); }
    .cs-sticky-nav-cta { width: 100%; padding: 0; border-top: none; }

    .about-hero-inner { grid-template-columns: 1fr; }
    .about-globe-svg { display: none; }
    .about-founder-inner { grid-template-columns: 1fr; }
    .about-founder-avatar { width: 200px; height: 200px; }
    .about-ops-grid { grid-template-columns: 1fr; }
    .about-ops-divider { flex-direction: row; padding: 0; }
    .about-ops-divider-line { width: 80px; height: 1px; }
    .about-podcast { grid-template-columns: 1fr; }
    .about-podcast-art { display: none; }
}

@media (max-width: 768px) {
    :root { --section-gap: 32px; }

    /* Forms responsive sizing and prevention of iOS zoom */
    .form-input,
    .wxcl-modal__field input,
    .wxcl-modal__field select,
    .wxcl-modal__field textarea,
    .job-field input,
    .job-field select,
    .job-field textarea {
        min-height: 48px !important;
        font-size: 16px !important;
    }

    .cs-archive-counters { flex-direction: column; gap: 8px; padding: 20px; }
    .cs-hero-stat-divider { display: none; }
    .cs-filter-bar { position: static; }
    .cs-filter-tabs { flex-direction: column; gap: 14px; }
    .cases-grid { grid-template-columns: 1fr; }

    .cs-single-hero-inner { flex-direction: column; }
    .cs-single-hero-stat { width: 100%; }
    .cs-results-stats-inline { grid-template-columns: repeat(2, 1fr); }
    .cta-strip-inner { flex-direction: column; text-align: center; padding: 36px 24px; }
    .cs-cta-card { padding: 32px 24px; }

    .contact-layout { grid-template-columns: 1fr; }
    .form-row--half { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
    .cs-archive-hero { padding: 64px 0 48px; }
    .about-founder-stats { flex-direction: column; gap: 16px; }
    .cs-card-outcomes { grid-template-columns: 1fr 1fr; }
    .about-values-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   GENERIC PAGE (page.php)
═══════════════════════════════════════════════════════════════════════════ */

.page-hero {
    padding: 120px 0 64px;
    background: radial-gradient(ellipse at 50% 0%, rgba(0,212,255,.06) 0%, transparent 60%);
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    font-family: 'Syne', sans-serif;
}

.page-hero-sub {
    font-size: 1.1rem;
    color: var(--page-text);
    max-width: 60ch;
    line-height: 1.7;
}

.page-content-section {
    padding: 0 0 96px;
}

/* Prose styles for generic pages */
.prose {
    color: var(--page-text);
    line-height: 1.75;
    font-size: 1rem;
}

.prose h1, .prose h2, .prose h3,
.prose h4, .prose h5, .prose h6 {
    font-family: 'Syne', sans-serif;
    color: #fff;
    margin-top: 2.25em;
    margin-bottom: 0.75em;
    line-height: 1.25;
}

.prose h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; }
.prose h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 700; }
.prose h3 { font-size: 1.25rem; font-weight: 700; }
.prose h4 { font-size: 1.1rem; font-weight: 600; }

.prose p  { margin-bottom: 1.25em; }

.prose a {
    color: var(--page-cyan);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity .15s;
}

.prose a:hover { opacity: .75; }

.prose ul, .prose ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25em;
}

.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }

.prose li { margin-bottom: .4em; }

.prose blockquote {
    border-left: 3px solid var(--page-cyan);
    margin: 1.75em 0;
    padding: .75em 1.25em;
    background: rgba(0,212,255,.05);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #B0C4DE;
}

.prose strong { color: #fff; font-weight: 600; }
.prose em     { font-style: italic; }

.prose code {
    font-family: 'Courier New', monospace;
    font-size: .88em;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--page-border);
    border-radius: 4px;
    padding: .15em .4em;
    color: var(--page-cyan);
}

.prose pre {
    background: var(--page-surface);
    border: 1px solid var(--page-border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    overflow-x: auto;
    margin-bottom: 1.5em;
}

.prose pre code {
    background: none;
    border: none;
    padding: 0;
    font-size: .875rem;
    color: var(--page-text);
}

.prose hr {
    border: none;
    border-top: 1px solid var(--page-border);
    margin: 2.5em 0;
}

.prose img {
    border-radius: 12px;
    margin-block: 1.5em;
    max-width: 100%;
    height: auto;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
    margin-bottom: 1.5em;
    overflow: hidden;
    border-radius: 10px;
}

.prose th {
    background: var(--page-surface);
    color: #fff;
    font-weight: 600;
    padding: .75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--page-border);
}

.prose td {
    padding: .7rem 1rem;
    border-bottom: 1px solid var(--page-border);
    color: var(--page-text);
}

.prose tr:last-child td { border-bottom: none; }

/* Page links (paginated content) */
.page-links {
    margin-top: 2rem;
    display: flex;
    gap: .5rem;
    align-items: center;
    font-size: .9rem;
}

.page-links a,
.page-links span {
    padding: .4em .8em;
    border-radius: 8px;
    border: 1px solid var(--page-border);
    color: var(--page-text);
    transition: border-color .15s, color .15s;
}

.page-links a:hover { border-color: var(--page-cyan); color: var(--page-cyan); }


/* ═══════════════════════════════════════════════════════════════════════════
   404 PAGE
═══════════════════════════════════════════════════════════════════════════ */

.page-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.error-404-section {
    width: 100%;
    padding: 120px 0 96px;
}

.error-404-inner {
    max-width: 640px;
    margin-inline: auto;
    text-align: center;
}

.error-code-display {
    margin-bottom: 24px;
}

.error-code-num {
    font-family: 'Syne', sans-serif;
    font-size: clamp(5rem, 18vw, 9rem);
    font-weight: 900;
    line-height: 1;
    display: block;
    background: linear-gradient(135deg, var(--page-cyan) 0%, var(--page-violet) 60%, #00FF9D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -.04em;
}

.error-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    margin-top: 12px;
}

.error-sub {
    font-size: 1.05rem;
    color: var(--page-text);
    line-height: 1.7;
    max-width: 50ch;
    margin-inline: auto;
    margin-bottom: 36px;
}

.error-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.error-links {
    border-top: 1px solid var(--page-border);
    padding-top: 32px;
    text-align: left;
}

.error-links-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--page-text);
    margin-bottom: 16px;
}

.error-link-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    list-style: none;
}

.error-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--page-border);
    border-radius: 10px;
    font-size: 0.875rem;
    color: var(--page-text);
    transition: color .15s, border-color .15s, background .15s;
    text-decoration: none;
}

.error-link svg { flex-shrink: 0; opacity: .6; transition: opacity .15s; }

.error-link:hover {
    color: var(--page-cyan);
    border-color: rgba(0,212,255,.3);
    background: rgba(0,212,255,.05);
}

.error-link:hover svg { opacity: 1; color: var(--page-cyan); }


/* ═══════════════════════════════════════════════════════════════════════════
   SEARCH RESULTS (search.php)
═══════════════════════════════════════════════════════════════════════════ */

.search-hero {
    padding: 110px 0 56px;
    background: radial-gradient(ellipse at 50% 0%, rgba(0,212,255,.06) 0%, transparent 60%);
}

.search-hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.search-count {
    font-size: 0.9rem;
    color: var(--page-text);
    margin-bottom: 24px;
}

.search-form-wrap {
    max-width: 580px;
}

.search-form-wrap .search-form {
    display: flex;
    gap: 8px;
}
.search-form-wrap .search-field {
    border: 1px solid rgba(0, 200, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border-radius: 12px !important;
    color: var(--page-white) !important;
    padding: 14px 16px 14px 44px !important;
}
.search-form-wrap .search-field::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}
.search-form-wrap .search-field:focus {
    outline: none;
    border-color: var(--page-cyan) !important;
    background: rgba(255, 255, 255, 0.06) !important;
}
.search-form-wrap .search-submit {
    border-radius: 12px !important;
    padding: 0 24px !important;
}
.search-form-wrap .search-icon-inside {
    left: 16px !important;
}

.search-body {
    padding: 48px 0 96px;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.search-result-card {
    background: var(--page-surface);
    border: 1px solid var(--page-border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color .2s, transform .2s, box-shadow .2s;
}

.search-result-card:hover {
    border-color: rgba(0,212,255,.25);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,.4);
}

.search-result-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-result-date {
    font-size: 0.78rem;
    color: var(--page-muted);
}

.search-result-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}

.search-result-link {
    color: #fff;
    text-decoration: none;
    transition: color .15s;
}

.search-result-link:hover { color: var(--page-cyan); }

.search-result-excerpt {
    font-size: 0.875rem;
    color: var(--page-text);
    line-height: 1.65;
    flex: 1;
}

.search-result-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--page-cyan);
    text-decoration: none;
    transition: gap .15s;
    margin-top: auto;
}

.search-result-cta:hover { gap: 10px; }

/* No results */
.search-no-results {
    max-width: 560px;
    margin-inline: auto;
    text-align: center;
    padding: 32px 0;
}

.search-no-results-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--page-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--page-muted);
}

.search-no-results-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.search-no-results-sub {
    font-size: 1rem;
    color: var(--page-text);
    line-height: 1.7;
    margin-bottom: 32px;
}

.search-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

/* Responsive additions */
@media (max-width: 768px) {
    .error-link-list { grid-template-columns: 1fr; }
    .search-results-grid { grid-template-columns: 1fr; }
    .error-actions { flex-direction: column; align-items: center; }
    .error-actions .btn { width: 100%; max-width: 280px; }
    .search-form-wrap .search-form { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONSULTATION MODAL
   Triggered by [data-modal="consultation"] / .wxcl-modal-trigger
   Step 1: Form → Step 2: Calendly
═══════════════════════════════════════════════════════════════════════════ */

.wxcl-modal {
    position: fixed;
    inset: 0;
    z-index: 100000; /* above WP admin bar (99999) */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}
.wxcl-modal.is-open {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}
body.modal-open { overflow: hidden; }

/* Backdrop */
.wxcl-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5,7,15,.85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

/* Box */
.wxcl-modal__box {
    position: relative;
    z-index: 1;
    background: var(--page-surface, #0C0F1E);
    border: 1px solid rgba(0,212,255,.2);
    border-top: 3px solid #00D4FF;
    border-radius: 20px;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    transform: translateY(20px) scale(.97);
    transition: transform .3s cubic-bezier(.22,1,.36,1);
    box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(0,212,255,.08);
    scrollbar-width: thin;
    scrollbar-color: rgba(0,212,255,.2) transparent;
}
.wxcl-modal.is-open .wxcl-modal__box {
    transform: translateY(0) scale(1);
}

/* Close button */
.wxcl-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    color: #94A3B8;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, color .2s;
    z-index: 2;
}
.wxcl-modal__close:hover { background: rgba(0,212,255,.1); color: #00D4FF; }
.wxcl-modal__close:focus-visible {
    outline: 2px solid #00D4FF;
    outline-offset: 2px;
}

/* Header */
.wxcl-modal__header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    padding-right: 32px;
}
.wxcl-modal__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(0,212,255,.1);
    border: 1px solid rgba(0,212,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.wxcl-modal__title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 4px;
    font-family: 'Syne', sans-serif;
    line-height: 1.25;
}
.wxcl-modal__sub {
    font-size: 0.875rem;
    color: #B0C4DE;
    margin: 0;
    line-height: 1.6;
}

/* Form layout */
.wxcl-modal__form { display: flex; flex-direction: column; gap: 16px; }
.wxcl-modal__row { display: flex; gap: 16px; }
.wxcl-modal__row--2col > * { flex: 1; min-width: 0; }
.wxcl-modal__field { display: flex; flex-direction: column; gap: 6px; }
.wxcl-modal__field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.wxcl-modal__field label span { color: #00D4FF; }
.wxcl-modal__field input,
.wxcl-modal__field select,
.wxcl-modal__field textarea {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    color: #E2E8F0;
    font-size: 0.9rem;
    font-family: 'Figtree', sans-serif;
    padding: 11px 14px;
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
}
.wxcl-modal__field input::placeholder,
.wxcl-modal__field textarea::placeholder { color: #4A6180; }
.wxcl-modal__field select { appearance: none; cursor: pointer; }
.wxcl-modal__field input:focus,
.wxcl-modal__field select:focus,
.wxcl-modal__field textarea:focus {
    outline: none;
    border-color: #00D4FF;
    box-shadow: 0 0 0 3px rgba(0,212,255,.15);
}
.wxcl-modal__field textarea { resize: vertical; min-height: 100px; }

/* Checkbox */
.wxcl-modal__field--checkbox { margin-top: 4px; }
.wxcl-modal__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.83rem;
    color: #94A3B8;
    font-weight: 400;
}
.wxcl-modal__checkbox-label input[type="checkbox"] {
    width: 17px;
    height: 17px;
    min-width: 17px;
    accent-color: #00D4FF;
    margin-top: 2px;
    cursor: pointer;
}
.wxcl-modal__checkbox-label a { color: #00D4FF; }

/* Status message */
.wxcl-modal__status {
    font-size: 0.875rem;
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 500;
}
.wxcl-modal__status--error {
    background: rgba(239,68,68,.1);
    border: 1px solid rgba(239,68,68,.3);
    color: #FCA5A5;
}
.wxcl-modal__status--success {
    background: rgba(0,255,157,.08);
    border: 1px solid rgba(0,255,157,.2);
    color: #00FF9D;
}

/* Submit button */
.wxcl-modal__submit {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}
.wxcl-modal__submit-label,
.wxcl-modal__submit-loading {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

/* Spinner */
@keyframes wxcl-spin { to { transform: rotate(360deg); } }
.wxcl-modal__spinner { animation: wxcl-spin .7s linear infinite; }

/* Success step */
.wxcl-modal__step--success { text-align: center; }
.wxcl-modal__success-header { padding: 8px 0 24px; }
.wxcl-modal__success-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(0,255,157,.1);
    border: 1px solid rgba(0,255,157,.2);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.wxcl-modal__success-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
    font-family: 'Syne', sans-serif;
}
.wxcl-modal__success-sub {
    font-size: 0.95rem;
    color: #B0C4DE;
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Calendly embed */
.wxcl-modal__calendly {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,212,255,.1);
    margin-top: 16px;
}
.wxcl-modal__calendly-fallback {
    font-size: 1rem;
    color: #B0C4DE;
    padding: 20px;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .wxcl-modal__box     { padding: 28px 20px; max-height: 100svh; border-radius: 16px 16px 0 0; align-self: flex-end; }
    .wxcl-modal          { align-items: flex-end; padding: 0; }
    .wxcl-modal__row--2col { flex-direction: column; }
    .wxcl-modal__title   { font-size: 1.2rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TEAM PAGE
═══════════════════════════════════════════════════════════════════════════ */

.page-team .page-hero {
    padding: 100px 0 72px;
    text-align: center;
    background: radial-gradient(ellipse at 50% -20%, rgba(0,212,255,.07) 0%, transparent 70%);
}
.page-hero__inner { max-width: 680px; margin: 0 auto; padding: 0 24px; text-align: center; }
.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: #FFFFFF;
    margin: 12px 0 16px;
    font-family: 'Syne', sans-serif;
    line-height: 1.15;
}
.page-hero__sub { font-size: 1.05rem; color: #B0C4DE; line-height: 1.75; margin: 0; }

.team-section { padding: 72px 0 var(--section-gap, 96px); }
.team-section__inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.team-section .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
}

.team-cta-strip {
    background: linear-gradient(135deg, rgba(0,212,255,.07) 0%, rgba(123,94,167,.07) 100%);
    border-top: 1px solid rgba(0,212,255,.12);
    padding: 72px 0;
    text-align: center;
}
.team-cta-strip__inner { max-width: 560px; margin: 0 auto; padding: 0 24px; }
.team-cta-strip h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
    font-family: 'Syne', sans-serif;
}
.team-cta-strip p { font-size: 1rem; color: #B0C4DE; margin-bottom: 24px; }
.team-empty { text-align: center; color: #4A6180; padding: 64px 24px; }

/* ── Services grid: tile arrow + admin empty state ──────────────────────── */
.service-tile {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}
.service-tile-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,212,255,.1);
    color: #00D4FF;
    margin-top: auto;
    align-self: flex-start;
    transition: background .2s, transform .2s;
}
.service-tile:hover .service-tile-arrow {
    background: rgba(0,212,255,.2);
    transform: translateX(4px);
}
.admin-notice-inline {
    background: rgba(251,191,36,.07);
    border: 1px solid rgba(251,191,36,.2);
    border-radius: 10px;
    padding: 20px 24px;
    color: #FBBF24;
    font-size: 0.875rem;
    line-height: 1.6;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SINGLE SERVICE PAGE
═══════════════════════════════════════════════════════════════════════════ */

/* ── Service Hero Image — full-width foreground img ── */
.service-hero__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 6;   /* wide cinematic ratio */
    overflow: hidden;
    background: #080C14;
    /* Push below fixed nav */
    margin-top: 72px;
}
.service-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    /* Zoom-in reveal animation */
    animation: svc-img-zoom 12s ease-in-out infinite alternate;
}
@keyframes svc-img-zoom {
    0%   { transform: scale(1); }
    100% { transform: scale(1.04); }
}
/* Fade from image bottom into the dark hero text below */
.service-hero__image-fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to bottom, transparent 0%, #080C14 100%);
    pointer-events: none;
}

/* ── Hero text — below the image ── */
.service-hero {
    padding: 56px 0 72px;
    display: flex;
    align-items: center;
    background: #080C14;
    position: relative;
    overflow: hidden;
}
/* Ambient glow in the text section */
.service-hero::before {
    content: '';
    position: absolute;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse at top,
        rgba(0,200,255,0.08) 0%,
        rgba(123,94,167,0.05) 50%,
        transparent 70%);
    pointer-events: none;
}
.service-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 840px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
}
.service-hero .section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--page-cyan);
    text-transform: uppercase;
    letter-spacing: .1em;
    background: rgba(0,212,255,.08);
    border: 1px solid rgba(0,212,255,.2);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.service-hero__headline {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    font-family: 'Syne', sans-serif;
}
.service-hero__sub {
    font-size: 1.1rem;
    color: var(--page-text);
    line-height: 1.75;
    max-width: 620px;
    margin-bottom: 36px;
}
.service-hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── Service body content (WP editor output) ── */
.service-body {
    padding: 72px 0;
    border-bottom: 1px solid var(--page-border);
}
.service-body__inner {
    max-width: 800px;
    margin: 0 auto;
}
.service-content {
    color: var(--page-text);
    font-size: 1.05rem;
    line-height: 1.85;
}
.service-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 40px 0 16px;
    font-family: 'Syne', sans-serif;
}
.service-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 30px 0 12px;
}
.service-content p { margin-bottom: 18px; }
.service-content ul,
.service-content ol {
    padding-left: 22px;
    margin-bottom: 18px;
}
.service-content li { margin-bottom: 8px; }
.service-content strong { color: #fff; }
.service-content a { color: var(--page-cyan); text-decoration: underline; }

/* ── Problem Cards ── */
.service-problems {
    padding: 72px 0;
    border-bottom: 1px solid var(--page-border);
}
.service-problems__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.problem-card {
    background: var(--page-surface);
    border: 1px solid var(--page-border);
    border-radius: 14px;
    padding: 28px;
    border-top: 3px solid rgba(0,212,255,.3);
    transition: border-color .25s, transform .25s;
}
.problem-card:hover {
    border-color: rgba(0,212,255,.5);
    transform: translateY(-3px);
}
.problem-card__icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}
.problem-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.problem-card p {
    font-size: 0.875rem;
    color: var(--page-text);
    line-height: 1.7;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════
   HOW WE DELIVER — Premium Vertical Timeline
   ══════════════════════════════════════════════════════════ */
.service-approach {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--page-navy, #080C14) 0%, #0A1020 100%);
    border-bottom: 1px solid var(--page-border);
    position: relative;
    overflow: hidden;
}
/* Subtle radial glow behind the timeline */
.service-approach::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse at center,
        rgba(0,200,255,0.06) 0%,
        rgba(123,94,167,0.04) 40%,
        transparent 70%);
    pointer-events: none;
}
.service-approach__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section lead text */
.section-lead {
    font-family: 'Figtree', sans-serif;
    font-size: 1.0625rem;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    max-width: 640px;
    margin: 12px auto 0;
    line-height: 1.7;
    text-align: center;
}

/* ── Timeline wrapper ── */
.approach-timeline {
    position: relative;
    margin-top: 72px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* The vertical glowing spine */
.approach-timeline__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0,200,255,0.3) 8%,
        rgba(0,200,255,0.5) 50%,
        rgba(123,94,167,0.3) 92%,
        transparent 100%
    );
    pointer-events: none;
}

/* ── Single step row ── */
.approach-step {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}
.approach-step:last-child { margin-bottom: 0; }

/* Default (odd): number left, card right */
.approach-step__num {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    align-self: flex-start;
    margin-top: 28px;

    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #080C14;
    border: 2px solid rgba(0,200,255,0.4);
    box-shadow:
        0 0 0 6px rgba(0,200,255,0.06),
        0 0 32px rgba(0,200,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #00C8FF;
    letter-spacing: -0.02em;
    z-index: 2;
    position: relative;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.approach-step:hover .approach-step__num {
    border-color: rgba(0,200,255,0.8);
    box-shadow:
        0 0 0 8px rgba(0,200,255,0.1),
        0 0 48px rgba(0,200,255,0.35);
}

/* Card sits on the right for odd steps */
.approach-step__card {
    grid-column: 3;
    grid-row: 1;
    margin-left: 32px;
    padding: 28px 32px;
    background: rgba(13,21,37,0.7);
    border: 1px solid rgba(0,200,255,0.12);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.approach-step__card:hover {
    border-color: rgba(0,200,255,0.28);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 24px rgba(0,200,255,0.08);
    transform: translateY(-2px);
}

/* Cyan left accent bar */
.approach-step__connector {
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(to bottom, #00C8FF, #7B5EA7);
    opacity: 0.7;
}

.approach-step__title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.0625rem;
    color: #FFFFFF;
    margin: 0 0 10px 0;
    line-height: 1.3;
    padding-left: 16px;
}
.approach-step__desc {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
    padding-left: 16px;
}

/* ── Alt (even): card left, number right ── */
.approach-step--alt .approach-step__num {
    grid-column: 2;
}
.approach-step--alt .approach-step__card {
    grid-column: 1;
    grid-row: 1;
    margin-left: 0;
    margin-right: 32px;
    text-align: right;
}
.approach-step--alt .approach-step__connector {
    left: auto;
    right: 0;
    background: linear-gradient(to bottom, #7B5EA7, #00C8FF);
}
.approach-step--alt .approach-step__title,
.approach-step--alt .approach-step__desc {
    padding-left: 0;
    padding-right: 16px;
}

/* ── Responsive collapse to single column ── */
@media (max-width: 768px) {
    .approach-timeline__line {
        left: 32px;
        transform: none;
    }
    .approach-step,
    .approach-step--alt {
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto;
        margin-bottom: 28px;
    }
    .approach-step__num,
    .approach-step--alt .approach-step__num {
        grid-column: 1;
        grid-row: 1;
        width: 52px;
        height: 52px;
        font-size: 1rem;
        margin-top: 20px;
        align-self: flex-start;
    }
    .approach-step__card,
    .approach-step--alt .approach-step__card {
        grid-column: 2;
        grid-row: 1;
        margin-left: 16px;
        margin-right: 0;
        text-align: left;
        padding: 20px 24px;
    }
    .approach-step--alt .approach-step__connector {
        left: 0;
        right: auto;
        background: linear-gradient(to bottom, #00C8FF, #7B5EA7);
    }
    .approach-step--alt .approach-step__title,
    .approach-step--alt .approach-step__desc {
        padding-left: 16px;
        padding-right: 0;
    }
}

/* ── Tech Stack ── */
.service-tech {
    padding: 72px 0;
    border-bottom: 1px solid var(--page-border);
    background: var(--page-surface);
}
.service-tech__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
}
.tech-badge {
    background: var(--page-navy, #05070F);
    border: 1px solid var(--page-border);
    border-radius: 10px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: border-color .2s;
}
.tech-badge:hover { border-color: rgba(0,212,255,.3); }
.tech-badge img { width: 24px; height: 24px; object-fit: contain; }
.tech-badge__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--page-text);
}

/* ── Featured Case Study ── */
.service-case-study {
    padding: 72px 0;
    border-bottom: 1px solid var(--page-border);
}
.service-case-study__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.cs-featured-card {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: center;
    background: var(--page-surface);
    border: 1px solid var(--page-border);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: border-color .25s, box-shadow .25s;
    margin-top: 48px;
}
.cs-featured-card:hover {
    border-color: rgba(0,212,255,.3);
    box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.cs-featured-card__image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}
.cs-featured-card__body {
    padding: 40px 40px 40px 0;
}
.cs-featured-card__body h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.3;
    font-family: 'Syne', sans-serif;
}
.cs-featured-card__body p {
    font-size: 0.9rem;
    color: var(--page-text);
    line-height: 1.75;
    margin-bottom: 24px;
}

/* ── FAQ Accordion ── */
.service-faqs {
    padding: 72px 0;
    border-bottom: 1px solid var(--page-border);
}
.service-faqs__inner { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.faq-list { margin-top: 40px; }
.faq-item {
    border-bottom: 1px solid var(--page-border);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: color .2s;
}
.faq-question:hover { color: var(--page-cyan); }
.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--page-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--page-cyan);
    transition: transform .2s, background .2s;
}
.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    background: rgba(0,212,255,.1);
}
.faq-answer {
    padding-bottom: 20px;
}
.faq-answer p {
    font-size: 0.95rem;
    color: var(--page-text);
    line-height: 1.8;
    margin: 0;
}

/* ── Service Why Us (fallback section) ── */
.service-why {
    padding: 72px 0;
    border-bottom: 1px solid var(--page-border);
    background: var(--page-surface);
}
.service-why__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.service-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
@media (max-width: 1100px) { .service-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .service-why-grid { grid-template-columns: 1fr; } }
.service-why-card {
    background: var(--page-navy, #05070F);
    border: 1px solid var(--page-border);
    border-radius: 14px;
    padding: 28px 24px;
}
.service-why-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}
.service-why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.service-why-card p {
    font-size: 0.875rem;
    color: var(--page-text);
    line-height: 1.7;
    margin: 0;
}


/* ── Service page shared header ── */
.service-section-header {
    margin-bottom: 0;
}
.service-section-header .section-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--page-cyan);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 12px;
}
.service-section-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    font-family: 'Syne', sans-serif;
    line-height: 1.2;
}

/* ── Related services strip ── */
.service-related {
    padding: 64px 0;
    background: var(--page-surface);
}
.service-related__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.service-related__heading {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    font-family: 'Syne', sans-serif;
}
.service-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}
.service-related-card {
    background: var(--page-navy, #05070F);
    border: 1px solid var(--page-border);
    border-left: 3px solid var(--page-cyan);
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: border-color .2s, transform .2s;
}
.service-related-card:hover {
    border-color: var(--page-cyan);
    transform: translateX(4px);
}
.service-related-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}
.service-related-card-arrow { color: var(--page-cyan); }

/* ═══════════════════════════════════════════════════════════════════════════
   RESOURCES ARCHIVE
   ═══════════════════════════════════════════════════════════════════════════ */
.resources-section { padding: var(--section-gap) 0; }
.resources-section__inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}
.resource-card {
    background: var(--page-surface);
    border: 1px solid var(--page-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, border-color .3s ease;
}
.resource-card:hover { transform: translateY(-4px); border-color: var(--page-cyan); }
.resource-card__thumb { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; border-bottom: 1px solid var(--page-border); }
.resource-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.resource-card__cat { font-size: 0.7rem; font-weight: 700; color: var(--page-cyan); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.resource-card__title { font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 12px; font-family: 'Syne', sans-serif; line-height: 1.3; }
.resource-card__desc { font-size: 0.9rem; color: var(--page-text); line-height: 1.6; margin-bottom: 24px; flex: 1; }

.resource-optin-form { background: rgba(255,255,255,0.03); border: 1px solid var(--page-border); padding: 24px; border-radius: 12px; }
.resource-optin-thanks { text-align: center; padding: 20px 0; color: var(--page-green); }

/* ═══════════════════════════════════════════════════════════════════════════
   CAREERS ARCHIVE
   ═══════════════════════════════════════════════════════════════════════════ */
.careers-section { padding: var(--section-gap) 0; }
.careers-section__inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.careers-filters { display: flex; gap: 20px; margin-bottom: 48px; flex-wrap: wrap; align-items: center; }
.careers-filter-label { font-size: 0.8rem; color: var(--page-muted); font-weight: 600; }
.careers-filter-select { background: var(--page-surface2); border: 1px solid var(--page-border); color: #fff; padding: 10px 16px; border-radius: 8px; font-family: inherit; }

.jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.job-card {
    background: var(--page-surface);
    border: 1px solid var(--page-border);
    border-radius: 16px;
    padding: 32px;
    transition: border-color .3s, transform .3s;
}
.job-card:hover { border-color: var(--page-cyan); transform: translateY(-3px); }
.job-card__meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.job-badge { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 4px 10px; border-radius: 6px; }
.job-badge--dept { background: rgba(0,212,255,0.1); color: var(--page-cyan); border: 1px solid rgba(0,212,255,0.2); }
.job-badge--loc  { background: rgba(123,94,167,0.1); color: var(--page-violet); border: 1px solid rgba(123,94,167,0.2); }
.job-badge--type { background: rgba(0,255,157,0.1); color: var(--page-green); border: 1px solid rgba(0,255,157,0.2); }
.job-card__title { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 16px; font-family: 'Syne', sans-serif; }
.job-card__salary, .job-card__closing { font-size: 0.85rem; color: var(--page-text); margin-bottom: 8px; }

/* ═══════════════════════════════════════════════════════════════════════════
   PODCAST ARCHIVE — Episode Cards
   ═══════════════════════════════════════════════════════════════════════════ */

/* Archive wrapper */
.podcast-archive-section { padding: 80px 0; }
.podcast-archive__inner  { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Episodes grid */
.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 48px;
}

/* Individual episode card */
.episode-card {
    background: var(--page-surface, #0C0F1E);
    border: 1px solid var(--page-border, rgba(255,255,255,0.08));
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.episode-card:hover {
    border-color: rgba(0,212,255,0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}

/* Thumbnail */
.episode-card__thumb { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.episode-card__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.episode-card:hover .episode-card__thumb img { transform: scale(1.04); }

/* Body */
.episode-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

/* Episode number badge */
.ep-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--page-cyan, #00D4FF);
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.2);
    padding: 3px 10px;
    border-radius: 20px;
    width: fit-content;
}

/* Title */
.episode-card__title {
    font-size: 1.1rem;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    line-height: 1.3;
    margin: 0;
}
.episode-card__title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.episode-card__title a:hover { color: var(--page-cyan, #00D4FF); }

/* Guest & duration meta */
.episode-card__guest {
    font-size: 0.85rem;
    color: var(--page-cyan, #00D4FF);
    font-weight: 600;
}
.episode-card__duration {
    font-size: 0.8rem;
    color: var(--page-muted, #94A3B8);
}
.episode-card__excerpt {
    font-size: 0.88rem;
    color: var(--page-muted, #94A3B8);
    line-height: 1.65;
    flex: 1;
    margin: 0;
}

/* Embed player */
.episode-card__embed {
    margin-top: 4px;
    border-radius: 10px;
    overflow: hidden;
}
.episode-card__embed iframe {
    display: block;
    width: 100%;
    border-radius: 10px;
}

/* Streaming links */
.episode-card__links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.podcast-btn--sm {
    font-size: 0.75rem !important;
    padding: 6px 14px !important;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .episodes-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SINGLE JOB LISTING — Application Page
   ═══════════════════════════════════════════════════════════════════════════ */
.job-hero {
    padding: 100px 0 64px;
    text-align: center;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,212,255,0.07) 0%, transparent 70%);
}
.job-hero__inner  { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.job-hero__badges { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 20px; }
.job-hero__title  { font-size: clamp(2rem,5vw,3.2rem); font-weight: 800; color: #fff; font-family: 'Syne',sans-serif; margin: 0 0 16px; line-height: 1.1; }
.job-hero__desc   { font-size: 1.05rem; color: var(--page-muted,#94A3B8); line-height: 1.75; max-width: 620px; margin: 0 auto; }

.job-body { max-width: 800px; margin: 0 auto; padding: 64px 24px; }
.job-section { margin-bottom: 48px; }
.job-section h2 { font-size: 1.4rem; font-weight: 800; color: #fff; font-family: 'Syne',sans-serif; margin-bottom: 16px; }
.job-section ul  { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.job-section ul li {
    display: flex; align-items: flex-start; gap: 10px;
    color: var(--page-muted,#94A3B8); font-size: 0.95rem; line-height: 1.6;
}
.job-section ul li::before { content: '→'; color: var(--page-cyan,#00D4FF); font-weight: 700; flex-shrink: 0; }

/* Application form */
.job-apply { background: var(--page-surface,#0C0F1E); border: 1px solid rgba(0,212,255,0.2); border-top: 3px solid #00D4FF; border-radius: 20px; padding: 40px; margin-top: 64px; }
.job-apply__title { font-size: 1.6rem; font-weight: 800; color: #fff; font-family: 'Syne',sans-serif; margin-bottom: 6px; }
.job-apply__sub   { color: var(--page-muted,#94A3B8); margin-bottom: 28px; font-size: 0.95rem; }
.job-apply__form  { display: flex; flex-direction: column; gap: 16px; }
.job-apply__row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.job-field label  { display: block; font-size: 0.8rem; font-weight: 700; color: var(--page-cyan,#00D4FF); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.job-field input,
.job-field textarea,
.job-field select {
    width: 100%; box-sizing: border-box;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
}
.job-field input:focus,
.job-field textarea:focus,
.job-field select:focus {
    outline: none;
    border-color: rgba(0,212,255,0.5);
    background: rgba(0,212,255,0.04);
}
.job-field select option { background: #0C0F1E; }
.job-field textarea { resize: vertical; min-height: 120px; }
.job-apply__status { margin-top: 12px; padding: 12px 16px; border-radius: 10px; font-size: 0.9rem; display: none; }
.job-apply__status.success { display: block; background: rgba(0,255,157,0.1); border: 1px solid rgba(0,255,157,0.25); color: #00FF9D; }
.job-apply__status.error   { display: block; background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.25); color: #F87171; }
@media (max-width: 600px) {
    .job-apply__row { grid-template-columns: 1fr; }
    .job-apply { padding: 24px; }
}

@media (max-width: 600px) {
    .service-hero { padding: 64px 0 48px; }
    .approach-steps { grid-template-columns: 1fr; }
    .service-hero__ctas { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PODCAST ARCHIVE — /podcast/
   Classes: .archive-podcast  .podcast-archive-section  .episodes-grid
            .episode-card  .episode-card__thumb  .episode-card__body
            .ep-label  .episode-card__title  .episode-guest  .ep-meta
            .episode-card__links  .ep-link
═══════════════════════════════════════════════════════════════════════════ */

/* Hero */
.page-hero--podcast {
    padding: 100px 0 72px;
    text-align: center;
    background: radial-gradient(ellipse at 50% -10%, rgba(0,212,255,.10) 0%, transparent 65%);
}
.podcast-platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}
.podcast-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s, opacity .2s;
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    background: rgba(255,255,255,.06);
}
.podcast-btn:hover { transform: translateY(-2px); opacity: .85; }
.podcast-btn.spotify { border-color: rgba(29,185,84,.35); background: rgba(29,185,84,.1); color: #1DB954; }
.podcast-btn.apple   { border-color: rgba(252,60,68,.35); background: rgba(252,60,68,.1); color: #FC3C44; }
.podcast-btn.youtube { border-color: rgba(255,0,0,.35); background: rgba(255,0,0,.1); color: #FF0000; }

/* Episodes grid container */
.podcast-archive-section { padding: 80px 0; }
.podcast-archive__inner  { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

/* Episode card */
.episode-card {
    background: var(--page-surface, #0C0F1E);
    border: 1px solid var(--page-border, #1E2A3A);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.episode-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,212,255,.35);
    box-shadow: 0 16px 40px rgba(0,212,255,.08);
}

/* Thumbnail */
.episode-card__thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    background: var(--page-surface2, #111827);
    overflow: hidden;
}
.episode-card__thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.episode-card:hover .episode-card__thumb img { transform: scale(1.04); }

/* No-thumbnail placeholder */
.episode-card__thumb-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, rgba(0,212,255,.06), rgba(123,94,167,.06));
}

/* Body */
.episode-card__body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

/* Episode label (e.g. "Episode 5") */
.ep-label {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--page-cyan, #00D4FF);
}

/* Title */
.episode-card__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--page-white, #fff);
    font-family: 'Syne', sans-serif;
    margin: 0;
}
.episode-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}
.episode-card__title a:hover { color: var(--page-cyan, #00D4FF); }

/* Guest & duration meta row */
.episode-guest {
    font-size: .82rem;
    color: var(--page-text, #B0C4DE);
}
.ep-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .78rem;
    color: var(--page-muted, #4A6180);
    margin-top: auto;
    padding-top: 6px;
    border-top: 1px solid rgba(255,255,255,.06);
}
.ep-meta span { display: flex; align-items: center; gap: 4px; }

/* Platform links */
.episode-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.ep-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.1);
    color: var(--page-muted, #4A6180);
    background: rgba(255,255,255,.04);
    transition: border-color .2s, color .2s, background .2s;
}
.ep-link:hover { border-color: var(--page-cyan,.00D4FF); color: var(--page-cyan,#00D4FF); background: rgba(0,212,255,.06); }
.ep-link.spotify:hover { border-color: #1DB954; color: #1DB954; background: rgba(29,185,84,.06); }
.ep-link.apple:hover   { border-color: #FC3C44; color: #FC3C44; background: rgba(252,60,68,.06); }
.ep-link.youtube:hover { border-color: #FF0000; color: #FF0000; background: rgba(255,0,0,.06); }

/* No episodes state */
.podcast-no-episodes {
    text-align: center;
    padding: 80px 24px;
    color: var(--page-muted, #4A6180);
}
.podcast-no-episodes h2 { font-size: 1.5rem; margin-bottom: 12px; color: var(--page-white,#fff); }

/* Pagination */
.podcast-pagination {
    text-align: center;
    margin-top: 56px;
}
.podcast-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
.podcast-pagination .page-numbers a,
.podcast-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--page-border, #1E2A3A);
    color: var(--page-text, #B0C4DE);
    background: var(--page-surface, #0C0F1E);
    transition: border-color .2s, color .2s;
}
.podcast-pagination .page-numbers a:hover { border-color: var(--page-cyan,#00D4FF); color: var(--page-cyan,#00D4FF); }
.podcast-pagination .page-numbers .current { border-color: var(--page-cyan,#00D4FF); color: var(--page-cyan,#00D4FF); background: rgba(0,212,255,.08); }

@media (max-width: 640px) {
    .episodes-grid { grid-template-columns: 1fr; }
    .podcast-platforms { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CYBER LEADERSHIP & INSIGHTS HUB — /insights/
   Shares all .blog-* CSS with the blog; these classes add the hub identity.
═══════════════════════════════════════════════════════════════════════════ */

/* Hub badge — eyebrow label in the hero */
.hub-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    background: rgba(123,94,167,.12);
    border: 1px solid rgba(123,94,167,.3);
    color: #C4B5FD;
}
.hub-badge svg { opacity: .8; }

/* Inline article badge (in the single post hero meta row) */
.insights-hub-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    background: rgba(123,94,167,.15);
    border: 1px solid rgba(123,94,167,.3);
    color: #C4B5FD;
}

/* Topic badge on cards */
.insights-topic-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    background: rgba(0,212,255,.1);
    border: 1px solid rgba(0,212,255,.2);
    color: var(--page-cyan, #00D4FF);
}

/* Read-time label on insight cards */
.insights-read-time {
    font-size: .68rem;
    color: var(--page-muted, #4A6180);
    font-weight: 500;
}

/* Meta row used on cards (badge + read time side by side) */
.insights-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Featured insight card overrides */
.insights-featured-card .blog-card-body {
    border-left: 3px solid rgba(123,94,167,.5);
    padding-left: 28px;
}

/* Insight archive hero subtle violet glow */
.page-hero--insights {
    background: radial-gradient(ellipse at 50% -10%, rgba(123,94,167,.10) 0%, transparent 65%);
}


/* ---------------------------------------------------------------------------
   LEGAL PAGES (Privacy Policy, Cookie Policy, Terms) � Group 13
   Routes: /privacy-policy/ , /cookie-policy/ , /terms/
--------------------------------------------------------------------------- */

.legal-page { color: var(--text); }

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 90px;
  background: radial-gradient(ellipse at 50% -20%, rgba(0, 200, 255, 0.08) 0%, rgba(123, 94, 167, 0.05) 50%, transparent 80%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.legal-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  font-family: 'Syne', sans-serif;
  color: var(--white);
  letter-spacing: -1.5px;
  margin: 16px 0;
  background: linear-gradient(135deg, #FFFFFF 30%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.legal-meta {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.5px;
}

.legal-body { padding: 64px 0 100px; }

.legal-content,
.page-content {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.legal-content h2,
.legal-section h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: var(--white, #FFFFFF) !important;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border, #1E2A3A);
}
.legal-content h3,
.legal-section h3 {
  font-size: 1.05rem;
  color: var(--white, #FFFFFF) !important;
  margin: 24px 0 10px;
  font-family: 'Syne', sans-serif;
}
.legal-content p,
.legal-section p {
  color: var(--text, rgba(255,255,255,0.7)) !important;
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 15px;
}
.legal-content p:last-child,
.legal-section p:last-child { margin-bottom: 0; }
.legal-content ul,
.legal-content ol,
.legal-section ul {
  color: var(--text, rgba(255,255,255,0.7)) !important;
  line-height: 1.75;
  font-size: 15px;
  padding-left: 24px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-content li,
.legal-section li { list-style: disc; color: var(--text, rgba(255,255,255,0.7)) !important; }
.legal-content a,
.legal-section a {
  color: var(--cyan, #00C8FF) !important;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,212,255,0.3);
  transition: border-color 0.2s, color 0.2s;
}
.legal-content a:hover,
.legal-section a:hover {
  color: #fff !important;
  border-color: var(--cyan, #00C8FF) !important;
}
.legal-content code,
.legal-section code {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border, #1E2A3A);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 13px;
  font-family: 'Courier New', monospace;
  color: var(--cyan, #00C8FF) !important;
}

/* Cookie table */
.legal-table-wrap { overflow-x: auto; margin: 24px 0; border-radius: 12px; border: 1px solid var(--border); }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.legal-table th {
  background: rgba(0,212,255,0.06);
  color: var(--white);
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.legal-table td {
  color: var(--text);
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: top;
}
.legal-table tr:last-child td { border-bottom: none; }
.legal-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

@media (max-width: 640px) {
  .legal-hero { padding: 80px 0 48px; }
  .legal-body { padding: 48px 0 80px; }
  .legal-table th, .legal-table td { padding: 10px 12px; font-size: 12px; }
}

/* Color overrides for copy-pasted inline styling on legal pages */
.legal-content span,
.legal-content p span,
.legal-content strong,
.legal-content p strong,
.legal-content li span,
.legal-content li strong {
  color: inherit !important;
}

/* CTA Strip color overrides to match homepage CTA */
.cs-archive-cta,
.team-cta-strip {
  background: var(--green) !important;
  color: #05070F !important;
  border: none !important;
}

.cs-archive-cta h2,
.cs-archive-cta .cta-strip-headline,
.team-cta-strip h2,
.team-cta-strip .cta-strip-headline {
  color: #05070F !important;
}

.cs-archive-cta p,
.cs-archive-cta .cta-strip-sub,
.team-cta-strip p,
.team-cta-strip .cta-strip-sub {
  color: rgba(0,0,0,0.6) !important;
}

/* Sidebar and layouts for legal pages */
.legal-sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .legal-body .container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
  }
  .legal-sidebar {
    display: block;
    position: sticky;
    top: 120px;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    padding-right: 24px;
    border-right: 1px solid rgba(255,255,255,0.06);
  }
}

/* Custom Scrollbar for Legal Sidebar */
.legal-sidebar::-webkit-scrollbar {
  width: 4px;
}
.legal-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.legal-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}
.legal-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.2);
}

.legal-sidebar-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted, #4A6180);
  margin-bottom: 24px;
}

.legal-sidebar-links {
  list-style: none !important;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-sidebar-link {
  font-size: 0.85rem;
  color: var(--text, rgba(255,255,255,0.6));
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.4;
  display: block;
  padding: 2px 0 2px 14px;
  border-left: 1px solid rgba(255,255,255,0.05);
}

.legal-sidebar-link:hover {
  color: var(--cyan, #00C8FF);
  border-left-color: rgba(0, 200, 255, 0.3);
}

.legal-sidebar-link.is-active {
  color: var(--cyan, #00C8FF);
  font-weight: 600;
  border-left: 2px solid var(--cyan, #00C8FF);
  padding-left: 13px;
}

/* Adjust heading styles inside content to match the new layouts */
.legal-content h2 {
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.5px;
  margin-top: 12px;
}



