:root {
    --navy: #1E3264;
    --navy-dark: #162550;
    --navy-mid: #243d7a;
    --gold: #F0C04A;
    --gold-dark: #d4a832;
    --gold-soft: rgba(240, 192, 74, 0.12);
    --gold-line: rgba(240, 192, 74, 0.35);
    --white: #ffffff;
    --off: #F4F6FB;
    --ink: #0F1929;
    --muted: #5a6a8a;
    --border: rgba(30, 50, 100, 0.10);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── PROGRESS BAR ── */
#prog-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 400;
    height: 3px;
    background: rgba(240, 192, 74, 0.18);
}

#prog-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    box-shadow: 0 0 14px rgba(240, 192, 74, 0.8);
    transition: width 0.08s linear;
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 3px;
    left: 0;
    right: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 72px;
    background: var(--navy);
    transition: padding 0.4s var(--ease), box-shadow 0.4s;
}

nav.compact {
    padding: 12px 72px;
    box-shadow: 0 4px 28px rgba(14, 25, 56, 0.35);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-text {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--white);
}

.nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 0.74rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.25s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 10px 22px !important;
    border-radius: 3px !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    transition: background 0.25s, transform 0.25s var(--ease) !important;
}

.nav-cta:hover {
    background: #ffd15e !important;
    transform: translateY(-1px) !important;
    color: var(--navy) !important;
}

/* ── SHARED ── */
.section {
    padding: 100px 72px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.67rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.eyebrow-line {
    width: 26px;
    height: 1px;
    background: var(--gold-line);
    flex-shrink: 0;
}

.heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 300;
    line-height: 1.18;
    letter-spacing: -0.01em;
    color: var(--navy);
}

.heading em {
    font-style: italic;
    color: var(--gold-dark);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.77rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 3px;
    transition: background 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.btn-gold:hover {
    background: #ffd15e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(240, 192, 74, 0.4);
}

.btn-navy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--white);
    font-size: 0.77rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 3px;
    transition: background 0.3s, transform 0.3s var(--ease);
}

.btn-navy:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
}

/* ══════════════════════ 1. HERO ══════════════════════ */
.hero {
    min-height: 100vh;
    background: var(--navy);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 130px 72px 90px;
    position: relative;
    overflow: hidden;
}

/* diagonal gold slice */
.hero::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(160deg, #243d7a 0%, #1a2e5c 100%);
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

/* glowing gold orb */
.hero::after {
    content: '';
    position: absolute;
    right: 8%;
    top: 10%;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 192, 74, 0.14) 0%, transparent 68%);
    pointer-events: none;
}

/* gold accent bar top */
.hero-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(240, 192, 74, 0.2) 60%, transparent 100%);
}

.hero-left {
    position: relative;
    z-index: 1;
    padding-right: 48px;
}

.hero-right {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.67rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.7s 0.2s var(--ease) forwards;
}

.hero-tag-line {
    width: 26px;
    height: 1px;
    background: rgba(240, 192, 74, 0.4);
}

.hero-h1 {
    font-family: var(--serif);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--white);
    opacity: 0;
    animation: fadeUp 0.8s 0.35s var(--ease) forwards;
}

.hero-h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-desc {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 400px;
    margin: 24px 0 40px;
    opacity: 0;
    animation: fadeUp 0.7s 0.5s var(--ease) forwards;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s 0.62s var(--ease) forwards;
}

.btn-ghost-white {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 13px 22px;
    border-radius: 3px;
    transition: color 0.25s, border-color 0.25s;
}

.btn-ghost-white:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
}

/* Hero card */
.hero-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 36px 32px;
    backdrop-filter: blur(16px);
    width: 100%;
    max-width: 340px;
    opacity: 0;
    animation: fadeUp 0.9s 0.45s var(--ease) forwards;
}

.hero-card-label {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 26px;
}

.metric-stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.metric-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.metric-bar {
    width: 3px;
    border-radius: 2px;
    align-self: stretch;
    min-height: 42px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.metric-row.on .metric-bar {
    background: var(--gold);
}

.metric-num {
    font-family: var(--serif);
    font-size: 2.1rem;
    font-weight: 300;
    line-height: 1;
    color: var(--white);
    letter-spacing: -0.02em;
}

.metric-row.on .metric-num {
    color: var(--gold);
}

.metric-lbl {
    font-size: 0.73rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 3px;
    line-height: 1.4;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pill {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(240, 192, 74, 0.12);
    border: 1px solid rgba(240, 192, 74, 0.25);
    padding: 5px 12px;
    border-radius: 50px;
}

/* Strip */
.hero-strip {
    grid-column: 1 / -1;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    opacity: 0;
    animation: fadeUp 0.7s 0.8s var(--ease) forwards;
}

.strip-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 0 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.strip-item:first-child {
    padding-left: 0;
}

.strip-item:last-child {
    border-right: none;
}

.strip-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(240, 192, 74, 0.12);
    border: 1px solid rgba(240, 192, 74, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.strip-txt strong {
    display: block;
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--white);
}

.strip-txt span {
    font-size: 0.76rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* ══════════════════════ 2. WHY IT FEELS HARD ══════════════════════ */
/* Gold top border + off-white bg for contrast against navy hero */
.problem {
    background: var(--off);
    border-top: 4px solid var(--gold);
}

.prob-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.prob-h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 2.9rem);
    font-weight: 300;
    line-height: 1.18;
    color: var(--navy);
}

.prob-h2 em {
    font-style: italic;
    color: var(--gold-dark);
}

.prob-pull {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 300;
    font-style: italic;
    color: var(--muted);
    line-height: 1.7;
    margin-top: 26px;
    padding-left: 18px;
    border-left: 3px solid var(--gold);
}

.prob-pull strong {
    font-style: normal;
    color: var(--navy);
    font-weight: 400;
}

.prob-tagline {
    margin-top: 32px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.prob-tagline .sep {
    color: var(--gold);
}

.pain-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid transparent;
    border-radius: 4px;
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
    transition: border-left-color 0.3s, color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
    cursor: default;
}

.pain-item:hover {
    border-left-color: var(--gold);
    color: var(--navy);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(30, 50, 100, 0.07);
}

.pain-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 8px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.pain-item:hover .pain-dot {
    opacity: 1;
}

/* ══════════════════════ 3. PROVEN SYSTEM ══════════════════════ */
/* Navy background — strong brand */
.system {
    background: var(--navy);
}

.system-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
}

.system-top-right {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    max-width: 300px;
    line-height: 1.8;
    text-align: right;
}

.system .eyebrow {
    color: var(--gold);
}

.system .eyebrow .eyebrow-line {
    background: rgba(240, 192, 74, 0.3);
}

.system .heading {
    color: var(--white);
}

.system .heading em {
    color: var(--gold);
    font-style: italic;
}

.steps-row {
    display: flex;
    align-items: stretch;
}

.step-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 38px 28px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: background 0.35s, transform 0.35s var(--ease), border-color 0.35s;
}

.step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s var(--ease);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(240, 192, 74, 0.25);
}

.step-card:hover::after {
    transform: scaleX(1);
}

.step-num {
    font-family: var(--serif);
    font-size: 3.8rem;
    font-weight: 300;
    line-height: 1;
    color: rgba(255, 255, 255, 0.07);
    letter-spacing: -0.04em;
    margin-bottom: 28px;
    transition: color 0.3s;
}

.step-card:hover .step-num {
    color: rgba(240, 192, 74, 0.2);
}

.step-phase {
    font-size: 0.61rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.step-title {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 50px;
}

.step-arrow svg {
    transition: transform 0.3s var(--ease);
    opacity: 0.7;
}

.step-arrow:hover svg {
    transform: scale(1.18) translateX(2px);
    opacity: 1;
}

.flow-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 36px;
    padding: 18px 28px;
    background: rgba(240, 192, 74, 0.07);
    border: 1px solid rgba(240, 192, 74, 0.15);
    border-radius: 6px;
}

.flow-chip {
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.flow-chip.hi {
    color: var(--gold);
}

.flow-sep {
    color: var(--gold);
    font-size: 0.75rem;
    opacity: 0.6;
}

/* ══════════════════════ 4. SERVICES ══════════════════════ */
.services {
    background: var(--white);
}

.svc-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 52px;
    align-items: end;
}

.svc-subtext {
    font-size: 0.93rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.8;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.svc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 34px 28px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: box-shadow 0.35s, transform 0.35s var(--ease), border-color 0.35s;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.svc-card:hover {
    box-shadow: 0 16px 48px rgba(30, 50, 100, 0.10);
    transform: translateY(-4px);
    border-color: rgba(240, 192, 74, 0.3);
}

.svc-card:hover::before {
    transform: scaleX(1);
}

.svc-card.wide {
    grid-column: span 2;
}

.svc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.svc-name {
    font-family: var(--serif);
    font-size: 1.22rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 10px;
}

.svc-desc {
    font-size: 0.83rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
}

/* Number badge */
.svc-num {
    position: absolute;
    top: 22px;
    right: 22px;
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--off);
    line-height: 1;
    letter-spacing: -0.03em;
    pointer-events: none;
    transition: color 0.35s;
}

.svc-card:hover .svc-num {
    color: rgba(240, 192, 74, 0.1);
}

/* ══════════════════════ 5. CASE STUDIES ══════════════════════ */
/* Gold bg section for variety */
.cases {
    background: var(--gold);
}

.cases .eyebrow {
    color: var(--navy);
}

.cases .eyebrow .eyebrow-line {
    background: rgba(30, 50, 100, 0.25);
}

.cases .heading {
    color: var(--navy);
}

.cases-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.link-arr {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(30, 50, 100, 0.25);
    padding: 9px 18px;
    border-radius: 3px;
    transition: background 0.25s, gap 0.3s var(--ease);
}

.link-arr:hover {
    background: rgba(30, 50, 100, 0.08);
    gap: 13px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.case-card {
    background: var(--white);
    border: 1px solid rgba(30, 50, 100, 0.08);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    transition: box-shadow 0.35s, transform 0.35s var(--ease);
}

.case-card:hover {
    box-shadow: 0 24px 60px rgba(14, 25, 56, 0.22);
    transform: translateY(-6px);
}

.case-img {
    position: relative;
    height: 192px;
    overflow: hidden;
    background: var(--navy);
}

.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease);
}

.case-card:hover .case-img img {
    transform: scale(1.06);
}

.case-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 50, 100, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.case-card:hover .case-overlay {
    opacity: 1;
}

.case-read {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(240, 192, 74, 0.5);
    padding: 9px 20px;
    border-radius: 3px;
}

.case-body {
    padding: 26px 24px;
}

.case-tags {
    display: flex;
    gap: 7px;
    margin-bottom: 14px;
}

.case-tag {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold-soft);
    border: 1px solid rgba(240, 192, 74, 0.4);
    padding: 3px 10px;
    border-radius: 3px;
}

.case-title {
    font-family: var(--serif);
    font-size: 1.12rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 8px;
}

.case-exc {
    font-size: 0.81rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.77rem;
    color: var(--navy);
    font-weight: 500;
}

/* ══════════════════════ 6. TRUSTED BY ══════════════════════ */
.trusted {
    background: var(--navy);
    padding: 80px 72px;
}

.trusted-inner {
    text-align: center;
}

.trusted-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.67rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.trusted-eyebrow .eyebrow-line {
    background: rgba(240, 192, 74, 0.3);
}

.trusted-h2 {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 44px;
}

.logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.logo-cell {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 18px 28px;
    min-width: 128px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, background 0.3s;
}

.logo-cell:hover {
    border-color: rgba(240, 192, 74, 0.4);
    background: rgba(240, 192, 74, 0.07);
}

.logo-cell img {
    max-height: 34px;
    max-width: 100px;
    width: auto;
    filter: grayscale(100%) brightness(1.8) opacity(0.55);
    transition: filter 0.3s;
    object-fit: contain;
}

.logo-cell:hover img {
    filter: grayscale(0%) brightness(1) opacity(1);
}

/* ══════════════════════ 7. TESTIMONIALS ══════════════════════ */
.testi {
    background: var(--off);
}

.testi-head {
    margin-bottom: 48px;
}

.testi-sub {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--muted);
    margin-top: 8px;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 34px 30px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.35s, border-color 0.35s, transform 0.35s var(--ease);
}

.testi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.45s var(--ease);
}

.testi-card:hover {
    box-shadow: 0 12px 40px rgba(30, 50, 100, 0.09);
    border-color: rgba(240, 192, 74, 0.3);
    transform: translateY(-3px);
}

.testi-card:hover::before {
    height: 100%;
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.testi-stars span {
    color: var(--gold);
    font-size: 0.9rem;
}

.testi-quote {
    font-family: var(--serif);
    font-size: 1.07rem;
    font-weight: 300;
    font-style: italic;
    color: var(--ink);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testi-rule {
    width: 28px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 18px;
}

.testi-av-row {
    display: flex;
    align-items: center;
    gap: 13px;
}

.testi-av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
}

.testi-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

.testi-role {
    font-size: 0.73rem;
    font-weight: 300;
    color: var(--muted);
    margin-top: 2px;
}

/* ══════════════════════ 8. CTA ══════════════════════ */
.cta-sec {
    background: var(--navy);
}

.cta-sec .eyebrow {
    color: var(--gold);
}

.cta-sec .eyebrow .eyebrow-line {
    background: rgba(240, 192, 74, 0.3);
}

.cta-sec .heading {
    color: var(--white);
}

.cta-sec .heading em {
    color: var(--gold);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-checks {
    list-style: none;
    margin-top: 28px;
}

.cta-check {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s, padding-left 0.35s var(--ease);
    cursor: default;
}

.cta-check:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-check:hover {
    color: var(--white);
    padding-left: 9px;
}

.chk {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(240, 192, 74, 0.12);
    border: 1px solid rgba(240, 192, 74, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 1px;
}

.cta-panel {
    background: var(--white);
    border-radius: 14px;
    padding: 48px 44px;
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), rgba(240, 192, 74, 0.1));
}

.cta-panel-h {
    font-family: var(--serif);
    font-size: 1.9rem;
    font-weight: 300;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 10px;
}

.cta-panel-sub {
    font-size: 0.86rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 30px;
    max-width: 280px;
}

.contact-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.contact-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 0.79rem;
    font-weight: 300;
    color: var(--muted);
    transition: border-color 0.3s, color 0.3s;
}

.contact-chip:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.c-ico {
    width: 26px;
    height: 26px;
    border-radius: 5px;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.select-note {
    margin-top: 20px;
    font-size: 0.73rem;
    font-weight: 300;
    color: var(--muted);
    font-style: italic;
}

/* ══════════════════════ FOOTER ══════════════════════ */
footer {
    background: var(--navy-dark);
    border-top: 3px solid var(--gold);
    padding: 68px 72px 40px;
}

.foot-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
}

.foot-logo {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    display: block;
    text-decoration: none;
    margin-bottom: 14px;
}

.foot-logo span {
    color: var(--gold);
}

.foot-desc {
    font-size: 0.83rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.8;
    max-width: 290px;
}

.foot-col h5 {
    font-size: 0.63rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    opacity: 0.8;
}

.foot-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.foot-col a {
    font-size: 0.83rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.25s;
}

.foot-col a:hover {
    color: var(--gold);
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.foot-copy {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.22);
}

.foot-legal {
    display: flex;
    gap: 22px;
}

.foot-legal a {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.22);
    text-decoration: none;
    transition: color 0.25s;
}

.foot-legal a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* ══════════════════════ RESPONSIVE ══════════════════════ */
@media (max-width: 1100px) {

    .section,
    nav,
    .hero,
    .trusted,
    footer {
        padding-left: 40px;
        padding-right: 40px;
    }

    nav.compact {
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero {
        padding: 120px 40px 70px;
    }

    .hero-strip {
        flex-direction: column;
        gap: 14px;
    }

    .strip-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 14px 0 !important;
    }

    .strip-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero::before {
        display: none;
    }

    .hero-right {
        justify-content: flex-start;
        margin-top: 40px;
    }

    .hero-strip {
        grid-column: 1;
    }

    .prob-grid,
    .svc-head,
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .svc-grid {
        grid-template-columns: 1fr;
    }

    .svc-card.wide {
        grid-column: span 1;
    }

    .cases-grid,
    .testi-grid {
        grid-template-columns: 1fr;
    }

    .foot-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .system-top {
        flex-direction: column;
        gap: 20px;
    }

    .system-top-right {
        text-align: left;
    }

    .steps-row {
        flex-direction: column;
    }

    .step-arrow {
        width: 100%;
        height: 44px;
    }

    .step-arrow svg {
        transform: rotate(90deg);
    }
}

@media (max-width: 620px) {
    .nav-links {
        display: none;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }
}