/* ═══════════════════════════════════════════════════════════════
   ALTRAN CONSULTING — Design System Stylesheet
   Single source of truth for all pages
   ═══════════════════════════════════════════════════════════════ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0f2137;
    --navy-mid: #1a365d;
    --navy-light: #2d4a7a;
    --gold: #c9a84c;
    --gold-light: #dfc882;
    --cream: #faf8f4;
    --white: #ffffff;
    --slate: #64748b;
    --text: #1e293b;
    --text-light: #475569;
    --border: #e2e8f0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.top-bar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    padding: 0.5rem 0;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.top-bar a {
    color: var(--gold-light);
    text-decoration: none;
}

.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--navy);
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3rem;
}

.logo-text span {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--slate);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.25rem;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--navy);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--navy);
}

.hero {
    --hero-overlay: linear-gradient(135deg, rgba(15, 33, 55, 0.88) 0%, rgba(26, 54, 93, 0.85) 50%, rgba(45, 74, 122, 0.82) 100%);
    background: var(--hero-overlay), url('images/hero/hero-1440w.jpg') center/cover no-repeat;
    color: var(--white);
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

/* ── Responsive Hero Image ── */
@media (max-width: 480px) {
    .hero {
        background: var(--hero-overlay), url('images/hero/hero-480w.jpg') center/cover no-repeat;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .hero {
        background: var(--hero-overlay), url('images/hero/hero-768w.jpg') center/cover no-repeat;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        background: var(--hero-overlay), url('images/hero/hero-1024w.jpg') center/cover no-repeat;
    }
}

@media (min-width: 1441px) and (max-width: 1920px) {
    .hero {
        background: var(--hero-overlay), url('images/hero/hero-1920w.jpg') center/cover no-repeat;
    }
}

@media (min-width: 1921px) {
    .hero {
        background: var(--hero-overlay), url('images/hero/hero-2560w.jpg') center/cover no-repeat;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero h1 span {
    color: var(--gold-light);
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--navy);
    padding: 0.85rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.btn-outline {
    color: var(--white);
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    font-size: .95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s;
    display: inline-flex;
}

.btn-outline:hover {
    border-color: var(--gold);
    background: #ffffff1a;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-light);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.trust-bar {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
}

.trust-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--slate);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--cream);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header .eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-header h2 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15, 33, 55, 0.08);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 0.75rem;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.case-card {
    grid-template-rows: subgrid;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    grid-row: span 3;
    transition: box-shadow .3s, transform .3s;
    display: grid;
    overflow: hidden
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px #0000000f
}

.case-card-head {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 0;
    padding: 1.75rem 2rem;
    display: flex
}

.case-industry {
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gold-light);
    margin-bottom: .5rem;
    font-size: .75rem
}

.case-card-title {
    color: var(--white);
    text-align: left;
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.35
}

.case-card-section-label {
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--slate);
    margin: 0 0 .75rem;
    font-family: Inter, sans-serif;
    font-size: .7rem;
    font-weight: 700
}

.case-card-delivered {
    background: var(--white);
    min-height: 0;
    padding: 1.75rem 2rem
}

.case-card-delivered ul,
.case-card-outcomes ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.case-card-delivered li {
    color: var(--text-light);
    padding-left: 1.1rem;
    font-size: .9rem;
    line-height: 1.55;
    position: relative
}

.case-card-delivered li+li {
    margin-top: .5rem
}

.case-card-delivered li:before {
    content: "";
    background: var(--gold);
    border-radius: 50%;
    width: 5px;
    height: 5px;
    position: absolute;
    top: .55em;
    left: 0
}

.case-card-outcomes {
    background: var(--cream);
    border-top: 1px solid var(--border);
    min-height: 0;
    padding: 1.5rem 2rem 1.75rem
}

.case-card-outcomes .case-card-section-label {
    color: var(--navy-mid)
}

.case-card-outcomes li {
    color: var(--navy);
    padding-left: 1.35rem;
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.45;
    position: relative
}

.case-card-outcomes li+li {
    margin-top: .5rem
}

.case-card-outcomes li:before {
    content: "✓";
    color: var(--gold);
    font-weight: 700;
    position: absolute;
    left: 0
}

@supports not (grid-template-rows:subgrid) {
    .case-grid {
        grid-template-rows: none
    }

    .case-card {
        flex-direction: column;
        grid-row: auto;
        grid-template-rows: none;
        height: 100%;
        display: flex
    }

    .case-card-head {
        min-height: 8.5rem
    }

    .case-card-delivered {
        flex: 1
    }
}

.lifecycle-timeline {
    margin-top: 1rem
}

.lifecycle-timeline-rail {
    justify-content: space-between;
    align-items: stretch;
    gap: 0;
    margin-bottom: 2rem;
    display: flex;
    position: relative
}

.lifecycle-timeline-step-wrap {
    flex: 1;
    align-items: center;
    min-width: 0;
    display: flex
}

.lifecycle-timeline-step {
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    cursor: pointer;
    border-radius: 4px;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    min-height: 5.5rem;
    padding: 1rem .75rem;
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
    display: flex
}

.lifecycle-timeline-step:hover {
    border-color: var(--gold)
}

.lifecycle-timeline-step:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px
}

.lifecycle-timeline-step--active {
    border-color: var(--gold);
    background: var(--cream);
    box-shadow: 0 4px 16px #0f213714
}

.lifecycle-timeline-step-icon {
    width: 2.25rem;
    height: 2.25rem;
    color: var(--gold);
    background: #c9a84c26;
    border-radius: 6px;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    margin-bottom: .5rem;
    font-size: .95rem;
    display: flex
}

.lifecycle-timeline-step--active .lifecycle-timeline-step-icon {
    background: var(--navy);
    color: var(--gold-light)
}

.lifecycle-timeline-step-label {
    color: var(--navy);
    font-family: Playfair Display, serif;
    font-size: 1.05rem;
    font-weight: 600;
    display: block
}

.lifecycle-timeline-step-sub {
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: .25rem;
    font-size: .7rem
}

.lifecycle-timeline-connector {
    background: var(--gold);
    opacity: .5;
    flex-shrink: 0;
    width: 1.5rem;
    height: 2px;
    margin: 0 .25rem
}

.lifecycle-stage-picker {
    grid-template-columns: repeat(4, 1fr);
    gap: .5rem;
    margin-bottom: 1.25rem;
    display: none
}

.lifecycle-stage-picker-item {
    background: var(--white);
    border: 1px solid var(--border);
    cursor: pointer;
    border-radius: 8px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: .4rem;
    min-height: 0;
    padding: .65rem .35rem;
    font-family: inherit;
    transition: border-color .2s, background .2s, box-shadow .2s;
    display: flex
}

.lifecycle-stage-picker-item:hover {
    border-color: var(--gold)
}

.lifecycle-stage-picker-item:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px
}

.lifecycle-stage-picker-item--active {
    border-color: var(--gold);
    background: var(--cream);
    box-shadow: 0 4px 12px #0f213714
}

.lifecycle-stage-picker-icon {
    width: 2rem;
    height: 2rem;
    color: var(--gold);
    background: #c9a84c26;
    border-radius: 6px;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    font-size: .85rem;
    display: flex
}

.lifecycle-stage-picker-item--active .lifecycle-stage-picker-icon {
    background: var(--navy);
    color: var(--gold-light)
}

.lifecycle-stage-picker-label {
    text-align: center;
    color: var(--navy);
    font-size: .65rem;
    font-weight: 600;
    line-height: 1.25
}

.lifecycle-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    border-radius: 4px;
    padding: 2rem
}

.lifecycle-panel-header {
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem
}

.lifecycle-panel-header h3 {
    color: var(--navy);
    margin: .25rem 0 0;
    font-size: 1.75rem
}

.lifecycle-panel-subtitle {
    color: var(--slate);
    margin: .25rem 0 0;
    font-size: .85rem
}

.lifecycle-panel-summary {
    color: var(--text-light);
    margin: 1rem 0 0
}

.lifecycle-panel-sections {
    flex-direction: column;
    gap: 1.25rem;
    display: flex
}

.lifecycle-panel-row {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 4px;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    padding: 1.25rem;
    display: grid
}

.lifecycle-panel-row-label {
    text-align: center;
    border-right: 1px solid var(--border);
    flex-direction: column;
    align-items: center;
    gap: .65rem;
    padding-right: 1rem;
    display: flex
}

.lifecycle-panel-row-icon {
    width: 2.25rem;
    height: 2.25rem;
    color: var(--navy-mid);
    background: #c9a84c26;
    border-radius: 6px;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    display: flex
}

.lifecycle-panel-row-icon i {
    color: var(--gold)
}

.lifecycle-panel-row-label h4 {
    color: var(--navy);
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.35
}

.lifecycle-panel-row-content ul {
    color: var(--text);
    margin: 0;
    padding-left: 1.25rem;
    font-size: .95rem
}

.lifecycle-panel-row-content li {
    margin-bottom: .35rem
}

.lifecycle-panel-service-link {
    color: var(--navy-mid);
    margin-top: .75rem;
    font-size: .9rem;
    font-weight: 600;
    display: inline-block
}

.lifecycle-persona-chips {
    flex-wrap: wrap;
    gap: .5rem;
    display: flex
}

.lifecycle-persona-chip {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--navy);
    border-radius: 4px;
    padding: .4rem .85rem;
    font-size: .8rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color .2s;
    display: inline-block
}

.lifecycle-persona-chip:hover {
    border-color: var(--gold);
    color: var(--navy-mid)
}

.lifecycle-panel-footer {
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    display: flex
}

.lifecycle-timeline--compact .lifecycle-panel-row {
    grid-template-columns: 1fr
}

.lifecycle-timeline--compact .lifecycle-panel-row-label {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: .5rem;
    padding-right: 0
}

.lifecycle-map {
    margin-top: 1rem
}

.lifecycle-track {
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--navy-mid);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: .5rem 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    font-size: .8rem;
    font-weight: 600;
    display: flex
}

.lifecycle-arrow {
    color: var(--gold);
    margin: 0 .25rem
}

.lifecycle-stages {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    display: grid
}

.lifecycle-stage {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.5rem;
    transition: box-shadow .2s
}

.lifecycle-stage:hover {
    box-shadow: 0 4px 16px #0f21370f
}

.lifecycle-stage h3 {
    color: var(--navy);
    margin: 0 0 1rem;
    font-size: 1.1rem
}

.lifecycle-details {
    margin: 0
}

.lifecycle-details>div {
    margin-bottom: .75rem
}

.lifecycle-details dt {
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--slate);
    margin-bottom: .25rem;
    font-size: .7rem;
    font-weight: 600
}

.lifecycle-details dd {
    color: var(--text);
    margin: 0;
    font-size: .9rem
}

.lifecycle-details a {
    color: var(--navy-mid);
    font-weight: 500
}

.framework-section {
    margin-top: 1rem
}

.framework-section--preview .framework-card {
    cursor: default
}

.framework-intro {
    color: var(--text-light);
    margin-bottom: 2rem
}

.framework-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    display: grid
}

.framework-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.5rem;
    transition: box-shadow .2s
}

.framework-card:hover {
    box-shadow: 0 4px 16px #0f21370f
}

.framework-number {
    color: var(--gold);
    letter-spacing: .05em;
    margin-bottom: .5rem;
    font-size: .75rem;
    font-weight: 700;
    display: block
}

.framework-card h3 {
    color: var(--navy);
    margin: 0 0 .5rem;
    font-size: 1rem
}

.framework-card p {
    color: var(--text-light);
    margin: 0;
    font-size: .875rem;
    line-height: 1.5
}

.framework-trademark {
    color: var(--navy-mid);
    text-align: center;
    margin-top: 1.5rem;
    font-size: .85rem;
    font-weight: 600
}

.outputs-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    display: grid
}

.output-preview {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.25rem;
    transition: box-shadow .2s
}

.output-preview:hover {
    box-shadow: 0 4px 16px #0f21370f
}

.output-index {
    color: var(--gold);
    margin: .25rem 0 .5rem;
    font-size: .7rem;
    font-weight: 700;
    display: block
}

.output-preview h3 {
    color: var(--navy);
    margin: 0;
    font-size: .9rem;
    line-height: 1.4
}

.persona-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    display: grid
}

.persona-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.75rem;
    transition: box-shadow .2s
}

.persona-card:hover {
    box-shadow: 0 4px 16px #0f21370f
}

.persona-card h3 {
    color: var(--navy);
    margin: 0 0 1rem
}

.persona-details {
    margin: 0 0 1.25rem
}

.persona-details>div {
    margin-bottom: .75rem
}

.persona-details dt {
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--slate);
    font-size: .7rem;
    font-weight: 600
}

.persona-details dd {
    color: var(--text);
    margin: .25rem 0 0;
    font-size: .9rem
}

.persona-cta {
    color: var(--navy-mid);
    font-size: .9rem;
    font-weight: 600
}

.persona-cta:hover {
    color: var(--gold)
}

.comparison-table-wrap {
    margin: 2rem 0;
    overflow-x: auto;
}

.comparison-table {
    border-collapse: collapse;
    background: var(--white);
    border: 1px solid var(--border);
    width: 100%;
    font-size: .9rem;
}

.comparison-table th,
.comparison-table td {
    text-align: left;
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem;
}

.comparison-table thead th {
    background: var(--navy);
    color: var(--white);
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 600;
}

.comparison-table tbody th {
    color: var(--navy);
    background: var(--cream);
    font-weight: 600;
}

.comparison-table tbody tr:hover td,
.comparison-table tbody tr:hover th[scope=row] {
    background: #c9a84c0f;
}

.faq-section {
    flex-direction: column;
    gap: 2.5rem;
    display: flex
}

.faq-group-title {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.25rem
}

.faq-list {
    flex-direction: column;
    gap: .5rem;
    display: flex
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden
}

.faq-item summary {
    color: var(--navy);
    cursor: pointer;
    padding: 1rem 1.25rem;
    font-weight: 600;
    list-style: none
}

.faq-item summary::-webkit-details-marker {
    display: none
}

.faq-item summary:after {
    content: "+";
    float: right;
    color: var(--gold);
    font-weight: 700
}

.faq-item[open] summary:after {
    content: "−"
}

.faq-item summary:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: -2px
}

.faq-item p {
    color: var(--text-light);
    margin: 0;
    padding: 0 1.25rem 1.25rem;
    font-size: .95rem;
    line-height: 1.6
}

.cta-banner__actions {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    display: flex;
}

.governance-list li,
.delivery-outputs-list li {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--navy);
    border-radius: 4px;
    padding: .75rem 1rem;
    font-size: .9rem
}

.explainer-card--link:hover {
    box-shadow: none;
    border: none
}

.content-chapter {
    padding: 4.5rem 0
}

.content-chapter--alt {
    background: var(--cream)
}

.chapter-header {
    margin-bottom: 2.5rem;
}

.chapter-header--center,
.chapter-header--center .chapter-title {
    text-align: center
}

.chapter-header--center .chapter-lead {
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}

.chapter-number {
    letter-spacing: .12em;
    color: var(--gold);
    margin-bottom: .5rem;
    font-size: .75rem;
    font-weight: 700;
    display: block
}

.chapter-title {
    color: var(--navy);
    text-align: left;
    margin-bottom: 1rem;
}

.chapter-lead {
    color: var(--text-light);
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.chapter-body {
    flex-direction: column;
    gap: 2.5rem;
    display: flex;
}

.chapter-nav {
    letter-spacing: .04em;
    flex-wrap: wrap;
    gap: .5rem 1.25rem;
    margin-bottom: 2rem;
    font-size: .8rem;
    font-weight: 600;
    display: flex
}

.chapter-nav a {
    color: #ffffffbf;
    text-decoration: none
}

.chapter-nav a:hover {
    color: var(--gold-light)
}

.lifecycle-learn-more:hover {
    color: var(--gold)
}

.detail-modal-backdrop {
    z-index: 200;
    background: #0f21378c;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    display: flex;
    position: fixed;
    inset: 0
}

.detail-modal {
    background: var(--white);
    border-radius: 4px;
    width: 100%;
    max-width: 560px;
    max-height: 85vh;
    padding: 2rem;
    position: relative;
    overflow-y: auto;
    box-shadow: 0 24px 48px #0003
}

.detail-modal-close {
    background: var(--cream);
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--navy);
    border: none;
    border-radius: 4px;
    font-size: 1.5rem;
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1rem
}

.detail-modal-close:focus-visible {
    outline: 2px solid var(--gold)
}

.detail-modal h2 {
    margin: .5rem 0 1rem;
    padding-right: 2.5rem;
    font-size: 1.5rem
}

.detail-modal-summary {
    color: var(--text-light);
    margin-bottom: 1.5rem
}

.lifecycle-panels {
    display: block
}

.lifecycle-panel[hidden] {
    display: none !important
}

.item-detail-seo {
    border-top: 1px solid var(--border);
    margin-top: 1.25rem;
    padding-top: 1rem;
    font-size: .9rem
}

.item-detail-seo summary {
    cursor: pointer;
    color: var(--navy-mid);
    font-weight: 600;
    list-style: none
}

.item-detail-seo summary::-webkit-details-marker {
    display: none
}

.item-detail-seo-summary {
    color: var(--text-light);
    margin: .75rem 0 0
}

.item-detail-content section {
    margin-bottom: 1rem
}

.item-detail-content section h3 {
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--slate);
    margin-bottom: .5rem;
    font-family: Inter, sans-serif;
    font-size: .8rem;
    font-weight: 600
}

.item-detail-content ul {
    color: var(--text);
    margin: 0;
    padding-left: 1.25rem
}

.item-detail-content li {
    margin-bottom: .35rem
}

.item-detail-note {
    color: var(--slate);
    margin: .5rem 0 0;
    font-size: .9rem;
    font-style: italic
}

.detail-modal-section,
.item-detail-content section {
    margin-bottom: 1.25rem
}

.detail-modal-section h3,
.item-detail-content section h3 {
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--slate);
    margin-bottom: .5rem;
    font-family: Inter, sans-serif;
    font-size: .8rem;
    font-weight: 600
}

.detail-modal-section ul,
.item-detail-content ul {
    color: var(--text);
    margin: 0;
    padding-left: 1.25rem;
    font-size: .95rem
}

.detail-modal-section li,
.item-detail-content li {
    margin-bottom: .35rem
}

.detail-modal-note {
    color: var(--slate);
    border-top: 1px solid var(--border);
    margin: 1rem 0;
    padding-top: 1rem;
    font-size: .9rem;
    font-style: italic
}

.detail-modal-actions {
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.5rem;
    display: flex
}

@media (width<=1024px) {

    .lifecycle-stages,
    .framework-grid,
    .outputs-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .memo-grid {
        grid-template-columns: 1fr
    }
}

@media (width<=768px) {

    .lifecycle-stages,
    .framework-grid,
    .outputs-grid,
    .persona-grid,
    .operating-panel-grid {
        grid-template-columns: 1fr
    }

    .lifecycle-map--compact .lifecycle-track {
        font-size: .7rem
    }

    .lifecycle-timeline-rail {
        display: none
    }

    .lifecycle-stage-picker {
        scroll-margin-top: 5.5rem;
        display: grid
    }

    .lifecycle-panels {
        scroll-margin-top: 1rem
    }

    .lifecycle-panel {
        padding: 1.25rem
    }

    .lifecycle-panel-header {
        margin-bottom: 1.25rem;
        padding-bottom: 1rem
    }

    .lifecycle-panel-header h3 {
        font-size: 1.35rem
    }

    .lifecycle-panel-row {
        grid-template-columns: 1fr
    }

    .lifecycle-panel-row-label {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: .5rem;
        padding-right: 0
    }

    .lifecycle-panel-footer {
        flex-direction: column;
        align-items: stretch
    }

    .lifecycle-panel-footer .btn-primary {
        text-align: center;
        justify-content: center
    }

    .blog-articles-grid,
    .case-grid {
        grid-template-rows: none;
        grid-template-columns: 1fr;
        row-gap: 2rem
    }

    .blog-card,
    .case-card {
        flex-direction: column;
        grid-row: auto;
        grid-template-rows: none;
        width: 100%;
        min-width: 0;
        height: auto;
        display: flex
    }

    .blog-card-title {
        min-height: 0
    }

    .blog-card-excerpt,
    .case-card-delivered {
        flex: none
    }

    .blog-card-footer {
        align-self: stretch;
        margin-top: auto
    }

    .case-card-head {
        min-height: 0
    }
}

@media (width>=769px) and (width<=1024px) {
    .blog-articles-grid {
        grid-template-rows: none;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 2rem
    }

    .blog-card {
        flex-direction: column;
        grid-row: auto;
        grid-template-rows: none;
        min-width: 0;
        height: 100%;
        display: flex
    }

    .blog-card-title {
        min-height: 5rem
    }

    .blog-card-excerpt {
        flex: 1
    }

    .blog-card-footer {
        align-self: stretch;
        margin-top: auto
    }

    .case-grid {
        grid-template-rows: none;
        grid-template-columns: repeat(2, 1fr)
    }

    .case-card {
        flex-direction: column;
        grid-row: auto;
        grid-template-rows: none;
        min-width: 0;
        height: 100%;
        display: flex
    }

    .case-card-head {
        min-height: 8.5rem
    }

    .case-card-delivered {
        flex: 1
    }
}

footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-banner p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.cookie-banner button {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
}

.cookie-banner button:hover {
    background: var(--navy-light);
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-scroll-banner {
    z-index: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 2rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    position: relative;
}

.hero-scroll-viewport {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.hero-scroll-track {
    animation: scroll 90s linear infinite;
    display: flex;
    width: max-content;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-scroll-item {
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-right: 3rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-scroll-dot {
    background-color: var(--gold);
    border-radius: 50%;
    display: inline-block;
    height: 6px;
    margin-right: 1.5rem;
    width: 6px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.overview-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(15, 33, 55, 0.03);
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--navy-mid) 0%, var(--gold) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overview-card:hover::before {
    opacity: 1;
}

.overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 33, 55, 0.08);
    border-color: rgba(201, 168, 76, 0.3);
}

.overview-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.overview-card:hover .overview-icon {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.05);
}

.overview-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--navy);
    margin: 0;
    font-weight: 400;
}

.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    padding: 5rem 0 4rem;
    text-align: center;
}

.page-hero .eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse>* {
    direction: ltr;
}

.service-detail-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail h2 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.service-detail>div>p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.check-list li i {
    color: var(--gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service-sidebar {
    background: var(--cream);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border);
}

.service-sidebar h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--navy);
    margin-bottom: 1rem;
}

.sidebar-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.sidebar-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-item i {
    color: var(--gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.sidebar-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.sidebar-item span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.transformation-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.transformation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 33, 55, 0.08);
    border-color: var(--gold-light);
}

.transformation-card h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.transformation-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.transformation-card .card-icon {
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.page-hero-inline-link {
    color: var(--gold-light);
    font-weight: 600;
    text-decoration: none;
}

.page-hero-inline-link:hover {
    color: var(--gold);
    text-decoration: underline;
}

.transformation-card .card-subtitle {
    color: var(--navy-light);
    margin-bottom: .5rem;
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

.transformation-card .card-cta {
    color: var(--gold);
    margin-top: auto;
    padding-top: 1rem;
    font-weight: 600;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.about-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.about-visual {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 16px;
    padding: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-visual::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.about-visual blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
}

.about-visual cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--gold-light);
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    margin: 0 auto 1.25rem;
}

.value-card h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.who-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.who-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.who-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 10px;
    display: flex;
    flex-shrink: 0;
    f align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.who-card h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.who-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.team-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.team-card:hover .team-image img {
    filter: grayscale(0%);
}

.team-image i {
    font-size: 4rem;
    color: #cbd5e1;
}

.team-info {
    padding: 1.5rem;
    flex-grow: 1;
}

.team-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.team-info .role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: block;
}

.team-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

@media (max-width: 640px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
}

.contact-form {
    background: var(--white);
}

.contact-form h2 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.contact-form>p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.info-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.info-item a,
.info-item span {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
}

.info-item a:hover {
    color: var(--gold);
}

.trust-card {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 12px;
    padding: 2rem;
    color: var(--white);
}

.trust-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.trust-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.trust-point i {
    color: var(--gold);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* ── Icon Box System ── */
.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: var(--gold);
    flex-shrink: 0;
}

.icon-box--md {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    font-size: 1.3rem;
    margin: 0 auto 1.25rem;
}

.icon-box--lg {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-box--sm {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    font-size: 1.1rem;
}

.icon-box--xs {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.icon-box--light {
    background: var(--cream);
    color: var(--navy);
    font-size: 1.2rem;
}

.icon-box--round {
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
}

/* ── Footer Brand Overrides (eliminating inline styles) ── */
.footer-brand .logo {
    color: var(--white);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand .logo-text span {
    color: rgba(255, 255, 255, 0.5);
}

.footer-address {
    margin-top: 1.25rem;
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

/* ── Utility Classes ── */
.mt-1 {
    margin-top: 1rem;
}

.mt-1\.5 {
    margin-top: 1.5rem;
}

.mt-2 {
    margin-top: 2rem;
}

.text-navy {
    color: var(--navy);
}

.text-muted {
    color: var(--text-light);
}

.fw-500 {
    font-weight: 500;
}

/* ── Section Header (shared pattern for advisory inline styles) ── */
.section-header--wide {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header--wide h2 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-header--wide p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.section-header--xl {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header--wide h2,
.section-header--xl h2 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-header--wide p,
.section-header--xl p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ── Nav Dropdown ── */
.nav-dropdown {
    position: relative;
}

.nav-dropdown>a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-dropdown>a .dropdown-arrow {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(15, 33, 55, 0.12);
    min-width: 220px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    transform: translateX(-50%) translateY(8px);
    z-index: 200;
    list-style: none;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover>a .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu li {
    list-style: none;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.nav-dropdown-menu a::after {
    display: none !important;
}

.nav-dropdown-menu a:hover {
    background: var(--cream);
    color: var(--navy);
}

.nav-dropdown-menu a.active {
    color: var(--gold);
    font-weight: 600;
}

/* Keep dropdown open when moving mouse from trigger to menu */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 1rem;
}

@media (max-width: 768px) {

    /* ── Mobile Navigation ── */
    .mobile-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        padding: 1rem 2rem;
        gap: 0;
        z-index: 200;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 0.6rem 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-cta {
        text-align: center;
        margin-top: 0.5rem;
    }

    .navbar .container {
        position: relative;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0.25rem 0 0 1rem;
        min-width: 0;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown>a .dropdown-arrow {
        display: none;
    }

    /* ── Mobile Top Bar ── */
    .top-bar .container {
        justify-content: center;
        gap: 1rem;
        font-size: 0.7rem;
    }

    /* ── Mobile Hero ── */
    .hero {
        padding-bottom: 3rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    /* ── Mobile Scroll Banner ── */
    .hero-scroll-banner {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        margin-bottom: 1rem;
    }

    /* ── Mobile Sections ── */
    .section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1.25rem;
    }

    /* ── Mobile Page Hero ── */
    .page-hero {
        padding: 3rem 0 2.5rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    /* ── Mobile Service Detail (Advisory/Delivery pages) ── */
    .service-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
        padding-bottom: 3rem;
    }

    .service-detail.reverse {
        direction: ltr;
    }

    /* ── Mobile Overview Cards ── */
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .overview-card {
        padding: 1.75rem;
    }

    /* ── Mobile Services Grid ── */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* ── Mobile Transformation Grid ── */
    .transformation-grid {
        grid-template-columns: 1fr;
    }

    /* ── Mobile About Page ── */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .who-grid {
        grid-template-columns: 1fr;
    }

    /* ── Mobile Contact Page ── */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* ── Mobile Footer ── */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    /* ── Mobile CTA Banner ── */
    .cta-banner {
        padding: 3rem 0;
    }

    /* ── Mobile Blog / News / Case Studies ── */
    .blog-articles-grid,
    .news-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    /* ── Mobile Cookie Banner ── */
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem 1.25rem;
    }

    /* ── Mobile Comparison Table ── */
    .comparison-table-wrap {
        margin: 1rem -1.25rem;
        padding: 0 1.25rem;
    }

    /* ── Mobile Framework Grid ── */
    .framework-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
}

/* ── Blog Articles Grid ── */
.blog-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.04);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem 0;
}

.blog-tag {
    display: inline-block;
    background: var(--cream);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.blog-read-time {
    font-size: 0.8rem;
    color: var(--text-light);
}

.blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    padding: 0.75rem 1.5rem 0;
    line-height: 1.35;
    margin: 0;
}

.blog-card-excerpt {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    padding: 0.5rem 1.5rem 0;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1rem 1.5rem 1.25rem;
}

.blog-card-footer .service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
}

.blog-card-footer .service-link::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.blog-card-footer .service-link::after {
    display: none !important;
}

.blog-card-footer .service-link:hover {
    color: var(--navy);
}

.blog-date {
    font-size: 0.78rem;
    color: var(--text-light);
    text-align: right;
    line-height: 1.4;
}

/* ── News Cards ── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.news-card-head {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: var(--white);
    padding: 1.5rem 1.75rem;
}

.news-card-head h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    line-height: 1.4;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.news-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
}

.news-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.news-card-body {
    padding: 1.5rem 1.75rem;
    flex: 1;
}

.news-card-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.news-card-topics {
    padding: 0 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* ── Case Studies Grid (Our Work page) ── */
.case-studies-grid {