/* ─── CSS Variables ─── */
:root {
    /* Brand Palette */
    --navy: #0D1B6A;
    /* Deep Navy — primary ink, dark sections */
    --teal: #7ACED3;
    /* Cyan Teal — cool accent, highlights */
    --crimson: #8F3317;
    /* Burnt Red — secondary, danger states */
    --amber: #E8A63D;
    /* Warm Amber/Gold — CTA, star accent */

    /* Derived shades */
    --navy-deep: #091452;
    /* Darker navy for footer */
    --navy-mid: #1E2E7A;
    /* Lighter navy for UI elements */
    --teal-light: #A8E4E9;
    /* Softer teal */
    --teal-dark: #4ABBC4;
    /* Richer teal */
    --amber-light: #F2C06A;
    /* Lighter amber */
    --crimson-light: #B84420;
    /* Lighter crimson */

    /* Neutrals (warm-tinted to harmonize with palette) */
    --brand-muted: #5E6A8A;
    /* Muted navy-grey */
    --brand-soft: #F0F3FF;
    /* Very light navy tint — replaces brand-soft */
    --brand-white: #FAFBFF;
    /* Near-white with navy tint */
    --brand-line: #D8DEEF;
    /* Border color — light navy tint */

    /* Legacy aliases for minimal re-writes */
    --brand-orange: var(--amber);
    --brand-orange-light: var(--amber-light);
    --brand-ink: var(--navy);
    --brand-mid: var(--navy-mid);
    --accent-green: var(--teal);
    --accent-blue: var(--teal-dark);

    --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);
}

/* ─── Reset & Base ─── */
*,
*::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;
}

/* ─── Typography ─── */
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;
}

/* ─── 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-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);
}

/* ─── 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 {
    width: 100%;
}

/* ─── SECTION 1: HERO ─── */
.hero-section {
    min-height: 100vh;
    padding-top: 72px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--brand-white);
}

.hero-bg-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;
}

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

.hero-content {
    position: relative;
    z-index: 2;
}

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

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

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

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

.hero-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-stats-row {
    display: flex;
    gap: 40px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--brand-line);
}

.hero-stat-num {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 2rem;
    color: var(--navy);
    letter-spacing: -0.04em;
}

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

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--brand-muted);
    font-weight: 500;
    margin-top: 2px;
}

/* Dashboard Mockup */
.hero-dashboard {
    position: relative;
    z-index: 2;
}

.dashboard-frame {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--brand-line);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.10), 0 8px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    width: 100%;
    max-width: 580px;
    margin-left: auto;
}

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

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

.dash-dot.red {
    background: #FF5F57;
}

.dash-dot.yellow {
    background: #FFBD2E;
}

.dash-dot.green {
    background: #28C840;
}

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

.dash-body {
    padding: 24px;
}

.dash-kpi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.dash-kpi {
    background: var(--brand-soft);
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid var(--brand-line);
}

.dash-kpi-val {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--brand-ink);
}

.dash-kpi-val.up {
    color: var(--accent-green);
}

.dash-kpi-lbl {
    font-size: 0.68rem;
    color: var(--brand-muted);
    font-weight: 500;
    margin-top: 2px;
}

.dash-chart-area {
    background: var(--brand-soft);
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 16px;
    border: 1px solid var(--brand-line);
    position: relative;
    overflow: hidden;
}

.dash-chart-lbl {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--brand-mid);
    margin-bottom: 16px;
}

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

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

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

.chart-bar.accent {
    background: var(--teal);
}

.dash-pipeline {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

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

.pipeline-stage {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--brand-soft);
    border-radius: 8px;
    border: 1px solid var(--brand-line);
}

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

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

.pipeline-count {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--brand-ink);
}

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

.pipeline-bar-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 1.5s var(--ease-expo);
}

/* ─── SECTION 2: TRUST BAR ─── */
.trust-bar {
    padding: 32px 0;
    border-top: 1px solid var(--brand-line);
    border-bottom: 1px solid var(--brand-line);
    background: var(--brand-soft);
    overflow: hidden;
}

.trust-label {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-muted);
    text-align: center;
    margin-bottom: 24px;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 28s linear infinite;
}

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

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

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

/* ─── 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;
}


/* ─── 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;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 52px;
    margin: 0 16px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--brand-line);
    flex-shrink: 0;
}

.logo-item span {
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--brand-line);
    filter: grayscale(1);
}

/* ─── SECTION 3: PILLARS ─── */
.pillars-section {
    padding: 120px 0;
    background: var(--brand-white);
    position: relative;
}

.section-intro {
    margin-bottom: 72px;
}

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

.pillar-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
}

.pillar-card:nth-child(1)::before {
    background: var(--amber);
}

.pillar-card:nth-child(2)::before {
    background: var(--teal);
}

.pillar-card:nth-child(3)::before {
    background: var(--crimson);
}

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

.pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 1.5rem;
}

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

.pillar-icon.blue {
    background: rgba(124, 206, 211, 0.12);
}

.pillar-icon.green {
    background: rgba(143, 51, 23, 0.1);
}

.pillar-number {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--brand-line);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-ink);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.pillar-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}

.pillar-card:nth-child(2) .pillar-subtitle {
    color: var(--teal-dark);
}

.pillar-card:nth-child(3) .pillar-subtitle {
    color: var(--crimson);
}

.pillar-body {
    font-size: 0.9rem;
    color: var(--brand-muted);
    line-height: 1.8;
}

.pillar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.pillar-tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    background: var(--brand-soft);
    color: var(--brand-mid);
    border: 1px solid var(--brand-line);
}

/* ─── SECTION 4: CRM USP ─── */
.crm-section {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

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

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

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

.crm-headline {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.crm-body {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 500px;
}

.ba-card {
    border-radius: 16px;
    padding: 40px;
    height: 100%;
}

.ba-card.before-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ba-card.after-card {
    background: rgba(124, 206, 211, 0.08);
    border: 1px solid rgba(124, 206, 211, 0.25);
}

.ba-badge {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 24px;
}

.ba-badge.before {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
}

.ba-badge.after {
    background: rgba(124, 206, 211, 0.2);
    color: var(--teal-dark);
}

.ba-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ba-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.ba-list li .ico {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.ba-card.before-card .ico {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.3);
}

.ba-card.after-card .ico {
    background: rgba(124, 206, 211, 0.25);
    color: var(--teal-dark);
}

.crm-flow {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 40px;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 14px 20px;
}

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

.flow-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    flex: 1;
}

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

/* ─── SECTION 5: SERVICES ─── */
.services-section {
    padding: 120px 0;
    background: var(--brand-soft);
}

.service-card {
    background: var(--brand-white);
    border: 1px solid var(--brand-line);
    border-radius: 12px;
    padding: 32px 28px;
    cursor: pointer;
    transition: all 0.35s var(--ease-expo);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--navy);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 48px rgba(13, 27, 106, 0.25);
    border-color: var(--navy);
}

.service-card:hover .service-icon,
.service-card:hover .service-name,
.service-card:hover .service-desc,
.service-card:hover .service-arr {
    color: #fff;
}

.service-card:hover .service-icon-bg {
    background: rgba(255, 255, 255, 0.15);
}

.service-icon-bg {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--brand-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.3s;
    position: relative;
    z-index: 1;
}

.service-icon {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.service-name {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--brand-ink);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.service-desc {
    font-size: 0.82rem;
    color: var(--brand-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.service-arr {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.2rem;
    color: var(--brand-line);
    z-index: 1;
    transition: all 0.3s var(--ease-back);
}

.service-card:hover .service-arr {
    color: rgba(255, 255, 255, 0.6);
    transform: translate(3px, -3px);
}

/* ─── SECTION 6: PROCESS ─── */
.process-section {
    padding: 120px 0;
    background: var(--brand-white);
}

.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    position: relative;
    padding-bottom: 60px;
}

.process-step:last-child {
    padding-bottom: 0;
}

.step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-num-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--brand-white);
    border: 2px solid var(--brand-line);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s var(--ease-expo);
    flex-shrink: 0;
}

.step-num-wrap.active {
    background: var(--amber);
    border-color: var(--amber);
}

.step-num {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--brand-muted);
    transition: color 0.3s;
}

.step-num-wrap.active .step-num {
    color: #fff;
}

.step-line {
    width: 2px;
    flex: 1;
    background: var(--brand-line);
    margin-top: 8px;
}

.step-content {
    padding-top: 16px;
}

.step-tag {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 12px;
}

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

.step-body {
    font-size: 0.9rem;
    color: var(--brand-muted);
    line-height: 1.8;
    max-width: 500px;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    padding: 7px 16px;
    background: var(--brand-soft);
    border: 1px solid var(--brand-line);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-mid);
}

/* ─── SECTION 7: PROOF / CASE STUDIES ─── */
.proof-section {
    padding: 120px 0;
    background: var(--brand-soft);
}

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

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.10);
}

.case-card-header {
    padding: 32px 32px 28px;
    border-bottom: 1px solid var(--brand-line);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.case-industry {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    background: var(--brand-soft);
    border: 1px solid var(--brand-line);
    color: var(--brand-mid);
}

.case-result-badge {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--teal-dark);
    letter-spacing: -0.03em;
}

.case-result-sub {
    font-size: 0.7rem;
    color: var(--brand-muted);
    font-weight: 500;
}

.case-card-body {
    padding: 28px 32px;
}

.case-section-lbl {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-muted);
    margin-bottom: 8px;
}

.case-text {
    font-size: 0.88rem;
    color: var(--brand-mid);
    line-height: 1.7;
    margin-bottom: 24px;
}

.case-divider {
    height: 1px;
    background: var(--brand-line);
    margin: 16px 0;
}

.case-pillars {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.case-pillar-tag {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
}

.cp-orange {
    background: rgba(232, 166, 61, 0.12);
    color: var(--amber);
}

.cp-blue {
    background: rgba(124, 206, 211, 0.12);
    color: var(--teal-dark);
}

.cp-green {
    background: rgba(143, 51, 23, 0.1);
    color: var(--crimson);
}

/* ─── SECTION 8: DASHBOARD ADVANTAGE ─── */
.dashboard-section {
    padding: 120px 0;
    background: var(--brand-white);
}

.analytics-card {
    background: var(--navy);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
}

.analytics-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.metric-box {
    flex: 1;
    min-width: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 16px;
}

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

.metric-lbl {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    margin-top: 4px;
}

.metric-trend {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 6px;
}

.trend-up {
    color: var(--accent-green);
}

.trend-down {
    color: var(--crimson-light);
}

.analytics-chart-mini {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 16px;
}

.analytics-chart-lbl {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
}

.mini-bar {
    flex: 1;
    border-radius: 2px 2px 0 0;
}

.feature-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.fp-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--brand-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid var(--brand-line);
}

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

.fp-body {
    font-size: 0.875rem;
    color: var(--brand-muted);
    line-height: 1.7;
}

/* ─── SECTION 9: LOCAL AUTHORITY ─── */
.local-section {
    padding: 120px 0;
    background: var(--brand-soft);
}

.local-card {
    background: var(--brand-white);
    border: 1px solid var(--brand-line);
    border-radius: 12px;
    padding: 28px;
    display: flex;
    gap: 16px;
    transition: transform 0.3s var(--ease-expo), box-shadow 0.3s;
}

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

.local-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: var(--brand-soft);
    border: 1px solid var(--brand-line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

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

.local-card-body {
    font-size: 0.82rem;
    color: var(--brand-muted);
    line-height: 1.7;
}

.map-placeholder {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--brand-line);
    background: var(--brand-white);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.map-pulse {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(232, 166, 61, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-pulse::before,
.map-pulse::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(232, 166, 61, 0.3);
    animation: pulse-ring 2s ease-out infinite;
}

.map-pulse::before {
    width: 120px;
    height: 120px;
}

.map-pulse::after {
    width: 160px;
    height: 160px;
    animation-delay: 0.5s;
}

@keyframes pulse-ring {
    from {
        transform: scale(0.7);
        opacity: 0.8;
    }

    to {
        transform: scale(1.3);
        opacity: 0;
    }
}

.map-dot {
    font-size: 2.5rem;
}

.map-label {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-muted);
    text-align: center;
}

.map-label strong {
    color: var(--brand-ink);
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

/* ─── 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-headline {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    color: #fff;
    letter-spacing: -0.03em;
    max-width: 780px;
    margin: 0 auto 28px;
    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.55);
    margin-bottom: 48px;
    line-height: 1.8;
}

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

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

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

.cta-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

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

/* ─── 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: gap;
}

.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: #E8A63D;
}

.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);
}

/* ─── SCROLL REVEAL DEFAULTS ─── */
/* Initial states set by GSAP on init, not CSS, to avoid blank page if JS fails */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 1;
}

/* ─── ORANGE UNDERLINE ANIM ─── */
.text-highlight {
    position: relative;
    display: inline;
}

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

.text-highlight.highlighted::after {
    width: 100%;
}

/* ─── FLIP TARGET ─── */
.services-grid .service-card {
    transform-origin: center;
}

/* ─── Counter animation values ─── */
.count-anim {
    display: inline-block;
}

/* ─── 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 {
    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::after {
    content: '›';
    font-size: 1.1rem;
    color: var(--amber);
    font-weight: 900;
}

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

.ng-mobile-menu a:last-of-type {
    border-bottom: none;
}

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

/* ─── Responsive ─── */
@media (max-width: 991px) {
    .ng-nav {
        padding: 0 24px;
    }

    .hero-stats-row {
        gap: 24px;
        flex-wrap: wrap;
    }

    .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;
    }

    .process-step {
        grid-template-columns: 56px 1fr;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .dashboard-frame {
        max-width: 100%;
    }

    /* Hero text breathing room */
    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .hero-stats-row {
        gap: 16px;
        margin-top: 40px;
        padding-top: 28px;
    }

    .hero-stat-num {
        font-size: 1.6rem;
    }

    /* Section padding */
    section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

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

    /* CTA row stack */
    .hero-cta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

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

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

@media (max-width: 480px) {
    .ng-nav {
        padding: 0 16px;
    }

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

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

/* ─── 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;
}