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

:root {
    --cream: #ffffff;
    --charcoal: #060e14;
    --warm-white: #f6f7fa;
    --muted: #616d84;
    --blue: #226090;
    --blue-light: #468FC7;
    --border: rgba(28, 28, 28, 0.12);
    --border-light: rgba(255, 255, 255, 0.12);
    --max-w: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    font-weight: 400;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

.serif {
    font-family: 'EB Garamond', serif;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 3rem;
    left: 1.25rem;
    right: 1.25rem;
    z-index: 1000;
    padding: 1.25vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: var(--cream); */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

nav.scrolled {
    top: 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    /* box-shadow: 0 1px 0 var(--border); */
}

.nav-logo {
    display: flex;
    align-items: center;
    transition: color 0.4s;
    padding: 0.25rem 0.5rem;
    /* background-color: white; */
}

nav.scrolled .nav-logo {
    color: var(--charcoal);
}

.nav-logo svg {
    width: 22px;
    height: 22px;
}

.nav-logo svg path {
    transition: fill 0.4s;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-center a,
.nav-center button {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--muted);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s;
    position: relative;
    padding: 0;
    min-height: 48px;
}

nav.scrolled .nav-center a,
nav.scrolled .nav-center button {
    color: var(--muted);
}

.nav-center a:hover,
.nav-center button:hover {
    color: var(--blue);
}

.nav-center a.active {
    color: var(--blue);
}

nav.scrolled .nav-center a.active {
    color: var(--blue);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    /* top: calc(100% + 12px); */
    left: 50%;
    transform: translateX(-50%);
    background: var(--warm-white);
    border: 1px solid var(--border);
    min-width: 180px;
    padding: 8px 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    /* font-size: 13px; */
    color: var(--muted) !important;
    text-decoration: none;
}

.dropdown-menu a:hover {
    color: var(--blue) !important;
    background: var(--cream);
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.nav-cta {
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    background-color: var(--blue);
    padding: 0.65rem 1.5rem;
    transition: opacity 0.3s;
}

.nav-cta:hover {
    opacity: 0.7;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px 4px;
    z-index: 1002;
    position: relative;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: background 0.3s ease, transform 0.35s ease, opacity 0.25s ease;
    transform-origin: center;
}

/* When nav is scrolled and menu is closed — dark bars */
nav.scrolled .hamburger:not(.is-open) span {
    background: var(--charcoal);
}

/* When menu is open — always white bars (dark overlay behind) */
.hamburger.is-open span {
    background: #fff;
}

/* Animate bars → ✕ */
.hamburger.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── MOBILE NAV OVERLAY ─── */
.mobile-nav {
    display: flex;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: var(--charcoal);
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease,
        visibility 0s linear 0.4s;
}

.mobile-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease,
        visibility 0s linear 0s;
}

/* Nav links staggered fade-in */
.mobile-nav a,
.mobile-nav button.mobile-nav-cta {
    font-family: 'EB Garamond', serif;
    font-size: clamp(28px, 7vw, 38px);
    font-weight: 400;
    line-height: 1;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 14px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.25s, padding-left 0.25s;
    opacity: 0;
    transform: translateY(16px);
    transition: color 0.25s, opacity 0.35s ease, transform 0.35s ease;
}

.mobile-nav.open a,
.mobile-nav.open button.mobile-nav-cta {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger each link */
.mobile-nav a:nth-child(2) {
    transition-delay: 0.08s;
}

.mobile-nav a:nth-child(3) {
    transition-delay: 0.13s;
}

.mobile-nav a:nth-child(4) {
    transition-delay: 0.18s;
}

.mobile-nav a:nth-child(5) {
    transition-delay: 0.23s;
}

.mobile-nav a:nth-child(6) {
    transition-delay: 0.28s;
}

.mobile-nav button.mobile-nav-cta {
    transition-delay: 0.33s;
}

.mobile-nav a:hover,
.mobile-nav button.mobile-nav-cta:hover {
    color: var(--blue);
}

/* CTA button in mobile nav */
.mobile-nav button.mobile-nav-cta {
    font-family: 'Inter', sans-serif;
    border-bottom: none;
    border-top: 1px solid rgba(74, 99, 154, 0.25);
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    background-color: var(--blue);
    padding: 1.5rem 1rem;
    transition: opacity 0.3s;
}

.mobile-nav button.mobile-nav-cta:hover {
    color: var(--blue-light);
}

/* Bottom brand tag */
.mobile-nav-brand {
    position: absolute;
    bottom: 22px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.4s ease 0.4s;
}

.mobile-nav.open .mobile-nav-brand {
    opacity: 1;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 0.5rem 0.65rem;
    border: none;
}

/* ─── PAGE ROUTING ─── */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* ─── SECTION LABEL ─── */
.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: .925rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 500;
    margin-bottom: 40px;
}

.section-label::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--blue);
    opacity: 0.5;
}

/* ─── SECTIONS ─── */
section {
    padding: 120px 5vw;
    position: relative;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
}

.bg-cream {
    background: var(--cream);
}

.bg-charcoal {
    background: var(--charcoal);
    color: #fff;
}

.bg-warm-white {
    background: var(--warm-white);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9vh 5vw 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #1c1a16 50%, #0f0e0c 100%);
    overflow: hidden;
}

.hero-full {
    min-height: 100vh;
}

.hero-tall {
    min-height: 75vh;
}

/* Geometric SVG texture */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect width='60' height='60' fill='none'/%3E%3Cline x1='60' y1='0' x2='0' y2='60' stroke='rgba(154,125,74,0.06)' stroke-width='0.5'/%3E%3Cline x1='0' y1='0' x2='60' y2='60' stroke='rgba(154,125,74,0.04)' stroke-width='0.5'/%3E%3C/svg%3E");
    opacity: 0.8;
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-label {
    display: block;
    margin-bottom: 32px;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-light);
    font-weight: 500;
}

.hero h1 {
    font-family: 'EB Garamond', serif;
    font-size: clamp(48px, 7vw, 72px);
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 28px;
}

.hero-rule {
    width: 80px;
    height: 1px;
    background: var(--blue-light);
    margin: 0 auto 28px;
}

.hero p {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.hero-scroll svg {
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* ─── CTA STYLES ─── */
.cta-underline {
    font-size: .8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
    text-decoration: none;
    border-bottom: 1px solid var(--blue);
    padding-bottom: 2px;
    font-weight: 400;
    transition: opacity 0.3s, letter-spacing 0.3s;
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: 'Inter', sans-serif;
    display: inline-block;
}

.cta-underline:hover {
    opacity: 0.75;
    letter-spacing: 2px;
}

.cta-underline.white {
    color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.cta-underline.white:hover {
    color: #fff;
    border-bottom-color: #fff;
    opacity: 1;
}

/* ─── STATS ─── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    padding: 48px 40px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    /* font-family: 'EB Garamond', serif; */
    font-size: 56px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    display: block;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 400;
}

/* ─── STAKEHOLDER CARDS ─── */
.stakeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.stakeholder-card {
    padding: 40px 36px;
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-top: 2px solid var(--border);
    transition: transform 0.3s ease, border-top-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.stakeholder-card:hover {
    transform: translateY(-6px);
    border-top-color: var(--blue);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.card-num {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    display: block;
    margin-bottom: 20px;
}

.card-title {
    font-family: 'EB Garamond', serif;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.stakeholder-card p {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.5;
}

.card-rule {
    width: 32px;
    height: 1px;
    background: var(--border);
    margin-bottom: 28px;
}

/* ─── EXPANDABLE SERVICE ROWS ─── */
.service-rows {
    margin-top: 56px;
}

.service-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    overflow: hidden;
}

.service-row.light-bg {
    border-bottom-color: var(--border);
}

.service-row-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 0;
    transition: opacity 0.2s;
}

.service-row-header:hover .service-title {
    color: var(--blue-light);
}

.service-row.light-bg .service-row-header:hover .service-title {
    color: var(--blue);
}

.service-num {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--blue);
    font-weight: 400;
    min-width: 32px;
}

.service-title {
    font-family: 'EB Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    flex: 1;
    transition: color 0.3s;
}

.service-row.light-bg .service-title {
    color: var(--charcoal);
}

.service-desc {
    font-size: 15px;
    color: var(--muted);
    max-width: 480px;
    text-align: right;
}

.service-row.light-bg .service-desc {
    color: var(--muted);
}

.service-arrow {
    font-size: 18px;
    color: var(--blue);
    margin-left: 16px;
    transition: transform 0.3s;
}

.service-expand {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.3s ease;
    padding: 0 0 0 56px;
}

.service-expand.open {
    max-height: 150px;
    padding: 0 0 24px 56px;
}

.service-expand p {
    font-size: 15px;
    color: var(--blue-light);
    font-style: italic;
    line-height: 1.7;
}

.service-row.light-bg .service-expand p {
    color: var(--blue);
}

.service-row.open .service-arrow {
    transform: rotate(90deg);
}

/* ─── PROBLEM CARDS ─── */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.problem-card {
    background: var(--charcoal);
    padding: 36px 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.problem-card h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px;
}

.problem-card p {
    font-size: 1re;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.case-study-block {
    margin-top: 48px;
    background: var(--cream);
    border-left: 4px solid var(--blue);
    padding: 40px 48px;
}

.case-study-block .cs-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
    font-weight: 500;
    display: block;
}

.case-study-block p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
}

/* ─── CREDENTIALS ─── */
.creds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 48px;
}

.cred-item {
    background-color: #fff;
    text-align: center;
    padding: 40px 36px;
    border-right: 1px solid rgba(28, 28, 28, 0.5);
    border-top: 2px solid var(--blue);
}

.cred-icon {
    max-width: 280px !important;
    filter: grayscale(0) !important;
}

.cred-item:last-child {
    border-right: none;
}

.cred-name {
    font-family: 'EB Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--blue);
    margin-bottom: 2px;
}

.cred-desc {
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.6;
}

.awards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.award-line {
    font-family: 'EB Garamond', serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    color: var(--blue-light);
}

/* ─── TWO COLUMN ─── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.two-col.centered {
    align-items: center;
}

.pull-quote {
    font-family: 'EB Garamond', serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.3;
    color: var(--charcoal);
}

.pull-quote.white {
    color: #fff;
}

.pull-quote.dark-bg {
    color: #fff;
}

/* ─── MANIFESTO ─── */
.manifesto-quote {
    font-family: 'EB Garamond', serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 32px;
}

.manifesto-rule {
    width: 80px;
    height: 1px;
    background: var(--border);
    margin-bottom: 40px;
}

/* ─── PROCESS TIMELINE ─── */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process-step {
    padding: 40px 32px 40px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.process-step:last-child {
    border-right: none;
    padding-right: 0;
}

.process-step:first-child {
    padding-left: 0;
}

.process-step+.process-step {
    padding-left: 32px;
}

.step-num {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 20px;
    font-weight: 500;
}

.step-name {
    font-family: 'EB Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* ─── PROMISE ITEMS ─── */
.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 56px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promise-item {
    padding: 40px 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.promise-item:last-child {
    border-right: none;
}

.promise-gold-line {
    width: 32px;
    height: 2px;
    background: var(--blue);
    margin-bottom: 20px;
}

.promise-item h3 {
    font-family: 'EB Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
}

.promise-item p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* ─── EXPERTISE CARDS 2x2 ─── */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.expertise-card {
    background: var(--cream);
    padding: 36px 32px;
    border: 1px solid var(--border);
    border-top: 2px solid var(--blue);
}

.expertise-card h3 {
    font-family: 'EB Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.expertise-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* ─── NRI HIGHLIGHTS ─── */
.nri-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 48px;
    border: 1px solid var(--border);
}

.nri-item {
    padding: 36px 32px;
    border-right: 1px solid var(--border);
}

.nri-item:last-child {
    border-right: none;
}

.nri-region {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
    display: block;
}

.nri-item p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* ─── CTA BANNER ─── */
.cta-banner {
    text-align: center;
}

.cta-banner h2 {
    font-family: 'EB Garamond', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.cta-banner p {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 40px;
}

/* ─── FOOTER ─── */
footer {
    background: var(--charcoal);
    padding: 20px 5vw 0;
}

.footer-top {
    display: none;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    width: fit-content;
    display: flex;
    align-items: center;
    transition: color 0.4s;
    padding: 0.45rem 0.5rem;
    background-color: white;
    margin-bottom: 1rem;
}

.footer-logo svg path {
    fill: #fff;
}

.footer-address {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 24px;
    font-weight: 400;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-contact-item a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.social-icon:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 14px;
    color: var(--muted);
    letter-spacing: 0.5px;
}

.footer-bottom a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--blue-light);
}

/* ─── AWARDS PHOTO LAYOUT ─── */
.awards-visual {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 56px;
}

.award-photo {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.award-photo img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: brightness(0.9) !important;
    transition: transform 0.5s ease;
}

.award-photo:hover img {
    transform: scale(1.03);
}

.award-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.awards-center {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.award-pill {
    width: 100%;
    padding: 22px 32px;
    text-align: center;
    background: rgba(74, 99, 154, 0.12);
    border: 1px solid rgba(74, 99, 154, 0.35);
    transition: background 0.3s, border-color 0.3s;
}

.award-pill:hover {
    background: rgba(74, 99, 154, 0.22);
    border-color: var(--blue-light);
}

.award-pill-year {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-light);
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}

.award-pill-title {
    font-family: 'EB Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
}

.section-heading-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-light);
    text-align: center;
    display: block;
    margin-bottom: 16px;
}

.awards-section-title {
    font-family: 'EB Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-bottom: 48px;
}

/* ─── PAGE IMAGES ─── */
.section-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.img-frame {
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.img-frame:hover img {
    transform: scale(1.04);
}

.img-tall {
    height: 520px;
}

.img-medium {
    height: 360px;
}

.img-short {
    height: 280px;
}

/* ─── LIFECYCLE STAGES ─── */
.lifecycle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 56px 0 0;
    border: 1px solid var(--border);
}

.lifecycle-stage {
    padding: 48px 36px;
    border-right: 1px solid var(--border);
    position: relative;
    background: var(--warm-white);
    transition: background 0.3s;
}

.lifecycle-stage:hover {
    background: var(--cream);
}

.lifecycle-stage:last-child {
    border-right: none;
}

.stage-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 20px;
}

.stage-badge::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--blue);
}

.stage-title {
    font-family: 'EB Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 24px;
    line-height: 1.2;
}

.stage-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.stage-row strong {
    color: var(--charcoal);
    font-weight: 500;
    min-width: 44px;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.stage-cost {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 13px;
}

.stage-cost-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    display: block;
    margin-bottom: 6px;
}

.stage-cost-val {
    font-family: 'EB Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--charcoal);
}

/* ─── COST COMPARISON ─── */
.cost-bar {
    display: flex;
    gap: 0;
    margin: 40px 0;
    border: 1px solid var(--border);
    overflow: hidden;
}

.cost-segment {
    padding: 28px 24px;
    flex: 1;
    border-right: 1px solid var(--border);
    text-align: center;
}

.cost-segment:last-child {
    border-right: none;
}

.cost-val {
    font-family: 'EB Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--blue-light);
    display: block;
    margin-bottom: 8px;
}

.cost-stage {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
}

.cost-segment.highlight {
    background: var(--charcoal);
}

.cost-segment.highlight .cost-val {
    color: var(--blue-light);
}

.cost-segment.highlight .cost-stage {
    color: rgba(255, 255, 255, 0.5);
}

/* Outcomes */
.outcomes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.outcome-col h4 {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid;
}

.outcome-col.bad h4 {
    color: #c0392b;
    border-color: rgba(192, 57, 43, 0.3);
}

.outcome-col.good h4 {
    color: var(--blue);
    border-color: rgba(74, 99, 154, 0.3);
}

.outcome-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 12px;
    line-height: 1.6;
}

.outcome-icon {
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ─── CONSULTING MINDSET ─── */
.mindset-block {
    background: var(--charcoal);
    padding: 56px 60px;
    border-left: 3px solid var(--blue);
    margin-bottom: 0;
}

.mindset-block p {
    font-family: 'EB Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 20px;
}

.mindset-block p:last-child {
    margin-bottom: 0;
}

.mindset-block strong {
    color: var(--blue-light);
    font-weight: 500;
}

@media (max-width: 768px) {
    .awards-visual {
        grid-template-columns: 1fr;
    }

    .award-photo img {
        height: 480px;
    }

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

    .lifecycle-stage {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

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

    .cost-bar {
        flex-direction: column;
    }

    .cost-segment {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .mindset-block {
        padding: 36px 28px;
    }
}

/* ─── FADE IN ANIMATION ─── */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-delay-1 {
    transition-delay: 0.1s;
}

.fade-in-delay-2 {
    transition-delay: 0.2s;
}

.fade-in-delay-3 {
    transition-delay: 0.3s;
}

.fade-in-delay-4 {
    transition-delay: 0.4s;
}

/* ─── HEADING STYLES ─── */
.section-heading {
    font-family: 'EB Garamond', serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.section-heading.white {
    color: #fff;
}

.section-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 0;
}

.section-sub.white {
    color: rgba(255, 255, 255, 0.55);
}

p.body-text {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    section {
        padding: 7.5vh 5vw;
    }

    .nav-center,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .stat-item {
        padding: 2rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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

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

    .two-col {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .cred-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .process-timeline {
        grid-template-columns: 1fr;
        border-top: none;
    }

    .process-step {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 32px 0;
    }

    .process-step+.process-step {
        padding-left: 0;
    }

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

    .promise-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .nri-highlights {
        grid-template-columns: 1fr;
    }

    .nri-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 24px;
    }

    .service-desc {
        display: none;
    }
}

/* ─── MODAL OVERLAY ─── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(10, 9, 8, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.open {
    display: flex;
}

/* ─── MODAL BOX ─── */
.modal-box {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    max-width: 960px;
    width: 100%;
    background: var(--warm-white);
    position: relative;
    overflow: hidden;
    animation: modalIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.97);
    }

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

/* ─── LEFT PANEL (IMAGE) ─── */
.modal-img-panel {
    position: relative;
    overflow: hidden;
    min-height: 540px;
}

.modal-img-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 9, 8, 0.95) 0%, rgba(10, 9, 8, 0.45) 75%);
}

.modal-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 28px;
}

.modal-img-caption .cap-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-light);
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
}

.modal-img-caption h3 {
    font-family: 'EB Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    line-height: 1.25;
}

.modal-img-caption h4 {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 6px;
}

.modal-img-caption p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    line-height: 1.6;
}

/* ─── RIGHT PANEL (FORM) ─── */
.modal-form-panel {
    padding: 44px 40px 36px;
    display: flex;
    flex-direction: column;
    background: var(--warm-white);
}

.modal-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}

.modal-title {
    font-family: 'EB Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.modal-title em {
    font-style: italic;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 28px;
}

/* ─── FORM FIELDS ─── */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.modal-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.modal-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

.modal-input,
.modal-select,
.modal-textarea {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--charcoal);
    background: #fff;
    border: 1px solid var(--border);
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
    width: 100%;
    -webkit-appearance: none;
}

.modal-input::placeholder,
.modal-textarea::placeholder {
    color: #b5b0aa;
}

.modal-input:focus,
.modal-select:focus,
.modal-textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(74, 99, 154, 0.08);
}

/* Phone row */
.modal-phone-row {
    display: flex;
    gap: 0;
}

.modal-phone-prefix {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border: 1px solid var(--border);
    border-right: none;
    padding: 12px 12px;
    font-size: 13px;
    color: var(--muted);
    white-space: nowrap;
    min-width: 64px;
}

.modal-phone-row .modal-input {
    border-radius: 0;
    flex: 1;
}

/* Select arrow */
.modal-select-wrap {
    position: relative;
}

.modal-select-wrap::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--muted);
    pointer-events: none;
}

.modal-select {
    cursor: pointer;
    padding-right: 36px;
}

/* Textarea */
.modal-textarea {
    resize: none;
    height: 72px;
    line-height: 1.6;
}

/* Submit button */
.modal-submit {
    margin-top: 6px;
    width: 100%;
    padding: 15px 20px;
    background: var(--blue);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.25s, transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-submit:hover {
    background: var(--blue-light);
}

.modal-submit:active {
    transform: scale(0.98);
}

.modal-submit svg {
    transition: transform 0.2s;
}

.modal-submit:hover svg {
    transform: translateX(3px);
}

/* Privacy note */
.modal-privacy {
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-privacy svg {
    vertical-align: middle;
    margin-right: 4px;
}

/* Trust badges */
.modal-trust {
    /* display: flex; */
    display: none;
    gap: 0;
    margin-top: 20px;
    border-top: 1px solid var(--border);
    padding-top: 18px;
}

.modal-trust-item {
    flex: 1;
    text-align: center;
    padding: 0 8px;
    border-right: 1px solid var(--border);
}

.modal-trust-item:last-child {
    border-right: none;
}

.trust-icon {
    font-size: 16px;
    margin-bottom: 4px;
    display: block;
}

.trust-val {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--charcoal);
    display: block;
    line-height: 1;
}

.trust-label {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.5px;
}

/* ─── CLOSE BUTTON ─── */
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-size: 16px;
    line-height: 1;
    transition: background 0.2s, color 0.2s;
}

.modal-close:hover {
    background: var(--charcoal);
    color: #fff;
}

/* ─── SUCCESS STATE ─── */
.modal-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 40px;
    flex: 1;
}

.modal-success.show {
    display: flex;
}

.modal-success-icon {
    width: 56px;
    height: 56px;
    background: rgba(74, 99, 154, 0.1);
    border: 1px solid rgba(74, 99, 154, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-success h3 {
    font-family: 'EB Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 12px;
    line-height: 1.2;
}

.modal-success p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 24px;
}

.modal-success-note {
    background: rgba(74, 99, 154, 0.07);
    border: 1px solid rgba(74, 99, 154, 0.25);
    border-left: 3px solid var(--blue);
    padding: 14px 18px;
    text-align: left;
    width: 100%;
    max-width: 320px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}

.modal-success-note strong {
    color: var(--blue);
    font-weight: 500;
}

.modal-close-btn {
    margin-top: 24px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    border-bottom: 1px solid var(--blue);
    padding-bottom: 2px;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

/* ─── FORM HIDE ON SUCCESS ─── */
.modal-form-inner {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.modal-form-inner.hidden {
    display: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 680px) {
    .modal-box {
        grid-template-columns: 1fr;
    }

    .modal-img-panel {
        /* min-height: 200px;
                max-height: 200px; */
        display: none;
    }

    .modal-img-caption h3 {
        font-size: 20px;
    }

    .modal-img-caption {
        padding: 12px 28px;
    }

    .modal-form-panel {
        padding: 28px 24px 24px;
    }

    .modal-title {
        font-size: 26px;
    }

    .modal-trust {
        gap: 0;
    }
}

/* ─── TOP CONTACT BAR ─── */
.top-bar {
    background: var(--warm-white);
    padding: 3px 5vw 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: var(--blue);
    letter-spacing: 0.3px;
    border-bottom: 1px solid var(--border);
}

.top-bar a {
    color: var(--blue);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.top-bar a:hover {
    color: var(--blue-light);
}

.top-bar-left {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-bar-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.top-bar-icon {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.top-bar-social a {
    color: var(--blue);
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.top-bar-social a:hover {
    color: var(--blue-light);
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

/* ─── HERO AUDIENCE PILLS ─── */
.hero-audience {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
}

.hero-pill {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 22px;
    text-decoration: none;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
    cursor: pointer;
    background: none;
    font-family: 'Inter', sans-serif;
}

.hero-pill:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: rgba(74, 99, 154, 0.08);
}

/* ─── SECTION UNIFORM HEADINGS ─── */

.section-heading.white {
    color: #fff;
}

.section-sub {
    font-size: 16px;
    color: var(--muted);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 0;
}

.section-sub.white {
    color: rgba(255, 255, 255, 0.55);
}

/* ─── THE PROBLEM SECTION ─── */
.problem-statement {
    max-width: 720px;
    margin-bottom: 56px;
}

.problem-statement h2 {
    font-family: 'EB Garamond', serif;
    font-size: clamp(32px, 3.5vw, 46px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.problem-statement p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.9;
}

/* ─── BEFORE / AFTER OUTCOME ─── */
.outcome-section {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.outcome-wrap {
    position: relative;
    z-index: 1;
}

/* Header row */
.outcome-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 72px;
}

.outcome-header-left {
    max-width: 560px;
}

.outcome-header-right {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 280px;
    text-align: right;
    padding-bottom: 4px;
}

@media(max-width:768px) {
    .outcome-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .outcome-header-right {
        text-align: left;
    }
}

/* Central divider line */
.outcome-divider {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 0;
}

.outcome-divider-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: .75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(74, 99, 154, 0.5);
    padding: 24px 0;
    min-width: 32px;
    text-align: center;
}

/* Two-panel layout */
.outcome-panels {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.outcome-panel {
    padding: 0;
}

.outcome-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.outcome-panel-tag {
    font-size: .75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

.before-panel .outcome-panel-tag {
    color: rgba(255, 255, 255, 0.75);
}

.after-panel .outcome-panel-tag {
    color: var(--blue-light);
}

.outcome-panel-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.before-panel .outcome-panel-icon {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.63);
}

.after-panel .outcome-panel-icon {
    background: rgba(74, 99, 154, 0.15);
    color: var(--blue-light);
}

.outcome-panel-title {
    padding: 32px 40px 20px;
    font-family: 'EB Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
}

.before-panel .outcome-panel-title {
    color: rgba(255, 255, 255, 0.65);
}

.after-panel .outcome-panel-title {
    color: #fff;
}

/* Individual outcome rows */
.outcome-rows {
    padding: 8px 0 40px;
}

.outcome-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s;
}

.outcome-row:last-child {
    border-bottom: none;
}

.before-panel .outcome-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.after-panel .outcome-row:hover {
    background: rgba(74, 99, 154, 0.05);
}

.outcome-row-marker {
    flex-shrink: 0;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 500;
}

.before-panel .outcome-row-marker {
    background: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 075);
}

.after-panel .outcome-row-marker {
    background: rgba(74, 99, 154, 0.2);
    color: var(--blue-light);
}

.outcome-row-content {
    flex: 1;
}

.outcome-row-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 3px;
    letter-spacing: 0.2px;
}

.before-panel .outcome-row-title {
    color: rgba(255, 255, 255, 0.75);
}

.after-panel .outcome-row-title {
    color: var(--cream);
}

.outcome-row-sub {
    font-size: 1rem;
    line-height: 1.5;
}

.before-panel .outcome-row-sub {
    color: rgba(255, 255, 255, 0.5);
}

.after-panel .outcome-row-sub {
    color: rgba(255, 255, 255, 0.65);
}

/* Centre divider column */
.outcome-divider-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.outcome-vs {
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-light);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

/* Bottom footnote */
.outcome-footnote {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.outcome-footnote-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
    line-height: 1.7;
}

.outcome-footnote-cta {
    flex-shrink: 0;
}

@media(max-width:768px) {
    .outcome-panels {
        grid-template-columns: 1fr;
    }

    .outcome-divider-col {
        display: none;
    }

    .outcome-panel-header,
    .outcome-panel-title,
    .outcome-row {
        padding-left: 24px;
        padding-right: 24px;
    }

    .outcome-footnote {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}


/* ─── TESTIMONIALS ─── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.testimonial-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-top: 2px solid var(--blue);
    padding: 36px 32px;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.testimonial-stars span {
    color: var(--blue);
    font-size: 14px;
}

.testimonial-quote {
    font-family: 'EB Garamond', serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.testimonial-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.3px;
}

.testimonial-role {
    font-size: 12px;
    color: var(--muted);
}

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

/* ─── ABOUT PAGE — HOW WE THINK LIST ─── */
.think-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.think-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
}

.think-dot {
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

/* ─── ABOUT PAGE — RAKSHA DIFFERENCE PILLARS ─── */
.difference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 48px;
}

.diff-item {
    background: rgba(255, 255, 255, 0.04);
    padding: 36px 32px;
    border-left: 2px solid rgba(74, 99, 154, 0.3);
    transition: border-color 0.3s, background 0.3s;
}

.diff-item:hover {
    border-left-color: var(--blue);
    background: rgba(255, 255, 255, 0.07);
}

.diff-item h4 {
    font-family: 'EB Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
}

.diff-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

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

/* ─── ABOUT — IMPACT GRID ─── */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 48px;
    border: 1px solid var(--border);
}

.impact-item {
    padding: 40px 32px;
    border-right: 1px solid var(--border);
}

.impact-item:last-child {
    border-right: none;
}

.impact-who {
    position: absolute;
    top: -18px;
    background-color: var(--warm-white);
    padding: .25rem .5rem;
    border: 1px solid var(--border);
    font-weight: 500;
    font-size: .85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    display: block;
    margin-bottom: 12px;
}

.impact-item h3 {
    font-family: 'EB Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.impact-item p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

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

    .impact-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .impact-who {
        position: relative;
        display: inline-block;
        top: 0;
        background-color: var(--warm-white);
        border: none;
    }
}

/* ─── CONTACT PAGE ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-info-label {
    font-size: .75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 400;
}

.contact-info-val {
    font-family: 'EB Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--charcoal);
}

.contact-info-val a {
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-val a:hover {
    color: var(--blue);
}

.contact-form-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

.contact-input,
.contact-textarea {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--charcoal);
    background: #fff;
    border: 1px solid var(--border);
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    -webkit-appearance: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: #c0bbb5;
}

.contact-input:focus,
.contact-textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(74, 99, 154, 0.08);
}

.contact-textarea {
    resize: none;
    height: 120px;
    line-height: 1.6;
}

.contact-submit {
    width: 100%;
    padding: 16px;
    background: var(--charcoal);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: background 0.25s;
}

.contact-submit:hover {
    background: var(--blue);
}

.contact-success-msg {
    display: none;
    margin-top: 16px;
    padding: 16px 20px;
    background: rgba(74, 99, 154, 0.08);
    border-left: 3px solid var(--blue);
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

@media(max-width:768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    nav {
        top: 0;
    }
}

/* ──────────────────────────────────────────────
     DEVELOPERS PAGE — ALL NEW SECTIONS
  ────────────────────────────────────────────── */

/* Scroll CTA in hero */
.hero-scroll-cta {
    margin-top: 16vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.hero-scroll-cta svg {
    animation: bounceDown 2s infinite;
}

/* Problem callout */
.problem-callout {
    margin-top: 48px;
    background: rgba(74, 99, 154, 0.08);
    border-left: 3px solid var(--blue);
    padding: 28px 36px;
}

.problem-callout p {
    font-family: 'EB Garamond', serif;
    font-size: 1.55rem;
    font-weight: 500;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.5;
}

/* Lifecycle */
.lifecycle-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 64px;
    align-items: end;
}

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

    .hero-scroll-cta {
        margin-top: 9vh;
    }
}

.lifecycle-stages {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lc-stage {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 0;
    align-items: stretch;
    border-bottom: 1px solid var(--border);
    transition: background 0.25s;
    cursor: default;
}

.lc-stage:hover {
    background: rgba(74, 99, 154, 0.04);
}

.lc-stage:last-child {
    border-bottom: none;
}

.lc-num-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 0;
    border-right: 1px solid var(--border);
    position: relative;
    border-right-color: rgba(255, 255, 255, 0.07);
}

.lc-num {
    font-family: 'EB Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: rgba(74, 99, 154, 0.3);
    line-height: 1;

}

.lc-connector {
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 1px;
    height: 1px;
    background: var(--blue);
}

.lc-body {
    padding: 28px 32px;
}

.lc-stage-label {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-light);
    display: block;
    margin-bottom: 6px;
}

.lc-stage-title {
    font-family: 'EB Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 12px;
    line-height: 1.2;
}

.lc-stage-focus {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 6px;
    line-height: 1.6;
}

.lc-stage-outcome {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.lc-stage-outcome strong {
    color: var(--charcoal);
    font-weight: 500;
}

.lc-cost-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 24px;
    border-left: 1px solid var(--border);
    min-width: 100px;
    text-align: center;
}

.lc-cost-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-light);
    display: block;
    margin-bottom: 6px;
}

.lc-cost-val {
    font-family: 'EB Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
}

.lc-stage:nth-child(1) .lc-cost-val {
    color: #5a9e6f;
}

.lc-stage:nth-child(2) .lc-cost-val {
    color: var(--blue);
}

.lc-stage:nth-child(3) .lc-cost-val {
    color: #c0503a;
}

@media(max-width:768px) {
    .lc-stage {
        grid-template-columns: 40px 1fr 1fr;
    }

    .lc-cost-label {
        padding: 20px 20px !important;
        font-size: 10px !important;
    }

    .lc-body {
        padding: 20px 20px !important;
        width: 240px;
    }
}

/* Cost comparison bar */
.cost-comparison {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 48px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.cost-col {
    flex: 1;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.cost-col:last-child {
    border-right: none;
}

.cost-col.mid {
    background: rgba(255, 255, 255, 0.04);
}

.cost-col.high {
    background: rgba(74, 99, 154, 0.1);
}

.cost-col-stage {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    display: block;
    margin-bottom: 12px;
}

.cost-col-val {
    font-family: 'EB Garamond', serif;
    font-size: 44px;
    font-weight: 400;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.cost-col:nth-child(1) .cost-col-val {
    color: #6ab87e;
}

.cost-col:nth-child(2) .cost-col-val {
    color: var(--blue-light);
}

.cost-col:nth-child(3) .cost-col-val {
    color: #d97060;
}

.cost-col-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.5;
}

@media(max-width:768px) {
    .cost-comparison {
        flex-direction: column;
    }
}

/* Where we work section */
.where-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 48px;
}

.where-item {
    padding: 40px 36px;
    background: var(--cream);
    border: 1px solid var(--border);
    transition: border-top-color 0.3s, background 0.25s;
}

.where-item:hover {
    background: var(--warm-white);
}

.where-item-num {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(74, 99, 154, 0.5);
    display: block;
    margin-bottom: 12px;
}

.where-item h4 {
    font-family: 'EB Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.where-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
}

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

/* Intervene rows */
.intervene-rows {
    margin-top: 48px;
}

.intervene-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.intervene-row:last-child {
    border-bottom: none;
}

.intervene-title {
    font-family: 'EB Garamond', serif;
    font-size: 1.45rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 8px;
}

.intervene-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.6;
}

.intervene-arrow {
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--blue-light);
    white-space: nowrap;
    padding-top: 6px;
    font-style: italic;
}

@media(max-width:768px) {
    .intervene-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .intervene-arrow {
        display: none;
    }
}

/* Process steps */
.dev-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dev-step {
    padding: 40px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.dev-step:last-child {
    border-right: none;
}

.dev-step-num {
    font-family: 'EB Garamond', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--blue);
    line-height: 1;
    display: block;
    margin-bottom: 16px;
}

.dev-step-title {
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 10px;
}

.dev-step-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.5;
}

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

    .dev-step:nth-child(2) {
        border-right: none;
    }

    .dev-step {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media(max-width:767px) {
    .dev-process {
        grid-template-columns: 1fr;
    }
}

/* What changes */
.changes-list {
    list-style: none;
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.change-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s;
}

.change-item:last-child {
    border-bottom: none;
}

.change-item:hover {
    background: rgba(74, 99, 154, 0.06);
}

.change-tick {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: rgba(74, 99, 154, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--blue-light);
}

.change-item p {
    font-size: 15px;
    /* color: rgba(255, 255, 255, 0.75); */
    line-height: 1.5;
}

/* Simple truth pullout */
.simple-truth {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 0;
}

.simple-truth blockquote {
    font-family: 'EB Garamond', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.simple-truth cite {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-style: normal;
}

/* Final note strip */
.final-note {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 48px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.final-note h3 {
    font-family: 'EB Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 16px;
}

.final-note p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.8;
}

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

/* Dark Section */
.dark.section-label {
    color: var(--blue-light);
}

.dark.section-label::after {
    background: var(--blue-light);
}

.dark .cta-underline,
.bg-charcoal .cta-underline {
    color: var(--blue-light);
    border-bottom-color: var(--blue-light);
}

/* Image Changes */
img {
    filter: grayscale(100%) !important;
    transition: filter 0.3s;
}

img:hover {
    filter: grayscale(0%) !important;
}

/* ─── Buyers and Investors CSS ─── */
.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 48px;
}

.breakdown-item {
    padding: 40px 36px;
    background: var(--cream);
    border: 1px solid var(--border);
    transition: border-top-color 0.3s, background 0.25s;
}

.breakdown-item:hover {
    background: var(--warm-white);
}

.breakdown-num {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    display: block;
    margin-bottom: 16px;
}

.breakdown-title {
    font-family: 'EB Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 10px;
    line-height: 1.2;
}

.breakdown-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
}

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

/* ─── COMMITMENT GRID ─── */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 48px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.commitment-item {
    padding: 40px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.commitment-item:last-child {
    border-right: none;
}

.commitment-gold-bar {
    width: 32px;
    height: 2px;
    background: var(--blue);
    margin-bottom: 20px;
}

.commitment-title {
    font-family: 'EB Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
}

.commitment-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
}

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

    .commitment-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .commitment-item:last-child {
        border-bottom: none;
    }
}

/* ─── DECISION FRAMEWORK ROWS (Buyers / Investors) ─── */
.framework-rows {
    margin-top: 48px;
}

.framework-row {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.framework-row:last-child {
    border-bottom: none;
}

.framework-row:hover {
    background: rgba(74, 99, 154, 0.03);
}

.framework-row-num {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 28px 0 28px;
    border-right: 1px solid var(--border);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 400;
    padding-top: 30px;
}

.framework-row-body {
    padding: 28px 32px;
}

.framework-row-title {
    font-family: 'EB Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 8px;
    line-height: 1.2;
}

.framework-row-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.framework-sub-list {
    list-style: none;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.framework-sub-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

.framework-sub-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--blue);
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

@media(max-width:768px) {
    .framework-row {
        grid-template-columns: 36px 1fr;
    }

    .framework-row-body {
        padding: 20px 16px;
    }
}

/* ─── TRUST STAT STRIP ─── */
.trust-strip {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 48px;
}

.trust-strip-item {
    flex: 1;
    padding: 32px 28px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip-item:last-child {
    border-right: none;
}

.trust-strip-val {
    /* font-family: 'EB Garamond', serif; */
    font-size: 40px;
    font-weight: 400;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.trust-strip-label {
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

@media(max-width:768px) {
    .trust-strip {
        flex-direction: column;
    }

    .trust-strip-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

/* ─── APPROACH PRINCIPLES (Buyers) ─── */
.approach-principles {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 48px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.approach-principle {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 22px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s;
}

.approach-principle:last-child {
    border-bottom: none;
}

.approach-principle:hover {
    background: rgba(74, 99, 154, 0.06);
}

.approach-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border: 1px solid rgba(74, 99, 154, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--blue);
}

.approach-principle p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ─── WHO FOR / NOT FOR (Buyers) ─── */
.for-notfor {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 48px;
}

.for-col {
    padding: 40px 36px;
}

.for-col.for {
    background: rgba(74, 99, 154, 0.06);
    border: 1px solid rgba(74, 99, 154, 0.2);
}

.for-col.notfor {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.for-col-tag {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.for-col.for .for-col-tag {
    color: var(--blue);
}

.for-col.notfor .for-col-tag {
    color: rgba(255, 255, 255, 0.3);
}

.for-col h4 {
    font-family: 'EB Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}

.for-col.for h4 {
    color: #fff;
}

.for-col.notfor h4 {
    color: rgba(255, 255, 255, 0.4);
}

.for-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.for-list li {
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    gap: 10px;
}

.for-col.for .for-list li {
    color: rgba(255, 255, 255, 0.75);
}

.for-col.notfor .for-list li {
    color: rgba(255, 255, 255, 0.3);
}

.for-list li::before {
    content: '—';
    color: var(--blue);
    flex-shrink: 0;
    opacity: 0.6;
}

@media(max-width:768px) {
    .for-notfor {
        grid-template-columns: 1fr;
    }
}

/* ─── INVESTOR FRAMEWORK GRID ─── */
.inv-framework-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 48px;
}

.inv-framework-item {
    padding: 40px 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.25s, border-color 0.25s;
}

.inv-framework-item:hover {
    background: rgba(74, 99, 154, 0.07);
    border-color: rgba(74, 99, 154, 0.2);
}

.inv-framework-label {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-light);
    display: block;
    margin-bottom: 12px;
}

.inv-framework-title {
    font-family: 'EB Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.inv-framework-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
}

@media(max-width:768px) {
    .inv-framework-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── EVALUATE LIST (Investors) ─── */
.evaluate-list {
    list-style: none;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
}

.evaluate-item {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--border);
}

.evaluate-item:last-child {
    border-bottom: none;
}

.evaluate-label {
    min-width: 180px;
    padding: 18px 24px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    border-right: 1px solid var(--border);
}

.evaluate-val {
    padding: 18px 24px;
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.5;
}

@media(max-width:768px) {
    .evaluate-item {
        flex-direction: column;
    }

    .evaluate-label {
        border-right: none;
        border-bottom: 1px solid var(--border);
        min-width: unset;
        width: 100%;
    }
}

/* ─── CLOSING PULL NOTE ─── */
.closing-note {
    margin-top: 48px;
    padding: 40px 48px;
    background: rgba(74, 99, 154, 0.08);
    border-left: 3px solid var(--blue);
}

.closing-note p {
    font-family: 'EB Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.6;
    font-style: italic;
}

.closing-note.dark-bg p {
    color: rgba(255, 255, 255, 0.75);
}

@media(max-width:768px) {
    .closing-note {
        padding: 28px 24px;
    }
}

/* 21042026 CSS Updates */
/* ─── CASE STUDY BLOCK (full-bleed cream on charcoal page) ─── */
.case-study-feature {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--blue);
    padding: 48px 52px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.case-study-feature .cs-eyebrow {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    display: block;
    margin-bottom: 20px;
}

.case-study-feature h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 24px;
    line-height: 1.25;
}

.case-study-feature p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.case-study-feature p:last-child {
    margin-bottom: 0;
}

.case-study-numbers {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cs-num-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.cs-num-row:last-child {
    border-bottom: none;
}

.cs-num-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

.cs-num-val {
    font-family: 'EB Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--charcoal);
}

.cs-num-val.bad {
    color: #c0503a;
}

.cs-num-val.good {
    color: #5a9e6f;
}

@media(max-width:768px) {
    .case-study-feature {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 32px;
    }
}

/* ─── MISALIGNMENT LIST (Problems) ─── */
.misalign-list {
    list-style: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
}

.misalign-item {
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 1px solid var(--border);
}

.misalign-item:last-child {
    border-bottom: none;
}

.misalign-icon {
    min-width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border);
    font-size: 14px;
    color: #c0503a;
    background: rgba(74, 99, 154, 0.04);
    flex-shrink: 0;
}

.misalign-text {
    padding: 14px 20px;
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ─── OBSERVATION ROWS (what you've seen) ─── */
.observation-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 32px;
}

.observation-item {
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.obs-icon {
    font-size: 16px;
    color: rgba(74, 99, 154, 0.4);
    margin-bottom: 8px;
    display: block;
}

.obs-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    font-family: 'EB Garamond', serif;
    font-weight: 400;
}

@media(max-width:768px) {
    .observation-strip {
        grid-template-columns: 1fr;
    }
}

/* ─── SECTION STATEMENT (centred dark pullout) ─── */
.section-statement {
    text-align: center;
    padding: 64px 0;
    max-width: 680px;
    margin: 0 auto;
}

.section-statement .statement-label {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-light);
    display: block;
    margin-bottom: 24px;
}

.section-statement blockquote {
    font-family: 'EB Garamond', serif;
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 400;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 16px;
}

.section-statement cite {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-style: normal;
}

/* ─── ENGAGE GRID ─── */
.engage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 48px;
}

.engage-item {
    padding: 36px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.25s, border-color 0.25s;
}

.engage-item:hover {
    background: rgba(74, 99, 154, 0.07);
    border-color: rgba(74, 99, 154, 0.25);
}

.engage-item-icon {
    width: 64px;
    height: 64px;
    border: 1px solid rgba(74, 99, 154, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--blue);
    margin-bottom: 16px;
}

.engage-item h4 {
    font-family: 'EB Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.engage-item p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
}

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

/* ─── BUYER NOISE CARDS ─── */
.noise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 48px;
}

.noise-card {
    padding: 36px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-top: 2px solid rgba(74, 99, 154, 0.64);
    transition: background 0.25s;
}

.noise-card:hover {
    background: rgba(74, 99, 154, 0.06);
}

.noise-card-num {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-light);
    display: block;
    margin-bottom: 14px;
}

.noise-card-title {
    font-family: 'EB Garamond', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 10px;
    line-height: 1.2;
}

.noise-card-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
}

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

/* ─── ADVISORY ROLE STRIP ─── */
.advisory-role {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 48px;
}

.advisory-role-left {
    padding: 48px 44px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.advisory-role-right {
    padding: 48px 44px;
}

.advisory-role h3 {
    font-family: 'EB Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    /* color: #fff; */
    margin-bottom: 20px;
}

.advisory-role p {
    font-size: 1rem;
    /* color: rgba(255, 255, 255, 0.5); */
    line-height: 1.8;
    margin-bottom: 12px;
}

.advisory-role p:last-child {
    margin-bottom: 0;
}

.advisory-principles {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.advisory-principles li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    /* color: rgba(255, 255, 255, 0.6); */
    line-height: 1.5;
}

.advisory-principles li::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--blue);
    flex-shrink: 0;
}

@media(max-width:768px) {
    .advisory-role {
        grid-template-columns: 1fr;
    }

    .advisory-role-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .advisory-role-left,
    .advisory-role-right {
        padding: 32px 24px;
    }
}

/* Scroll Animation */
.animate-light {
    animation: light 2s infinite;
    background-image: linear-gradient(135deg, #17171700, #17171700 40%, #d6d6d690 50%, #17171709 60%, #1717171c) !important;
    background-size: 300% 300%;
}

@keyframes light {
    0% {
        background-position: 100% 100%
    }

    to {
        background-position: 0 0
    }
}

/* ─── ANALYTICS PANEL ─── */
#analytics-panel {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 9, 8, 1);
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    filter: blur();
}

#analytics-panel.open {
    display: flex;
}

.ap-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.ap-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ap-logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    animation: apPulse 2s infinite;
}

@keyframes apPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.ap-title {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
}

.ap-subtitle {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-left: 8px;
}

.ap-close {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.5);
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.ap-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.ap-stats-bar {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.ap-stat {
    flex: 1;
    padding: 20px 24px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.ap-stat:last-child {
    border-right: none;
}

.ap-stat-val {
    font-family: 'EB Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.ap-stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.ap-body {
    display: grid;
    grid-template-columns: 260px 1fr;
    flex: 1;
    overflow: hidden;
}

/* Sidebar filters */
.ap-sidebar {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ap-filter-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    padding: 4px 0 8px;
    margin-top: 8px;
}

.ap-filter-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-align: left;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.ap-filter-btn:hover,
.ap-filter-btn.active {
    background: rgba(74, 99, 154, 0.1);
    border-color: rgba(74, 99, 154, 0.4);
    color: var(--blue-light);
}

.ap-filter-count {
    background: rgba(255, 255, 255, 0.08);
    font-size: 10px;
    padding: 2px 7px;
    color: rgba(255, 255, 255, 0.4);
}

.ap-filter-btn.active .ap-filter-count {
    background: rgba(74, 99, 154, 0.2);
    color: var(--blue-light);
}

.ap-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ap-action-btn {
    padding: 10px 14px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    border: none;
    transition: background 0.2s;
}

.ap-action-btn.export {
    background: rgba(74, 99, 154, 0.2);
    color: var(--blue-light);
}

.ap-action-btn.export:hover {
    background: rgba(74, 99, 154, 0.35);
}

.ap-action-btn.clear {
    background: rgba(192, 80, 58, 0.15);
    color: rgba(192, 80, 58, 0.7);
}

.ap-action-btn.clear:hover {
    background: rgba(192, 80, 58, 0.25);
}

/* Event table */
.ap-main {
    overflow-y: auto;
}

.ap-table {
    width: 100%;
    border-collapse: collapse;
}

.ap-table thead tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    background: rgba(10, 9, 8, 0.98);
    z-index: 1;
}

.ap-table th {
    padding: 12px 20px;
    text-align: left;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
}

.ap-table td {
    padding: 12px 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: middle;
}

.ap-table tr:hover td {
    background: rgba(74, 99, 154, 0.1);
}

.ap-event-badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 500;
}

.badge-modal_open {
    background: rgba(74, 99, 154, 0.15);
    color: var(--blue-light);
}

.badge-whatsapp_send {
    background: rgba(90, 158, 111, 0.15);
    color: #7acf94;
}

.badge-contact_submit {
    background: rgba(90, 130, 200, 0.15);
    color: #8ab4e8;
}

.badge-page_cta {
    background: rgba(180, 120, 200, 0.15);
    color: #d4a4f0;
}

.badge-page_view {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.35);
}

.ap-empty {
    text-align: center;
    padding: 80px 40px;
    font-family: 'EB Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.2);
}

.ap-empty-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.15);
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
}

/* Hotkey hint */
.ap-hint {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.15);
    pointer-events: none;
    z-index: 10000;
}

@media(max-width:768px) {
    .ap-body {
        grid-template-columns: 1fr;
    }

    .ap-sidebar {
        display: none;
    }

    .ap-stats-bar {
        display: none;
    }
}

/* ─── LEGAL MODAL OVERLAY ─── */
.legal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9500;
    background: rgba(10, 9, 8, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 24px 5vw;
}

.legal-overlay.open {
    display: flex;
}

.legal-modal {
    background: var(--warm-white);
    max-width: 760px;
    width: 100%;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    animation: legalIn 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

@keyframes legalIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Modal header */
.legal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 40px 24px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.legal-header-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.legal-eyebrow {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 400;
}

.legal-title {
    font-family: 'EB Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.2;
}

.legal-close {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: none;
    border: 1px solid var(--border);
    cursor: pointer;
    font-size: 16px;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.legal-close:hover {
    background: var(--charcoal);
    color: #fff;
    border-color: var(--charcoal);
}

/* Meta bar */
.legal-meta {
    display: flex;
    gap: 32px;
    align-items: center;
    padding: 14px 40px;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.3px;
}

.legal-meta-item {
    display: flex;
    gap: 8px;
    align-items: center;
}

.legal-meta-dot {
    width: 4px;
    height: 4px;
    background: var(--blue);
    border-radius: 50%;
}

/* Scrollable content */
.legal-body {
    overflow-y: auto;
    padding: 40px;
    flex: 1;
    scroll-behavior: smooth;
    /* Custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(74, 99, 154, 0.3) transparent;
}

.legal-body::-webkit-scrollbar {
    width: 4px;
}

.legal-body::-webkit-scrollbar-track {
    background: transparent;
}

.legal-body::-webkit-scrollbar-thumb {
    background: rgba(74, 99, 154, 0.3);
}

.legal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(74, 99, 154, 0.6);
}

/* Typography inside legal */
.legal-body h2 {
    font-family: 'EB Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--charcoal);
    margin: 32px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body h3 {
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--charcoal);
    margin: 20px 0 8px;
}

.legal-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 14px;
}

.legal-body p:last-child {
    margin-bottom: 0;
}

.legal-body ul {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.legal-body ul li {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.legal-body ul li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--blue);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.legal-body a {
    color: var(--blue);
    text-decoration: none;
}

.legal-body a:hover {
    text-decoration: underline;
}

.legal-callout {
    background: var(--cream);
    border-left: 3px solid var(--blue);
    padding: 16px 20px;
    margin: 20px 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

/* Modal footer */
.legal-footer {
    padding: 20px 40px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    background: var(--cream);
}

.legal-footer-note {
    font-size: 11px;
    color: rgba(28, 28, 28, 0.35);
}

.legal-footer-btn {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
    border-bottom: 1px solid var(--blue);
    padding-bottom: 2px;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.2s;
}

.legal-footer-btn:hover {
    opacity: 0.65;
}

@media(max-width:768px) {

    .legal-header,
    .legal-body,
    .legal-footer,
    .legal-meta {
        padding-left: 24px;
        padding-right: 24px;
    }

    .legal-title {
        font-size: 22px;
    }

    .legal-meta {
        gap: 16px;
        flex-wrap: wrap;
    }
}


/* ─── COOKIE BANNER ─── */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9400;
    background: var(--charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

#cookie-banner.visible {
    transform: translateY(0);
}

.cookie-text {
    flex: 1;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.cookie-text strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.cookie-text a {
    color: var(--blue-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(196, 169, 125, 0.4);
    cursor: pointer;
}

.cookie-text a:hover {
    border-bottom-color: var(--blue-light);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 22px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    transition: background 0.2s, color 0.2s;
}

.cookie-btn.accept {
    background: var(--blue);
    color: #fff;
}

.cookie-btn.accept:hover {
    background: var(--charcoal);
}

.cookie-btn.decline {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.5);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
}

@media(max-width:768px) {
    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

/* ─── FOOTER BOTTOM ─── */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.3px;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.3px;
    padding: 0;
    transition: color 0.2s;
}

.footer-legal-link:hover {
    color: var(--blue-light);
}

.footer-legal-sep {
    color: rgba(255, 255, 255, 0.22);
}

@media(max-width:768px) {
    nav {
        top: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .footer-legal-links {
        flex-wrap: nowrap;
        gap: 12px;
    }
    
}

@media screen and (min-device-width: 376px) and (max-device-width: 767px) { 
    nav {
        top: 1rem;
        position: fixed;
    }

    .hero {
        padding-top: 16vh;
    }

    .hero-scroll {
        display: none;
    }

    .footer-legal-links {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        align-items: center;
        justify-content: center;
    }

    .footer-legal-links > :last-child {
        grid-column: 1fr;
        justify-self: center;
    }

    .footer-legal-sep {
        display: none;
    }
}

@media(max-width:375px) {
    .lc-cost-col {
        display: none;
    }
}