/* ─── CSS Variables ─── */
:root {
    --navy: #0D1B6A;
    --teal: #7ACED3;
    --crimson: #8F3317;
    --amber: #E8A63D;
    --navy-deep: #091452;
    --navy-mid: #1E2E7A;
    --teal-light: #A8E4E9;
    --teal-dark: #4ABBC4;
    --amber-light: #F2C06A;
    --crimson-light: #B84420;
    --brand-muted: #5E6A8A;
    --brand-soft: #F0F3FF;
    --brand-white: #FAFBFF;
    --brand-line: #D8DEEF;
    --brand-orange: var(--amber);
    --brand-orange-light: var(--amber-light);
    --brand-ink: var(--navy);
    --brand-mid: var(--navy-mid);
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--brand-white);
    color: var(--navy);
    overflow-x: hidden;
    line-height: 1.7;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    line-height: 1.1;
}

h1 {
    font-weight: 900;
}

h2 {
    font-weight: 800;
}

h3 {
    font-weight: 700;
}

.label-tag {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.label-tag::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--amber);
    flex-shrink: 0;
}

.label-tag.light {
    color: var(--teal-light);
}

.label-tag.light::before {
    background: var(--teal-light);
}

/* ─── Buttons ─── */
.btn-primary-ng {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand-orange);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    padding: 16px 32px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s var(--ease-expo);
    position: relative;
    overflow: hidden;
}

.btn-primary-ng::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(-110%);
    transition: transform 0.4s var(--ease-expo);
}

.btn-primary-ng:hover::after {
    transform: translateX(0);
}

.btn-primary-ng:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(232, 166, 61, 0.4);
}

.btn-primary-ng .btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-expo);
}

.btn-primary-ng:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-primary-ng.large {
    padding: 20px 44px;
    font-size: 0.95rem;
}

.btn-ghost-ng {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--brand-ink);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    padding: 15px 30px;
    border-radius: 4px;
    border: 1.5px solid var(--brand-line);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s var(--ease-expo);
}

.btn-ghost-ng:hover {
    border-color: var(--brand-ink);
    background: var(--brand-ink);
    color: #fff;
    transform: translateY(-2px);
}

.btn-ghost-ng.on-dark {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost-ng.on-dark:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ─── NAV ─── */
.ng-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(250, 251, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.ng-nav.scrolled {
    border-color: var(--brand-line);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.ng-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.ng-logo .logo-wordmark {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #0D1B6A;
}

.ng-logo .logo-wordmark span {
    color: #8F3317;
}

.ng-logo .logo-tagline {
    font-family: var(--font-head);
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7ACED3;
    margin-top: 3px;
    display: block;
}

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

.ng-nav-links a {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--brand-mid);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

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

.ng-nav-links a:hover {
    color: var(--brand-ink);
}

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

.ng-nav-links a.active {
    color: var(--brand-ink);
}

/* ─── Text highlight ─── */
.text-hl {
    position: relative;
    display: inline;
}

.text-hl::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--amber);
    border-radius: 2px;
    transition: width 0.9s var(--ease-expo);
}

.text-hl.on {
    width: 100% !important;
}

.text-hl.on::after {
    width: 100%;
}

/* ═══════════════════════════════════════════
       SECTION 1: STRATEGIC HEADER
    ═══════════════════════════════════════════ */
.svc-hero {
    min-height: 88vh;
    padding-top: 72px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--brand-white);
}

.svc-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--brand-line) 1px, transparent 1px), linear-gradient(90deg, var(--brand-line) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
}

.svc-hero-glow-r {
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(232, 166, 61, 0.10), transparent 70%);
    pointer-events: none;
}

.svc-hero-glow-l {
    position: absolute;
    left: -200px;
    bottom: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(74, 187, 196, 0.07), transparent 70%);
    pointer-events: none;
}

.svc-hero-headline {
    font-size: clamp(2.8rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--navy);
    margin-bottom: 24px;
}

.svc-hero-headline em {
    font-style: normal;
    color: var(--amber);
    position: relative;
}

.svc-hero-headline em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--amber);
    opacity: 0.22;
    border-radius: 2px;
}

.svc-hero-sub {
    font-size: 1.05rem;
    color: var(--brand-muted);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 44px;
}

/* ─ 3D Pillar Diagram ─ */
.pillar-diagram {
    position: relative;
    background: var(--navy);
    border-radius: 20px;
    padding: 48px 36px 36px;
    overflow: hidden;
}

.pillar-diagram::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 187, 196, 0.12), transparent 70%);
}

.pd-label {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.pd-core {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px 24px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.pd-core-label {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 8px;
}

.pd-core-val {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: -0.03em;
}

.pd-core-val span {
    color: var(--amber);
}

.pd-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    position: relative;
    z-index: 1;
}

.pd-pillar {
    border-radius: 12px;
    padding: 18px 14px;
    text-align: center;
    border: 1px solid transparent;
    transition: transform 0.4s var(--ease-expo);
    cursor: default;
}

.pd-pillar:hover {
    transform: translateY(-4px);
}

.pd-pillar.amber {
    background: rgba(232, 166, 61, 0.12);
    border-color: rgba(232, 166, 61, 0.25);
}

.pd-pillar.teal {
    background: rgba(74, 187, 196, 0.12);
    border-color: rgba(74, 187, 196, 0.25);
}

.pd-pillar.red {
    background: rgba(143, 51, 23, 0.15);
    border-color: rgba(143, 51, 23, 0.3);
}

.pd-pillar-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.pd-pillar-name {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

.pd-pillar-verb {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pd-pillar.amber .pd-pillar-verb {
    color: var(--amber-light);
}

.pd-pillar.teal .pd-pillar-verb {
    color: var(--teal-light);
}

.pd-pillar.red .pd-pillar-verb {
    color: var(--crimson-light);
}

.pd-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px 0;
    position: relative;
    z-index: 1;
}

.pd-conn-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.pd-conn-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    white-space: nowrap;
}

/* ─ Hero pillar badges ─ */
.hero-pillar-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.hpb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hpb.amber {
    background: rgba(232, 166, 61, 0.1);
    color: var(--amber);
    border: 1px solid rgba(232, 166, 61, 0.25);
}

.hpb.teal {
    background: rgba(74, 187, 196, 0.1);
    color: var(--teal-dark);
    border: 1px solid rgba(74, 187, 196, 0.25);
}

.hpb.red {
    background: rgba(143, 51, 23, 0.08);
    color: var(--crimson);
    border: 1px solid rgba(143, 51, 23, 0.2);
}

.hpb-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
       SECTIONS 2–4: THE THREE PILLAR SECTIONS
    ═══════════════════════════════════════════ */
.pillar-section {
    padding: 120px 0;
    position: relative;
}

.pillar-section.bg-white {
    background: var(--brand-white);
}

.pillar-section.bg-navy {
    background: var(--navy);
    overflow: hidden;
}

.pillar-section.bg-soft {
    background: var(--brand-soft);
}

.pillar-section.bg-navy::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 206, 211, 0.10), transparent 70%);
}

.pillar-num-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.pillar-num-tag .pnt-num {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
}

.pillar-num-tag.amber .pnt-num {
    background: rgba(232, 166, 61, 0.15);
    color: var(--amber);
}

.pillar-num-tag.teal .pnt-num {
    background: rgba(74, 187, 196, 0.15);
    color: var(--teal-dark);
}

.pillar-num-tag.red .pnt-num {
    background: rgba(143, 51, 23, 0.12);
    color: var(--crimson-light);
}

.pillar-num-tag.amber .pnt-lbl {
    color: var(--amber);
}

.pillar-num-tag.teal .pnt-lbl {
    color: var(--teal-dark);
}

.pillar-num-tag.red .pnt-lbl {
    color: var(--crimson-light);
}

.pillar-section-headline {
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.pillar-section-headline.dark {
    color: var(--brand-ink);
}

.pillar-section-headline.light {
    color: #fff;
}

.pillar-section-sub {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.pillar-section-sub.dark {
    color: var(--brand-muted);
}

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

/* service items list */
.svc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.svc-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    border-radius: 12px;
    transition: transform 0.3s var(--ease-expo);
    cursor: default;
}

.svc-list-item:hover {
    transform: translateX(6px);
}

.svc-list-item.on-white {
    background: var(--brand-soft);
    border: 1px solid var(--brand-line);
}

.svc-list-item.on-dark {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.svc-list-item.on-soft {
    background: var(--brand-white);
    border: 1px solid var(--brand-line);
}

.sli-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.sli-icon.amber {
    background: rgba(232, 166, 61, 0.12);
}

.sli-icon.teal {
    background: rgba(74, 187, 196, 0.12);
}

.sli-icon.red {
    background: rgba(143, 51, 23, 0.10);
}

.sli-title {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: -0.01em;
}

.sli-title.dark {
    color: var(--brand-ink);
}

.sli-title.light {
    color: #fff;
}

.sli-body {
    font-size: 0.85rem;
    line-height: 1.7;
}

.sli-body.dark {
    color: var(--brand-muted);
}

.sli-body.light {
    color: rgba(255, 255, 255, 0.5);
}

/* Outcome banner */
.outcome-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    border-radius: 12px;
    margin-top: 32px;
}

.outcome-banner.amber {
    background: rgba(232, 166, 61, 0.1);
    border: 1px solid rgba(232, 166, 61, 0.25);
}

.outcome-banner.teal {
    background: rgba(74, 187, 196, 0.1);
    border: 1px solid rgba(74, 187, 196, 0.25);
}

.outcome-banner.red {
    background: rgba(143, 51, 23, 0.1);
    border: 1px solid rgba(143, 51, 23, 0.25);
}

.ob-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.ob-label {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.outcome-banner.amber .ob-label {
    color: var(--amber);
}

.outcome-banner.teal .ob-label {
    color: var(--teal-dark);
}

.outcome-banner.red .ob-label {
    color: var(--crimson-light);
}

.ob-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.outcome-banner.amber .ob-text {
    color: var(--navy);
}

.outcome-banner.teal .ob-text {
    color: rgba(255, 255, 255, 0.85);
}

.outcome-banner.red .ob-text {
    color: var(--brand-ink);
}

/* Visual card on pillar right side */
.pillar-visual-card {
    border-radius: 20px;
    padding: 36px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pillar-visual-card.amber-card {
    background: var(--brand-soft);
    border: 1px solid var(--brand-line);
}

.pillar-visual-card.dark-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pillar-visual-card.white-card {
    background: var(--brand-white);
    border: 1px solid var(--brand-line);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

/* Brand visual: website mockup */
.brand-mockup {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin-bottom: 16px;
}

.bm-topbar {
    background: var(--brand-soft);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--brand-line);
}

.bm-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.bm-body {
    padding: 20px;
}

.bm-nav {
    height: 8px;
    background: var(--brand-line);
    border-radius: 4px;
    margin-bottom: 16px;
}

.bm-hero-block {
    background: var(--navy);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 12px;
}

.bm-hero-h {
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 3px;
    margin-bottom: 8px;
    width: 70%;
}

.bm-hero-sub {
    height: 6px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 3px;
    width: 90%;
    margin-bottom: 6px;
}

.bm-hero-sub2 {
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    width: 60%;
    margin-bottom: 14px;
}

.bm-cta-btn {
    display: inline-block;
    height: 22px;
    width: 110px;
    background: var(--amber);
    border-radius: 4px;
}

.bm-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.bm-card {
    background: var(--brand-soft);
    border: 1px solid var(--brand-line);
    border-radius: 6px;
    padding: 10px;
}

.bm-card-h {
    height: 6px;
    background: var(--brand-line);
    border-radius: 3px;
    margin-bottom: 4px;
}

.bm-card-b {
    height: 4px;
    background: var(--brand-line);
    border-radius: 3px;
    width: 70%;
}

/* Brand stats */
.brand-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.bs-item {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: 10px;
    padding: 16px;
}

.bs-num {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--brand-ink);
    letter-spacing: -0.03em;
}

.bs-num span {
    color: var(--amber);
}

.bs-lbl {
    font-size: 0.72rem;
    color: var(--brand-muted);
    font-weight: 500;
    margin-top: 3px;
}

/* Media: funnel visual */
.funnel-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.funnel-step:last-child {
    margin-bottom: 0;
}

.fs-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.fs-body {
    flex: 1;
}

.fs-name {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 3px;
}

.fs-sub {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
}

.fs-num {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 800;
}

.fs-bar {
    height: 3px;
    border-radius: 2px;
    margin-top: 8px;
}

.funnel-step.s1 {
    background: rgba(232, 166, 61, 0.15);
}

.funnel-step.s2 {
    background: rgba(232, 166, 61, 0.10);
}

.funnel-step.s3 {
    background: rgba(232, 166, 61, 0.07);
}

.funnel-step.s4 {
    background: rgba(232, 166, 61, 0.05);
}

/* Tech: CRM flow */
.crm-flow-visual {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cfv-step {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--brand-soft);
    border: 1px solid var(--brand-line);
    border-radius: 10px;
    padding: 14px 18px;
    transition: border-color 0.3s, background 0.3s;
}

.cfv-step:hover {
    background: #fff;
    border-color: var(--teal-dark);
}

.cfv-num {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--teal-dark);
    width: 20px;
    flex-shrink: 0;
}

.cfv-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-ink);
    flex: 1;
}

.cfv-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(74, 187, 196, 0.12);
    color: var(--teal-dark);
    border: 1px solid rgba(74, 187, 196, 0.25);
}

.cfv-connector {
    display: flex;
    justify-content: center;
}

.cfv-connector-line {
    width: 1px;
    height: 16px;
    background: var(--brand-line);
}

/* ═══════════════════════════════════════════
       SECTION 5: SYNERGY — WHY ONE ISN'T ENOUGH
    ═══════════════════════════════════════════ */
.synergy-section {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.synergy-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 166, 61, 0.08), transparent 70%);
}

.synergy-headline {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: #fff;
    letter-spacing: -0.03em;
}

.synergy-headline em {
    font-style: normal;
    color: var(--amber-light);
}

.syn-card {
    border-radius: 16px;
    padding: 36px;
    height: 100%;
    transition: transform 0.4s var(--ease-expo);
}

.syn-card:hover {
    transform: translateY(-6px);
}

.syn-card.c1 {
    background: rgba(232, 166, 61, 0.08);
    border: 1px solid rgba(232, 166, 61, 0.2);
}

.syn-card.c2 {
    background: rgba(143, 51, 23, 0.1);
    border: 1px solid rgba(143, 51, 23, 0.25);
}

.syn-card.c3 {
    background: rgba(74, 187, 196, 0.08);
    border: 1px solid rgba(74, 187, 196, 0.2);
}

.syn-card-equation {
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    line-height: 1.4;
}

.syn-card.c1 .syn-card-equation span {
    color: var(--amber-light);
}

.syn-card.c2 .syn-card-equation span {
    color: var(--crimson-light);
}

.syn-card.c3 .syn-card-equation span {
    color: var(--teal-light);
}

.syn-card-body {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.syn-center {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.syn-center-label {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 16px;
}

.syn-center-headline {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.syn-center-body {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.syn-formula {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 28px 0;
}

.syn-formula-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.syn-formula-pill.amber {
    background: rgba(232, 166, 61, 0.15);
    color: var(--amber-light);
    border: 1px solid rgba(232, 166, 61, 0.3);
}

.syn-formula-pill.teal {
    background: rgba(74, 187, 196, 0.15);
    color: var(--teal-light);
    border: 1px solid rgba(74, 187, 196, 0.3);
}

.syn-formula-pill.red {
    background: rgba(143, 51, 23, 0.2);
    color: var(--crimson-light);
    border: 1px solid rgba(143, 51, 23, 0.35);
}

.syn-formula-pill.result {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
}

.syn-op {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.25);
}

/* ═══════════════════════════════════════════
       SECTION 6: DATA-DRIVEN EXECUTION
    ═══════════════════════════════════════════ */
.data-section {
    padding: 120px 0;
    background: var(--brand-white);
}

.data-headline {
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: -0.03em;
    color: var(--brand-ink);
}

.data-headline em {
    font-style: normal;
    color: var(--amber);
}

.data-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.dkg {
    background: var(--brand-soft);
    border: 1px solid var(--brand-line);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s var(--ease-expo), box-shadow 0.3s;
}

.dkg:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.dkg-icon {
    font-size: 1.4rem;
    margin-bottom: 12px;
    display: block;
}

.dkg-title {
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--brand-ink);
    margin-bottom: 6px;
}

.dkg-body {
    font-size: 0.8rem;
    color: var(--brand-muted);
    line-height: 1.6;
}

.data-cctv-card {
    background: var(--navy);
    border-radius: 20px;
    padding: 40px;
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.dcc-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.dcc-label {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 6px;
}

.dcc-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.dcc-body {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* Data visual dashboard */
.data-dashboard {
    background: var(--brand-soft);
    border: 1px solid var(--brand-line);
    border-radius: 16px;
    overflow: hidden;
}

.dd-topbar {
    background: #fff;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--brand-line);
}

.dd-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dd-title {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--brand-muted);
    margin-left: 8px;
    letter-spacing: 0.05em;
}

.dd-body {
    padding: 24px;
}

.dd-metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.dd-metric {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: 10px;
    padding: 14px;
}

.ddmv {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--brand-ink);
    letter-spacing: -0.02em;
}

.ddmv.teal {
    color: var(--teal-dark);
}

.ddmv.amber {
    color: var(--amber);
}

.ddml {
    font-size: 0.65rem;
    color: var(--brand-muted);
    font-weight: 500;
    margin-top: 3px;
}

.ddmt {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--teal-dark);
    margin-top: 4px;
}

.dd-chart {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 14px;
}

.dd-chart-lbl {
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--brand-muted);
    margin-bottom: 12px;
}

.dd-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 72px;
}

.dd-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: var(--brand-line);
    transition: height 1.5s var(--ease-expo);
}

.dd-bar.active {
    background: var(--amber);
}

.dd-bar.teal {
    background: var(--teal-dark);
}

.dd-src {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dd-src-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dd-src-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dd-src-name {
    font-size: 0.75rem;
    color: var(--brand-mid);
    font-weight: 500;
    flex: 1;
}

.dd-src-bar-wrap {
    width: 80px;
    height: 4px;
    background: var(--brand-line);
    border-radius: 2px;
    overflow: hidden;
}

.dd-src-bar {
    height: 100%;
    border-radius: 2px;
}

.dd-src-pct {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--brand-muted);
}

/* ═══════════════════════════════════════════
       SECTION 7: INDUSTRY-SPECIFIC SOLUTIONS
    ═══════════════════════════════════════════ */
.industry-section {
    padding: 120px 0;
    background: var(--brand-soft);
}

.industry-headline {
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: -0.03em;
    color: var(--brand-ink);
}

.industry-card {
    background: var(--brand-white);
    border: 1px solid var(--brand-line);
    border-radius: 16px;
    padding: 40px 36px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-expo), box-shadow 0.4s;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.09);
    border-color: transparent;
}

.industry-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.industry-card.ic1::after {
    background: var(--amber);
}

.industry-card.ic2::after {
    background: var(--teal-dark);
}

.industry-card.ic3::after {
    background: var(--crimson);
}

.ic-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: block;
}

.ic-tag {
    font-family: var(--font-head);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.industry-card.ic1 .ic-tag {
    color: var(--amber);
}

.industry-card.ic2 .ic-tag {
    color: var(--teal-dark);
}

.industry-card.ic3 .ic-tag {
    color: var(--crimson);
}

.ic-title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--brand-ink);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.ic-body {
    font-size: 0.875rem;
    color: var(--brand-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.ic-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ic-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ic-feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.industry-card.ic1 .ic-feature-dot {
    background: var(--amber);
}

.industry-card.ic2 .ic-feature-dot {
    background: var(--teal-dark);
}

.industry-card.ic3 .ic-feature-dot {
    background: var(--crimson);
}

.ic-feature-text {
    font-size: 0.82rem;
    color: var(--brand-muted);
    font-weight: 500;
}

/* ═══════════════════════════════════════════
       SECTION 8: ROI IMPACT GRID
    ═══════════════════════════════════════════ */
.roi-section {
    padding: 120px 0;
    background: var(--brand-white);
}

.roi-headline {
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: -0.03em;
    color: var(--brand-ink);
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--brand-line);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 56px;
}

.roi-cell {
    background: var(--brand-white);
    padding: 44px 36px;
    transition: background 0.3s;
}

.roi-cell:hover {
    background: var(--brand-soft);
}

.roi-cell-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.roi-cell-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand-ink);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.roi-cell-body {
    font-size: 0.875rem;
    color: var(--brand-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.roi-cell-metric {
    display: flex;
    align-items: baseline;
    gap: 4px;
    padding-top: 18px;
    border-top: 1px solid var(--brand-line);
}

.rcm-big {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 2rem;
    color: var(--brand-ink);
    letter-spacing: -0.04em;
}

.rcm-big span {
    color: var(--amber);
}

.rcm-sm {
    font-size: 0.78rem;
    color: var(--brand-muted);
    font-weight: 500;
}

/* ═══════════════════════════════════════════
       SECTION 9: INTERACTIVE SOLUTION FINDER
    ═══════════════════════════════════════════ */
.finder-section {
    padding: 120px 0;
    background: var(--brand-soft);
}

.finder-headline {
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: -0.03em;
    color: var(--brand-ink);
}

.finder-sub {
    font-size: 0.95rem;
    color: var(--brand-muted);
    line-height: 1.8;
}

.finder-widget {
    background: var(--brand-white);
    border: 1px solid var(--brand-line);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 48px;
}

.finder-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--brand-line);
}

.finder-tab {
    padding: 20px 24px;
    cursor: pointer;
    border-right: 1px solid var(--brand-line);
    transition: background 0.3s;
    text-align: center;
    user-select: none;
}

.finder-tab:last-child {
    border-right: none;
}

.finder-tab:hover {
    background: var(--brand-soft);
}

.finder-tab.active {
    background: var(--navy);
}

.ft-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

.ft-label {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--brand-muted);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.finder-tab.active .ft-label {
    color: #fff;
}

.ft-sublabel {
    font-size: 0.7rem;
    color: var(--brand-muted);
    margin-top: 4px;
}

.finder-tab.active .ft-sublabel {
    color: rgba(255, 255, 255, 0.5);
}

.finder-panel {
    padding: 48px;
    display: none;
}

.finder-panel.active {
    display: block;
}

.fp-pillar-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.fp-pillar-badge.amber {
    background: rgba(232, 166, 61, 0.12);
    color: var(--amber);
    border: 1px solid rgba(232, 166, 61, 0.3);
}

.fp-pillar-badge.teal {
    background: rgba(74, 187, 196, 0.12);
    color: var(--teal-dark);
    border: 1px solid rgba(74, 187, 196, 0.3);
}

.fp-pillar-badge.red {
    background: rgba(143, 51, 23, 0.08);
    color: var(--crimson);
    border: 1px solid rgba(143, 51, 23, 0.2);
}

.fp-headline {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-ink);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.fp-body {
    font-size: 0.9rem;
    color: var(--brand-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.fp-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.fp-svc {
    padding: 8px 18px;
    border-radius: 8px;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--brand-soft);
    color: var(--brand-mid);
    border: 1px solid var(--brand-line);
}

/* ═══════════════════════════════════════════
       SECTION 10: FINAL CTA
    ═══════════════════════════════════════════ */
.cta-section {
    padding: 140px 0;
    background: var(--navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
}

.cta-bg-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 166, 61, 0.08), transparent 70%);
}

.cta-headline {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    color: #fff;
    letter-spacing: -0.03em;
    max-width: 780px;
    margin: 0 auto 20px;
    line-height: 1.08;
}

.cta-headline em {
    font-style: normal;
    color: var(--amber-light);
}

.cta-body {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 44px;
    line-height: 1.8;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-checklist {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.cta-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.cta-check-ico {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(74, 187, 196, 0.2);
    color: var(--teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}

.cta-sep {
    color: rgba(255, 255, 255, 0.15);
}

/* ─── FOOTER ─── */
.footer {
    background: var(--navy-deep);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-logo .logo-wordmark {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1;
}

.footer-logo .logo-wordmark span {
    color: var(--amber);
}

.footer-logo .logo-tagline {
    font-family: var(--font-head);
    font-size: 0.48rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7ACED3;
    margin-top: 3px;
    display: block;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ─── Custom cursor ─── */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(232, 166, 61, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
}

body:has(a:hover) .cursor-dot,
body:has(button:hover) .cursor-dot {
    width: 14px;
    height: 14px;
}

/* ─── Particle canvas ─── */
#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

/* ─── Hero enhanced ─── */
.svc-hero-headline .word {
    display: inline-block;
    overflow: hidden;
}

.svc-hero-headline .char {
    display: inline-block;
}

/* ─── Floating orbit ─── */
.orbit-wrap {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    pointer-events: none;
    z-index: 0;
}

.orbit-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(232, 166, 61, 0.15);
}

.orbit-ring.r2 {
    inset: 40px;
    border-color: rgba(74, 187, 196, 0.12);
}

.orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin: -4px;
    background: var(--amber);
    box-shadow: 0 0 12px var(--amber);
}

/* ─── Marquee ticker ─── */
.marquee-wrap {
    overflow: hidden;
    border-top: 1px solid var(--brand-line);
    border-bottom: 1px solid var(--brand-line);
    background: var(--brand-soft);
    padding: 16px 0;
}

.marquee-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0 40px;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-muted);
}

.marquee-item .mi-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--amber);
    flex-shrink: 0;
}

.marquee-item .mi-accent {
    color: var(--amber);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

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

/* ─── Pillar number big bg ─── */
.pillar-section {
    position: relative;
    overflow: hidden;
}

.pillar-bg-num {
    position: absolute;
    right: -20px;
    top: -60px;
    font-family: var(--font-head);
    font-size: 18rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
    pointer-events: none;
    z-index: 0;
    user-select: none;
    opacity: 1;
}

.pillar-section.bg-white .pillar-bg-num {
    color: rgba(13, 27, 106, 0.03);
}

.pillar-section.bg-soft .pillar-bg-num {
    color: rgba(13, 27, 106, 0.03);
}

.pillar-section.bg-navy .pillar-bg-num {
    color: rgba(255, 255, 255, 0.02);
}

/* ─── Magnetic button ─── */
.btn-magnetic {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── Counting numbers ─── */
.counter-num {
    display: inline-block;
}

/* ─── ROI section enhancements ─── */
.roi-cell {
    position: relative;
    overflow: hidden;
}

.roi-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-expo);
}

.roi-cell:nth-child(1)::before {
    background: var(--amber);
}

.roi-cell:nth-child(2)::before {
    background: var(--teal-dark);
}

.roi-cell:nth-child(3)::before {
    background: var(--crimson);
}

.roi-cell:hover::before {
    transform: scaleX(1);
}

/* ─── Synergy animated connections ─── */
.syn-connection-svg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
}

/* ─── Scroll progress bar ─── */
#scrollBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    z-index: 2000;
    background: linear-gradient(90deg, var(--amber), var(--teal-dark));
    width: 0%;
    transform-origin: left;
    pointer-events: none;
}

/* ─── CTA enhanced: floating particles ─── */
.cta-float-el {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: floatUp 6s ease-in infinite;
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }

    20% {
        opacity: 0.6;
    }

    80% {
        opacity: 0.2;
    }

    100% {
        opacity: 0;
        transform: translateY(-200px) scale(1.2);
    }
}

/* ─── Pillar section reveal lines ─── */
.section-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
}

.sd-line {
    flex: 1;
    height: 1px;
    background: var(--brand-line);
    transform-origin: left;
}

.sd-num {
    font-family: var(--font-head);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: var(--brand-muted);
    text-transform: uppercase;
}

/* ─── Synergy section: orbit diagram ─── */
.syn-orbit-diagram {
    position: relative;
    width: 340px;
    height: 340px;
    margin: 0 auto 48px;
    flex-shrink: 0;
}

.syn-orbit-diagram svg {
    width: 100%;
    height: 100%;
}

/* ─── Industry card enhanced hover ─── */
.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

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

/* ─── Reveal defaults — visible before GSAP fires ─── */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 1;
}

/* ─── Stagger animation helpers ─── */
.stagger-child {
    opacity: 0;
    transform: translateY(24px);
}

/* ─── Horizontal scroll band (desktop) ─── */
.hscroll-section {
    overflow: hidden;
    background: var(--navy);
    padding: 80px 0;
}

.hscroll-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: hscrollMarquee 36s linear infinite;
}

.hscroll-track:hover {
    animation-play-state: paused;
}

@keyframes hscrollMarquee {
    from {
        transform: translateX(0);
    }

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

.hscroll-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 28px;
    width: 280px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, background 0.3s;
}

.hscroll-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(232, 166, 61, 0.3);
}

.hsc-num {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1;
    margin-bottom: 16px;
}

.hsc-label {
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.hsc-body {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

/* ─── Hamburger Button ─── */
.ng-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1.5px solid var(--brand-line);
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
    z-index: 1001;
}

.ng-hamburger:hover {
    border-color: var(--navy);
    background: var(--brand-soft);
}

.ng-hamburger .bar {
    width: 20px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.35s var(--ease-expo), opacity 0.25s, width 0.3s;
    transform-origin: center;
}

.ng-hamburger.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ng-hamburger.open .bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.ng-hamburger.open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── Mobile Menu Drawer ─── */
.ng-mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(250, 251, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--brand-line);
    z-index: 999;
    padding: 24px 24px 32px;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 16px 48px rgba(13, 27, 106, 0.10);
    transform: translateY(-8px);
    opacity: 0;
    transition: transform 0.35s var(--ease-expo), opacity 0.3s;
}

.ng-mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
}

.ng-mobile-menu a:not(.btn-primary-ng) {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--navy);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid var(--brand-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s, padding-left 0.2s;
}

.ng-mobile-menu a:not(.btn-primary-ng)::after {
    content: '›';
    font-size: 1.1rem;
    color: var(--amber);
    font-weight: 900;
}

.ng-mobile-menu a:not(.btn-primary-ng):hover {
    color: var(--amber);
    padding-left: 6px;
}

.ng-mobile-menu a.active:not(.btn-primary-ng) {
    color: var(--amber);
}

.ng-mobile-cta {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

/* ════════════════════════════════════════
       RESPONSIVE BREAKPOINTS — ALL SECTIONS
    ════════════════════════════════════════ */

/* ── Large Desktop ── */
@media (max-width: 1400px) {
    .pillar-bg-num {
        font-size: 14rem;
        right: -10px;
    }

    .syn-orbit-diagram {
        width: 300px;
        height: 300px;
    }
}

/* ── Laptop ── */
@media (max-width: 1200px) {
    .ng-nav {
        padding: 0 32px;
    }

    .ng-nav-links {
        gap: 24px;
    }

    .pillar-bg-num {
        font-size: 11rem;
        opacity: 0.8;
    }

    .container[style*="padding:0 48px"],
    .container[style*="padding: 0 48px"] {
        padding: 0 32px !important;
    }

    .svc-hero-headline {
        font-size: clamp(2.4rem, 4vw, 3.8rem);
    }

    .pillar-visual-card {
        padding: 28px;
    }

    .syn-center {
        padding: 36px;
    }

    .roi-cell {
        padding: 32px 24px;
    }

    .finder-panel {
        padding: 36px;
    }

    .hscroll-card {
        width: 240px;
    }
}

/* ── Tablet Landscape ── */
@media (max-width: 992px) {

    /* Nav */
    .ng-nav {
        padding: 0 24px;
    }

    .ng-nav-links {
        display: none;
    }

    .ng-nav .btn-primary-ng:not(.ng-mobile-cta) {
        display: none;
    }

    .ng-hamburger {
        display: flex;
    }

    .ng-mobile-menu {
        display: flex;
    }

    /* Hero */
    .svc-hero {
        padding-top: 88px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .svc-hero-headline {
        font-size: clamp(2.2rem, 5vw, 3rem);
    }

    .svc-hero-sub {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }

    .pillar-diagram {
        margin-top: 32px;
        padding: 36px 28px 28px;
    }

    /* Pillar sections */
    .pillar-section {
        padding: 80px 0;
    }

    .pillar-bg-num {
        font-size: 8rem;
        top: -30px;
    }

    .pillar-section-headline {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }

    .pillar-visual-card {
        margin-top: 32px;
        padding: 24px;
    }

    /* Synergy */
    .synergy-section {
        padding: 80px 0;
    }

    .syn-orbit-diagram {
        width: 240px;
        height: 240px;
    }

    .syn-center {
        padding: 32px 24px;
    }

    /* Data section */
    .data-section {
        padding: 80px 0;
    }

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

    .data-cctv-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 28px;
    }

    /* Industry */
    .industry-section {
        padding: 80px 0;
    }

    /* ROI */
    .roi-section {
        padding: 80px 0;
    }

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

    /* Finder */
    .finder-section {
        padding: 80px 0;
    }

    .finder-tabs {
        grid-template-columns: 1fr;
    }

    .finder-tab {
        border-right: none;
        border-bottom: 1px solid var(--brand-line);
        padding: 16px 24px;
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
    }

    .finder-tab:last-child {
        border-bottom: none;
    }

    .ft-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .finder-panel {
        padding: 32px;
    }

    /* CTA */
    .cta-section {
        padding: 100px 0;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    /* Hscroll */
    .hscroll-section {
        padding: 60px 0;
    }
}

/* ── Tablet Portrait ── */
@media (max-width: 768px) {

    /* Nav */
    .ng-nav {
        padding: 0 20px;
    }

    /* Hero */
    .svc-hero {
        padding-top: 100px;
        padding-bottom: 48px;
    }

    .svc-hero-headline {
        font-size: clamp(2rem, 7vw, 2.6rem);
    }

    .hero-pillar-badges {
        gap: 8px;
    }

    .hpb {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .svc-hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .svc-hero-cta .btn-primary-ng,
    .svc-hero-cta .btn-ghost-ng {
        width: 100%;
        justify-content: center;
    }

    /* Pillar diagram */
    .pillar-diagram {
        padding: 28px 20px 20px;
        margin-top: 24px;
    }

    .pd-core-val {
        font-size: 1.3rem;
    }

    .pd-pillars {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .pd-pillar {
        padding: 14px 12px;
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
    }

    .pd-pillar-icon {
        margin-bottom: 0;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    /* Pillar sections */
    .pillar-section {
        padding: 64px 0;
    }

    .pillar-bg-num {
        display: none;
    }

    .pillar-section-headline {
        font-size: clamp(1.7rem, 5.5vw, 2.2rem);
    }

    .pillar-section-sub {
        font-size: 0.9rem;
        margin-bottom: 28px;
    }

    .svc-list-item {
        padding: 16px 18px;
    }

    .sli-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .outcome-banner {
        padding: 16px 20px;
        gap: 12px;
    }

    /* Visual cards */
    .pillar-visual-card {
        padding: 20px;
        height: auto;
    }

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

    /* Synergy */
    .synergy-section {
        padding: 64px 0;
    }

    .synergy-headline {
        font-size: clamp(1.7rem, 5vw, 2.4rem);
    }

    .syn-card {
        padding: 24px;
    }

    .syn-orbit-diagram {
        width: 200px;
        height: 200px;
        margin-bottom: 32px;
    }

    .syn-center {
        padding: 28px 20px;
        margin-top: 28px;
    }

    .syn-formula {
        gap: 10px;
    }

    .syn-op {
        font-size: 1rem;
    }

    /* Data section */
    .data-section {
        padding: 64px 0;
    }

    .data-kpi-grid {
        grid-template-columns: 1fr;
    }

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

    .data-cctv-card {
        padding: 24px;
    }

    /* Industry */
    .industry-section {
        padding: 64px 0;
    }

    .industry-card {
        padding: 28px 24px;
    }

    /* ROI */
    .roi-section {
        padding: 64px 0;
    }

    .roi-grid {
        grid-template-columns: 1fr;
        margin-top: 36px;
    }

    .roi-cell {
        padding: 32px 28px;
    }

    .rcm-big {
        font-size: 1.6rem;
    }

    /* Finder */
    .finder-section {
        padding: 64px 0;
    }

    .finder-widget {
        margin-top: 32px;
    }

    .finder-panel {
        padding: 24px;
    }

    .fp-headline {
        font-size: 1.25rem;
    }

    /* CTA */
    .cta-section {
        padding: 80px 0;
    }

    .cta-headline {
        font-size: clamp(1.8rem, 6vw, 3rem);
    }

    .cta-checklist {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .cta-sep {
        display: none;
    }

    .cta-section .d-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .cta-section .btn-primary-ng,
    .cta-section .btn-ghost-ng {
        width: 100%;
        justify-content: center;
    }

    /* Hscroll */
    .hscroll-section {
        padding: 48px 0;
    }
}

/* ── Large Mobile ── */
@media (max-width: 576px) {

    /* Nav */
    .ng-nav {
        padding: 0 16px;
    }

    .ng-logo .logo-wordmark {
        font-size: 1rem;
    }

    /* Hero */
    .svc-hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .svc-hero-headline {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
        margin-bottom: 16px;
    }

    .svc-hero-sub {
        font-size: 0.88rem;
        margin-bottom: 24px;
    }

    .hero-pillar-badges {
        margin-bottom: 28px;
    }

    /* Container padding */
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* Pillar diagram */
    .pd-pillar {
        padding: 12px;
    }

    .pd-label {
        font-size: 0.6rem;
        margin-bottom: 20px;
    }

    /* Pillar sections */
    .pillar-section {
        padding: 52px 0;
    }

    .pillar-section-headline {
        font-size: clamp(1.5rem, 6.5vw, 2rem);
    }

    .pillar-num-tag {
        margin-bottom: 10px;
    }

    .svc-list {
        gap: 10px;
    }

    .svc-list-item {
        padding: 14px 16px;
        gap: 12px;
    }

    .sli-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .sli-title {
        font-size: 0.88rem;
    }

    .sli-body {
        font-size: 0.8rem;
    }

    .outcome-banner {
        padding: 14px 16px;
        margin-top: 24px;
    }

    .ob-text {
        font-size: 0.82rem;
    }

    /* Brand visual */
    .brand-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .bs-item {
        padding: 14px;
    }

    /* Synergy */
    .synergy-section {
        padding: 52px 0;
    }

    .syn-card {
        padding: 20px;
    }

    .syn-card-equation {
        font-size: 0.82rem;
    }

    .syn-center {
        padding: 24px 16px;
    }

    .syn-center-headline {
        font-size: 1.2rem;
    }

    .syn-orbit-diagram {
        width: 180px;
        height: 180px;
    }

    .syn-formula {
        gap: 8px;
        margin: 20px 0;
    }

    .syn-formula-pill {
        font-size: 0.72rem;
        padding: 8px 14px;
    }

    /* Data */
    .data-section {
        padding: 52px 0;
    }

    .data-headline {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .dkg {
        padding: 16px;
    }

    .data-cctv-card {
        padding: 20px;
        gap: 14px;
    }

    .dcc-icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }

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

    .dd-body {
        padding: 16px;
    }

    /* Industry */
    .industry-section {
        padding: 52px 0;
    }

    .industry-card {
        padding: 24px 20px;
    }

    .ic-title {
        font-size: 1.1rem;
    }

    /* ROI */
    .roi-section {
        padding: 52px 0;
    }

    .roi-cell {
        padding: 28px 20px;
    }

    .rcm-big {
        font-size: 1.4rem;
    }

    /* Finder */
    .finder-section {
        padding: 52px 0;
    }

    .finder-panel {
        padding: 20px 16px;
    }

    .fp-services {
        gap: 8px;
    }

    .fp-svc {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    /* CTA */
    .cta-section {
        padding: 64px 0;
    }

    .cta-headline {
        font-size: clamp(1.6rem, 7vw, 2.4rem);
    }

    .cta-body {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 32px 0;
    }

    .footer-copy {
        font-size: 0.72rem;
        text-align: center;
    }

    /* Hscroll */
    .hscroll-section {
        padding: 40px 0;
    }

    .hscroll-card {
        width: 220px;
        padding: 24px 20px;
    }

    .hsc-num {
        font-size: 2.4rem;
    }
}

/* ── Small Mobile ── */
@media (max-width: 400px) {

    /* Nav */
    .ng-nav {
        padding: 0 12px;
        height: 64px;
    }

    .ng-mobile-menu {
        top: 64px;
    }

    .ng-logo .logo-wordmark {
        font-size: 0.9rem;
    }

    .ng-logo .logo-tagline {
        display: none;
    }

    /* Hero */
    .svc-hero {
        padding-top: 88px;
    }

    .svc-hero-headline {
        font-size: clamp(1.6rem, 9vw, 2rem);
    }

    .hpb {
        font-size: 0.65rem;
        padding: 5px 10px;
    }

    .hero-pillar-badges {
        gap: 6px;
    }

    /* Pillar diagram */
    .pd-core-val {
        font-size: 1.1rem;
    }

    .pd-pillar-name {
        font-size: 0.7rem;
    }

    /* Sections */
    .pillar-section,
    .synergy-section,
    .data-section,
    .industry-section,
    .roi-section,
    .finder-section {
        padding: 44px 0;
    }

    .pillar-section-headline,
    .synergy-headline,
    .data-headline,
    .industry-headline,
    .roi-headline,
    .finder-headline {
        font-size: clamp(1.4rem, 8vw, 1.8rem);
    }

    /* Svc list */
    .svc-list-item {
        flex-direction: column;
        gap: 10px;
        padding: 14px;
    }

    /* Syn formula */
    .syn-formula {
        flex-direction: column;
        align-items: center;
    }

    .syn-op {
        transform: rotate(90deg);
    }

    /* Outcome banner */
    .outcome-banner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* CTA */
    .cta-section {
        padding: 52px 0;
    }

    .cta-headline {
        font-size: clamp(1.4rem, 8.5vw, 1.9rem);
    }

    /* Footer */
    .footer-inner {
        gap: 8px;
    }

    /* Hscroll */
    .hscroll-card {
        width: 200px;
    }
}

/* ─── Company logo image ─── */
.ng-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 6px;
}

.footer-logo .ng-logo-img {
    width: 36px;
    height: 36px;
}