/* ============================================================
   ZIRH.AI® — shared stylesheet
   ============================================================ */

:root {
    --bg: #F4F1E9;
    --bg-soft: #E7EBF0;
    --bg-dark: #0B1E33;
    --bg-dark-2: #061320;
    --ink: #0B1E33;
    --ink-2: #5B6675;
    --muted: #5B6675;
    --muted-2: #8a93a3;
    --line: #CDD4DD;
    --line-dark: #16324A;
    --brand: #C8973C;
    --brand-ink: #E0B45C;
    --brand-soft: rgba(200, 151, 60, 0.12);
    --radius: 14px;
    --radius-sm: 10px;
    --maxw: 1180px;
    --shadow: 0 1px 2px rgba(11, 15, 26, .04), 0 8px 30px rgba(11, 15, 26, .06);
    --shadow-lg: 0 30px 60px -20px rgba(11, 15, 26, .18);

    --font-display: 'Noto Sans Display', system-ui, -apple-system, sans-serif;
    --font-body: 'Noto Sans', system-ui, -apple-system, sans-serif;
    --font-mono: 'Noto Sans Mono', 'SF Mono', 'Fira Code', monospace;
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

::selection {
    background: var(--brand);
    color: #fff;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 2rem;
}

.tight {
    max-width: 980px;
}

/* ---------------- Header / Nav ---------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(244, 241, 233, .84);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 68px;
}

.brand {
    display: flex;
    align-items: center;
    gap: .55rem;
    text-decoration: none;
}

.brand-logo {
    height: 32px;
    width: auto;
    display: block;
}

.brand-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.18rem;
    letter-spacing: .04em;
    color: var(--ink);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .35rem;
    margin-left: .5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .55rem .7rem;
    font-size: .9rem;
    font-weight: 500;
    color: var(--ink-2);
    border-radius: 8px;
    transition: color .15s, background .15s;
    cursor: pointer;
    font-family: var(--font-body);
}

.nav-link:hover,
.nav-item:hover .nav-link,
.nav-link.active {
    color: var(--ink);
    background: var(--bg-soft);
}

.nav-link svg {
    width: 11px;
    height: 11px;
    opacity: .5;
    transition: transform .2s;
}

.nav-item:hover .nav-link svg {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: .5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .18s, transform .18s, visibility .18s;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: .6rem .7rem;
    border-radius: 8px;
    transition: background .14s;
}

.dropdown a:hover {
    background: var(--bg-soft);
}

.dd-title {
    font-size: .875rem;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-body);
}

.dd-sub {
    font-size: .78rem;
    color: var(--muted);
    margin-top: .1rem;
    font-family: var(--font-body);
}

.dd-title .soon {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--brand);
    background: var(--brand-soft);
    padding: .12rem .4rem;
    border-radius: 5px;
    font-family: var(--font-mono);
}

.nav-spacer {
    flex: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-weight: 600;
    font-size: .9rem;
    padding: .62rem 1.05rem;
    border-radius: 10px;
    transition: transform .12s, box-shadow .15s, background .15s, color .15s;
    white-space: nowrap;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 6px 18px -6px rgba(200, 151, 60, .45);
}

.btn-primary:hover {
    background: var(--brand-ink);
    transform: translateY(-1px);
    color: #0B1E33;
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}

.btn-ghost:hover {
    background: var(--bg-soft);
}

.btn-light {
    background: #fff;
    color: var(--ink);
}

.btn-light:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, .25);
    color: #fff;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, .08);
}

.btn svg {
    width: 15px;
    height: 15px;
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-toggle svg {
    width: 20px;
    height: 20px;
}

/* ---------------- Generic layout ---------------- */
section {
    position: relative;
}

.section {
    padding: 5.5rem 0;
}

.section-sm {
    padding: 4rem 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 1.1rem;
    font-family: var(--font-body);
}

.eyebrow::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--brand);
    display: inline-block;
}

.section-head {
    max-width: 720px;
    margin-bottom: 3rem;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head.center .eyebrow {
    justify-content: center;
}

h1,
h2,
h3,
h4 {
    letter-spacing: -.02em;
    line-height: 1.12;
    font-weight: 700;
    font-family: var(--font-display);
}

.h2 {
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}

.h3 {
    font-size: 1.18rem;
    letter-spacing: -.01em;
}

.lead {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.7;
    margin-top: 1rem;
    font-family: var(--font-body);
}

.divider {
    border: none;
    border-top: 1px solid var(--line);
}

/* ---------------- Hero ---------------- */
.hero {
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-dark {
    background: radial-gradient(1200px 600px at 75% -10%, #16324A 0%, var(--bg-dark) 55%);
    color: #fff;
}

.hero-dark .lead {
    color: #8a93a3;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(900px 500px at 70% 0%, #000 0%, transparent 75%);
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(2.3rem, 5.4vw, 3.85rem);
    letter-spacing: -.035em;
    max-width: 16ch;
}

.hero .accent {
    color: var(--brand);
}

.hero-dark .accent {
    color: var(--brand-ink);
}

.hero-sub {
    margin-top: 1.6rem;
    font-size: 1.12rem;
    color: var(--muted);
    max-width: 56ch;
    line-height: 1.7;
    font-family: var(--font-body);
}

.hero-dark .hero-sub {
    color: #8a93a3;
}

.hero-cta {
    margin-top: 2.4rem;
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em;
    padding: .4rem .8rem;
    border-radius: 100px;
    background: rgba(224, 180, 92, .12);
    border: 1px solid rgba(224, 180, 92, .3);
    color: var(--brand-ink);
    margin-bottom: 1.6rem;
    font-family: var(--font-body);
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-ink);
    box-shadow: 0 0 0 4px rgba(224, 180, 92, .2);
}

/* ---------------- Cards & grids ---------------- */
.grid {
    display: grid;
    gap: 1.25rem;
}

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

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

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

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.6rem;
    transition: transform .18s, box-shadow .18s, border-color .18s;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: #bcc3ce;
}

.card-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-soft);
    color: var(--brand);
    margin-bottom: 1.1rem;
}

.card-icon svg {
    width: 21px;
    height: 21px;
}

.card h3 {
    font-size: 1.05rem;
    margin-bottom: .5rem;
}

.card p {
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.65;
    font-family: var(--font-body);
}

.card ul {
    list-style: none;
    margin-top: .9rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.card ul li {
    position: relative;
    padding-left: 1.3rem;
    font-size: .875rem;
    color: var(--ink-2);
    line-height: 1.5;
    font-family: var(--font-body);
}

.card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .5em;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: var(--brand);
}

/* Feature card (big, attention) */
.feature-card {
    background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.8rem;
    position: relative;
    overflow: hidden;
    transition: transform .18s, box-shadow .18s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-card .num {
    font-size: .8rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: .1em;
    margin-bottom: 1.4rem;
    font-family: var(--font-mono);
}

.feature-card h3 {
    font-size: 1.32rem;
    margin-bottom: .7rem;
    letter-spacing: -.02em;
}

.feature-card p {
    font-size: .96rem;
    color: var(--muted);
    line-height: 1.65;
    font-family: var(--font-body);
}

/* Why grid (3x2 with icons) */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.why-cell {
    background: #fff;
    padding: 2rem 1.7rem;
    transition: background .16s;
}

.why-cell:hover {
    background: var(--bg-soft);
}

.why-cell .card-icon {
    margin-bottom: 1.2rem;
}

.why-cell h3 {
    font-size: 1.05rem;
    margin-bottom: .55rem;
}

.why-cell p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.62;
    font-family: var(--font-body);
}

/* Regulatory rows */
.reg-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reg-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1.6rem;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem 1.7rem;
    transition: border-color .16s, box-shadow .16s;
}

.reg-row:hover {
    border-color: #bcc3ce;
    box-shadow: var(--shadow);
}

.reg-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    border-radius: var(--radius-sm);
    background: var(--bg-dark);
    color: #fff;
    font-weight: 700;
    letter-spacing: .02em;
    text-align: center;
    padding: .5rem;
    font-size: .82rem;
    line-height: 1.2;
}

.reg-badge span {
    display: block;
}

.reg-badge .reg-sub {
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .12em;
    color: var(--brand-ink);
    margin-top: .25rem;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

.reg-row p {
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.62;
    font-family: var(--font-body);
}

.reg-row h3 {
    font-size: 1.02rem;
    margin-bottom: .35rem;
}

/* Module list (compact items) */
.modules {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.module {
    background: #fff;
    padding: 1.5rem 1.6rem;
    transition: background .15s;
}

.module:hover {
    background: var(--bg-soft);
}

.module h3 {
    font-size: 1rem;
    margin-bottom: .45rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.module h3 .mi {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--brand-soft);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.module h3 .mi svg {
    width: 15px;
    height: 15px;
}

.module p {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.6;
    font-family: var(--font-body);
}

/* Steps (numbered process) */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.step {
    background: #fff;
    padding: 1.7rem 1.5rem;
}

.step-n {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-family: var(--font-mono);
}

.step h3 {
    font-size: 1rem;
    margin-bottom: .5rem;
}

.step p {
    font-size: .87rem;
    color: var(--muted);
    line-height: 1.6;
    font-family: var(--font-body);
}

/* Powered-by / chips */
.chips {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.chip-row {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1.1rem 1.3rem;
}

.chip-row .tag {
    flex-shrink: 0;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--brand);
    background: var(--brand-soft);
    padding: .35rem .6rem;
    border-radius: 6px;
    white-space: nowrap;
    font-family: var(--font-mono);
}

.chip-row p {
    font-size: .9rem;
    color: var(--muted);
    font-family: var(--font-body);
}

.chip-row p strong {
    color: var(--ink);
    font-weight: 600;
}

/* Outcomes list */
.outcomes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .9rem;
}

.outcome {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    font-size: .95rem;
    color: var(--ink-2);
    line-height: 1.5;
    font-family: var(--font-body);
}

.outcome svg {
    width: 20px;
    height: 20px;
    color: var(--brand);
    flex-shrink: 0;
    margin-top: .1rem;
}

/* Advisory service block */
.svc {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
    background: #fff;
}

.svc-lead {
    font-size: 1.02rem;
    color: var(--ink-2);
    line-height: 1.6;
    max-width: 80ch;
    margin-bottom: 1.6rem;
    font-weight: 500;
    font-family: var(--font-body);
}

.svc-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.2rem;
    align-items: stretch;
}

.svc-box {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1.4rem;
}

.svc-box h4 {
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--brand);
    margin-bottom: .9rem;
    font-family: var(--font-body);
}

.svc-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.svc-box li {
    position: relative;
    padding-left: 1.25rem;
    font-size: .9rem;
    color: var(--ink-2);
    line-height: 1.5;
    font-family: var(--font-body);
}

.svc-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
}

.svc-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-2);
}

.svc-arrow svg {
    width: 34px;
    height: 34px;
}

/* Sector index grid */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}

.sector-card {
    display: block;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.6rem;
    background: #fff;
    transition: transform .16s, box-shadow .16s, border-color .16s;
}

.sector-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: #bcc3ce;
}

.sector-card .card-icon {
    margin-bottom: 1rem;
}

.sector-card h3 {
    font-size: 1.08rem;
    margin-bottom: .4rem;
}

.sector-card p {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.6;
    font-family: var(--font-body);
}

.sector-card .more {
    margin-top: 1rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-family: var(--font-body);
}

/* Resource flow / carousel */
.flow {
    position: relative;
}

.flow-track {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: .4rem;
    margin: -.4rem;
    scrollbar-width: none;
}

.flow-track::-webkit-scrollbar {
    display: none;
}

.flow-card {
    scroll-snap-align: start;
    flex: 0 0 340px;
    max-width: 340px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .16s, box-shadow .16s;
}

.flow-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.flow-card .fc-top {
    height: 120px;
    background: linear-gradient(135deg, #16324A, var(--bg-dark));
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 1.1rem;
}

.flow-card .fc-top .kind {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand-ink);
    background: rgba(224, 180, 92, .14);
    border: 1px solid rgba(224, 180, 92, .28);
    padding: .3rem .6rem;
    border-radius: 6px;
    font-family: var(--font-mono);
}

.flow-card .fc-top::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 26px 26px;
}

.flow-card .fc-body {
    padding: 1.3rem;
}

.flow-card h3 {
    font-size: 1.02rem;
    margin-bottom: .5rem;
}

.flow-card p {
    font-size: .87rem;
    color: var(--muted);
    line-height: 1.6;
    font-family: var(--font-body);
}

.flow-nav {
    display: flex;
    gap: .5rem;
    margin-top: 1.3rem;
}

.flow-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .14s, border-color .14s;
}

.flow-btn:hover {
    background: var(--bg-soft);
    border-color: #bcc3ce;
}

.flow-btn svg {
    width: 18px;
    height: 18px;
}

/* Soft band / CTA band */
.band {
    background: var(--bg-soft);
}

.cta-band {
    background: radial-gradient(900px 500px at 80% 0%, #16324A 0%, var(--bg-dark) 60%);
    color: #fff;
    border-radius: 22px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}

.cta-band h2 {
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    max-width: 20ch;
}

.cta-band p {
    color: #8a93a3;
    margin-top: 1rem;
    max-width: 52ch;
    font-size: 1.02rem;
    font-family: var(--font-body);
}

.cta-band .hero-cta {
    margin-top: 2rem;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(700px 400px at 80% 0%, #000, transparent 70%);
}

.cta-band>* {
    position: relative;
}

/* Stat row */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stat {
    background: #fff;
    padding: 1.8rem 1.5rem;
    text-align: center;
}

.stat .v {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -.02em;
    font-family: var(--font-mono);
    color: var(--brand);
}

.stat .l {
    font-size: .82rem;
    color: var(--muted);
    margin-top: .35rem;
    font-family: var(--font-body);
}

/* Generic prose for company/resources */
.prose {
    max-width: 740px;
}

.prose p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.1rem;
    font-size: 1.02rem;
    font-family: var(--font-body);
}

.prose p strong {
    color: var(--ink);
}

.list-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.6rem;
    background: #fff;
}

.list-card h3 {
    font-size: 1.05rem;
    margin-bottom: .4rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.list-card p {
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.65;
    font-family: var(--font-body);
}

.tag-soon {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brand);
    background: var(--brand-soft);
    padding: .18rem .45rem;
    border-radius: 5px;
    font-family: var(--font-mono);
}

/* ---------------- Footer ---------------- */
.site-footer {
    background: var(--bg-dark);
    color: #8a93a3;
    padding: 4rem 0 2rem;
    margin-top: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--line-dark);
}

.footer-brand .brand {
    color: #fff;
    font-size: 1.25rem;
}

.footer-brand .brand-text {
    color: #fff;
}

.footer-brand p {
    margin-top: 1rem;
    font-size: .9rem;
    color: #7c8699;
    max-width: 30ch;
    line-height: 1.65;
    font-family: var(--font-body);
}

.footer-col h4 {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    font-size: .88rem;
    color: #8a93a8;
    padding: .3rem 0;
    transition: color .14s;
    font-family: var(--font-body);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.8rem;
    font-size: .82rem;
    color: #6b7488;
    gap: 1rem;
    flex-wrap: wrap;
    font-family: var(--font-body);
}

.footer-bottom .reg {
    color: #8a93a8;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 920px) {

    .nav-links,
    .nav .btn {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .grid-3,
    .grid-4,
    .why-grid,
    .sector-grid,
    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .svc-flow {
        grid-template-columns: 1fr;
    }

    .svc-arrow {
        transform: rotate(90deg);
    }

    .reg-row {
        grid-template-columns: 110px 1fr;
        gap: 1.1rem;
    }
}

@media (max-width: 680px) {
    .wrap {
        padding: 0 1.25rem;
    }

    .section {
        padding: 3.8rem 0;
    }

    .hero {
        padding: 4rem 0 3.5rem;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .why-grid,
    .sector-grid,
    .steps,
    .modules,
    .outcomes,
    .stats {
        grid-template-columns: 1fr;
    }

    .cta-band {
        padding: 2.2rem 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 1.8rem;
    }

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

    .reg-badge {
        width: 130px;
    }
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 68px 0 0;
    background: #fff;
    z-index: 99;
    overflow-y: auto;
    padding: 1.2rem 1.5rem 3rem;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu .mm-group {
    border-bottom: 1px solid var(--line);
    padding: .4rem 0;
}

.mobile-menu .mm-head {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted-2);
    padding: .9rem 0 .5rem;
    font-weight: 600;
    font-family: var(--font-body);
}

.mobile-menu a {
    display: block;
    padding: .65rem 0;
    font-size: 1rem;
    color: var(--ink);
    font-weight: 500;
    font-family: var(--font-body);
}

.mobile-menu .mm-cta {
    margin-top: 1.5rem;
}

.mobile-menu .btn {
    width: 100%;
}

body.menu-open {
    overflow: hidden;
}

/* anchor offset helper */
.anchor {
    position: relative;
    top: -84px;
    visibility: hidden;
}
