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

*,
*::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;
}

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


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

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

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

/* ─── TEXT HIGHLIGHT ─── */
.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%;
}

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

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

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

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

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

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

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

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

/* Right side: philosophical card */
.hero-philosophy-card {
    background: var(--navy);
    border-radius: 20px;
    padding: 44px;
    position: relative;
    overflow: hidden;
}

.hero-philosophy-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 166, 61, 0.15), transparent 70%);
}

.hero-philo-quote {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.hero-philo-quote span {
    color: var(--amber-light);
}

.hero-philo-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 24px 0;
    position: relative;
    z-index: 1;
}

.hero-philo-stat {
    display: flex;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.hps-num {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 2rem;
    color: #fff;
    letter-spacing: -0.04em;
}

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

.hps-lbl {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    margin-top: 2px;
}

.hero-philo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
    position: relative;
    z-index: 1;
}

.hpt {
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.04em;
}

.hpt.amber {
    background: rgba(232, 166, 61, 0.15);
    color: var(--amber-light);
    border-color: rgba(232, 166, 61, 0.25);
}

/* ─── SECTION 2: CORE WHY ─── */
.why-section {
    padding: 120px 0;
    background: var(--brand-soft);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--brand-line);
}

.why-manifesto {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.why-manifesto .accent {
    color: var(--amber);
}

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

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

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

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

.why-card.c1::after {
    background: var(--amber);
}

.why-card.c2::after {
    background: var(--teal-dark);
}

.why-card.c3::after {
    background: var(--crimson);
}

.why-card-num {
    font-family: var(--font-head);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--brand-line);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.why-card-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
}

.why-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-ink);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.why-card-body {
    font-size: 0.88rem;
    color: var(--brand-muted);
    line-height: 1.8;
}

/* ─── SECTION 3: AGENCY PROBLEM ─── */
.problem-section {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(143, 51, 23, 0.15), transparent 70%);
}

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

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

.problem-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px;
    height: 100%;
    position: relative;
    transition: background 0.3s, border-color 0.3s;
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.14);
}

.problem-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(143, 51, 23, 0.2);
    border: 1px solid rgba(143, 51, 23, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 24px;
}

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

.problem-card-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

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

.problem-counter-row {
    display: flex;
    gap: 0;
    margin-top: 64px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.problem-counter {
    flex: 1;
    padding: 36px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.problem-counter:last-child {
    border-right: none;
}

.pcnum {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 2.4rem;
    color: #fff;
    letter-spacing: -0.04em;
}

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

.pclbl {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    margin-top: 6px;
}

/* ─── SECTION 4: DIFFERENTIATOR ─── */
.diff-section {
    padding: 120px 0;
    background: var(--brand-white);
}

.diff-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    border: 1px solid var(--brand-line);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 56px;
}

.diff-col {
    padding: 48px 40px;
}

.diff-col.chaos {
    background: #fff;
}

.diff-col.nirmaan {
    background: var(--navy);
}

.diff-divider {
    width: 1px;
    background: var(--brand-line);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diff-vs {
    position: absolute;
    width: 44px;
    height: 44px;
    background: var(--brand-soft);
    border: 2px solid var(--brand-line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--brand-muted);
    letter-spacing: 0.06em;
    z-index: 2;
}

.diff-col-label {
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
}

.diff-col-label.bad {
    background: rgba(239, 68, 68, 0.08);
    color: #EF4444;
}

.diff-col-label.good {
    background: rgba(74, 187, 196, 0.15);
    color: var(--teal-dark);
}

.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.diff-item:last-child {
    margin-bottom: 0;
}

.diff-ico {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.diff-ico.no {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.diff-ico.yes {
    background: rgba(74, 187, 196, 0.15);
    color: var(--teal-dark);
}

.diff-text {
    font-size: 0.88rem;
    color: var(--brand-muted);
    line-height: 1.6;
}

.diff-text.dark {
    color: rgba(255, 255, 255, 0.65);
}

.diff-col-title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.diff-col-title.light {
    color: #fff;
}

.diff-col-title.dark-text {
    color: var(--brand-ink);
}

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

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

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

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

.pillar-block.p1::before {
    background: var(--amber);
}

.pillar-block.p2::before {
    background: var(--teal-dark);
}

.pillar-block.p3::before {
    background: var(--crimson);
}

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

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

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

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

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

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

.pillar-block-sub {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}

.pillar-block-sub.amber {
    color: var(--amber);
}

.pillar-block-sub.teal {
    color: var(--teal-dark);
}

.pillar-block-sub.red {
    color: var(--crimson);
}

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

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

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

/* Connection arrow */
.pillars-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    color: var(--brand-line);
    font-size: 1.4rem;
}

/* ─── SECTION 6: DATA / DIGITAL CCTV ─── */
.data-section {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.data-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 187, 196, 0.1), transparent 70%);
}

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

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

.data-body-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.85;
}

/* Dashboard mockup for data section */
.data-dashboard {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.data-dash-topbar {
    background: rgba(255, 255, 255, 0.04);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.data-dot.r {
    background: rgba(255, 95, 87, 0.6);
}

.data-dot.y {
    background: rgba(255, 189, 46, 0.6);
}

.data-dot.g {
    background: rgba(40, 200, 64, 0.6);
}

.data-dash-title {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    margin-left: 8px;
    letter-spacing: 0.06em;
}

.data-dash-body {
    padding: 24px;
}

.data-metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.data-metric {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 16px;
}

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

.dmv.teal {
    color: var(--teal);
}

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

.dml {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
    margin-top: 3px;
}

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

.data-source-row {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
}

.data-source-lbl {
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
    letter-spacing: 0.06em;
}

.dsrc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.dsrc-item:last-child {
    margin-bottom: 0;
}

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

.dsrc-name {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    flex: 1;
}

.dsrc-bar-wrap {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

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

.dsrc-pct {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.data-insight-row {
    display: flex;
    gap: 12px;
}

.data-insight {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 14px;
}

.di-title {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 6px;
}

.di-val {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}

/* Data feature points */
.data-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.dp-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dp-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

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

/* ─── SECTION 7: SEO / SEARCH READY ─── */
.seo-section {
    padding: 120px 0;
    background: var(--brand-white);
}

.seo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid var(--brand-line);
}

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

.seo-item-num {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    padding-top: 2px;
    flex-shrink: 0;
    min-width: 28px;
}

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

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

/* SEO visual card */
.seo-visual {
    background: var(--brand-soft);
    border: 1px solid var(--brand-line);
    border-radius: 20px;
    padding: 36px;
    height: 100%;
}

.seo-rank-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: 10px;
    margin-bottom: 10px;
    transition: transform 0.3s var(--ease-expo);
}

.seo-rank-item:hover {
    transform: translateX(4px);
}

.seo-rank-badge {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 800;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.seo-rank-badge.top {
    background: rgba(232, 166, 61, 0.15);
    color: var(--amber);
}

.seo-rank-badge.mid {
    background: rgba(74, 187, 196, 0.12);
    color: var(--teal-dark);
}

.seo-rank-query {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-ink);
    flex: 1;
}

.seo-rank-status {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
}

.seo-rank-status.live {
    background: rgba(74, 187, 196, 0.12);
    color: var(--teal-dark);
}

.seo-rank-status.climbing {
    background: rgba(232, 166, 61, 0.12);
    color: var(--amber);
}

/* ─── SECTION 8: TEAM ─── */
.team-section {
    padding: 120px 0;
    background: var(--brand-soft);
}

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

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

.team-card-avatar {
    height: 200px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-card-avatar::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 166, 61, 0.2), transparent 70%);
}

.team-initials {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.12);
    letter-spacing: -0.05em;
    position: relative;
    z-index: 1;
}

.team-role-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-family: var(--font-head);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    background: rgba(232, 166, 61, 0.2);
    color: var(--amber-light);
    border: 1px solid rgba(232, 166, 61, 0.3);
    z-index: 2;
}

.team-card-body {
    padding: 28px;
}

.team-name {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--brand-ink);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.8rem;
    color: var(--brand-muted);
    font-weight: 500;
    margin-bottom: 16px;
}

.team-bio {
    font-size: 0.85rem;
    color: var(--brand-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.team-skill {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--brand-soft);
    color: var(--brand-mid);
    border: 1px solid var(--brand-line);
}

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

.roi-card {
    background: var(--brand-soft);
    border: 1px solid var(--brand-line);
    border-radius: 16px;
    padding: 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease-expo), box-shadow 0.4s;
}

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

.roi-card-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

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

.roi-card-body {
    font-size: 0.875rem;
    color: var(--brand-muted);
    line-height: 1.8;
    flex: 1;
}

.roi-card-metric {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--brand-line);
}

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

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

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

/* ROI timeline bar */
.roi-timeline {
    background: var(--navy);
    border-radius: 20px;
    padding: 48px;
    margin-top: 64px;
    position: relative;
    overflow: hidden;
}

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

.roi-tl-label {
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 32px;
}

.roi-tl-track {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 100px;
    margin-bottom: 16px;
}

.roi-tl-bar {
    flex: 1;
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: height 1.5s var(--ease-expo);
}

.roi-tl-month {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    font-weight: 500;
}

.roi-tl-months {
    display: flex;
    gap: 12px;
}

.roi-tl-months>div {
    flex: 1;
    text-align: center;
}

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

/* ─── 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: #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-logo .ng-logo-img {
    width: 36px;
    height: 36px;
}

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

/* ─── REVEAL DEFAULTS ─── */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 1;
}

/* ─── 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 (≤1400px) ── */
@media (max-width: 1400px) {
    .about-hero-circle {
        width: 480px;
        height: 480px;
    }

    .hero-philosophy-card {
        padding: 36px;
    }

    .roi-timeline {
        padding: 40px;
    }
}

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

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

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

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

    .hero-philosophy-card {
        padding: 32px;
    }

    .hero-philo-quote {
        font-size: 1.3rem;
    }

    .why-card {
        padding: 28px;
    }

    .problem-card {
        padding: 28px;
    }

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

    .diff-col {
        padding: 40px 32px;
    }

    .roi-card {
        padding: 28px;
    }

    .roi-timeline {
        padding: 36px 40px;
    }

    .seo-visual {
        padding: 28px;
    }
}

/* ── Tablet Landscape (≤992px) ── */
@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 */
    .about-hero {
        min-height: auto;
        padding-top: 88px;
        padding-bottom: 60px;
    }

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

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

    .hero-philosophy-card {
        padding: 28px;
        margin-top: 32px;
    }

    .hero-philo-quote {
        font-size: 1.2rem;
    }

    .hero-philo-stat {
        gap: 20px;
    }

    .hps-num {
        font-size: 1.6rem;
    }

    /* Why */
    .why-section {
        padding: 80px 0;
    }

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

    .why-card-title {
        font-size: 1.05rem;
    }

    /* Problem */
    .problem-section {
        padding: 80px 0;
    }

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

    .problem-counter-row {
        flex-wrap: wrap;
        margin-top: 48px;
    }

    .problem-counter {
        flex: 0 0 50%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .problem-counter:nth-child(2n) {
        border-right: none;
    }

    .problem-counter:last-child {
        border-bottom: none;
    }

    .pcnum {
        font-size: 2rem;
    }

    /* Differentiator */
    .diff-section {
        padding: 80px 0;
    }

    .diff-compare {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .diff-divider {
        display: none;
    }

    .diff-col {
        padding: 36px 28px;
    }

    .diff-col.nirmaan {
        border-top: 3px solid var(--teal-dark);
    }

    /* Pillars */
    .pillars-section {
        padding: 80px 0;
    }

    .pillar-block {
        padding: 36px 24px;
    }

    .pillars-connector {
        display: none;
    }

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

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

    .data-insight-row {
        flex-wrap: wrap;
    }

    .data-insight {
        flex: 0 0 calc(50% - 6px);
    }

    /* SEO */
    .seo-section {
        padding: 80px 0;
    }

    .seo-visual {
        padding: 24px;
        margin-top: 32px;
        height: auto;
    }

    /* Team */
    .team-section {
        padding: 80px 0;
    }

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

    .roi-card {
        padding: 28px 22px;
    }

    .roi-timeline {
        padding: 32px 36px;
        margin-top: 48px;
    }

    .roi-tl-track {
        height: 80px;
    }

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

    .cta-headline {
        font-size: clamp(2rem, 4.5vw, 3.5rem);
    }

    .cta-trio {
        gap: 16px;
    }

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

/* ── Tablet Portrait (≤768px) ── */
@media (max-width: 768px) {
    .ng-nav {
        padding: 0 20px;
    }

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

    .about-hero-headline {
        font-size: clamp(2rem, 7vw, 2.8rem);
        margin-bottom: 20px;
    }

    .about-hero-sub {
        font-size: 0.9rem;
        margin-bottom: 28px;
    }

    .d-flex.gap-3.flex-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 12px !important;
    }

    .d-flex.gap-3.flex-wrap .btn-primary-ng,
    .d-flex.gap-3.flex-wrap .btn-ghost-ng {
        width: 100%;
        justify-content: center;
    }

    .hero-philosophy-card {
        padding: 24px;
    }

    .hero-philo-quote {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .hero-philo-stat {
        gap: 14px;
        flex-wrap: wrap;
    }

    .hps-num {
        font-size: 1.4rem;
    }

    .hps-lbl {
        font-size: 0.72rem;
    }

    .hero-philo-tags {
        gap: 6px;
        margin-top: 20px;
    }

    .hpt {
        font-size: 0.62rem;
        padding: 5px 10px;
    }

    /* Why */
    .why-section {
        padding: 64px 0;
    }

    .why-manifesto {
        font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    }

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

    .why-card-icon {
        font-size: 1.6rem;
        margin-bottom: 14px;
    }

    .why-card-title {
        font-size: 1rem;
    }

    .why-card-body {
        font-size: 0.84rem;
    }

    /* Problem */
    .problem-section {
        padding: 64px 0;
    }

    .problem-headline {
        font-size: clamp(1.8rem, 5.5vw, 2.5rem);
    }

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

    .problem-card-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        margin-bottom: 18px;
    }

    .problem-card-title {
        font-size: 1rem;
    }

    .problem-card-body {
        font-size: 0.84rem;
    }

    .problem-counter-row {
        margin-top: 36px;
    }

    .problem-counter {
        flex: 0 0 50%;
        padding: 24px 20px;
    }

    .pcnum {
        font-size: 1.8rem;
    }

    .pclbl {
        font-size: 0.75rem;
    }

    /* Differentiator */
    .diff-section {
        padding: 64px 0;
    }

    .diff-col {
        padding: 28px 22px;
    }

    .diff-col-title {
        font-size: 1.05rem;
        margin-bottom: 18px;
    }

    .diff-col-label {
        font-size: 0.62rem;
        margin-bottom: 20px;
    }

    .diff-text {
        font-size: 0.83rem;
    }

    .diff-compare {
        margin-top: 32px;
        border-radius: 14px;
    }

    /* Pillars */
    .pillars-section {
        padding: 64px 0;
    }

    .pillar-block {
        padding: 28px 22px;
    }

    .pillar-block-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .pillar-block-title {
        font-size: 1.2rem;
    }

    .pillar-block-body {
        font-size: 0.85rem;
    }

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

    .data-headline {
        font-size: clamp(1.8rem, 5vw, 2.6rem);
    }

    .data-body-text {
        font-size: 0.9rem;
    }

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

    .data-dash-body {
        padding: 16px;
    }

    .data-insight {
        flex: 0 0 100%;
    }

    .data-insight-row {
        flex-direction: column;
    }

    .data-point {
        gap: 12px;
        margin-bottom: 20px;
    }

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

    .dp-title {
        font-size: 0.92rem;
    }

    .dp-body {
        font-size: 0.82rem;
    }

    /* SEO */
    .seo-section {
        padding: 64px 0;
    }

    .seo-item {
        padding: 18px 0;
        gap: 12px;
    }

    .seo-item-title {
        font-size: 0.92rem;
    }

    .seo-item-body {
        font-size: 0.82rem;
    }

    .seo-visual {
        padding: 20px;
        border-radius: 14px;
    }

    .seo-rank-item {
        padding: 10px 12px;
        gap: 10px;
    }

    .seo-rank-query {
        font-size: 0.78rem;
    }

    /* Team */
    .team-section {
        padding: 64px 0;
    }

    .team-card-avatar {
        height: 160px;
    }

    .team-initials {
        font-size: 2.4rem;
    }

    .team-card-body {
        padding: 22px;
    }

    .team-name {
        font-size: 1rem;
    }

    .team-bio {
        font-size: 0.8rem;
    }

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

    .roi-card {
        padding: 24px 18px;
    }

    .roi-card-title {
        font-size: 0.95rem;
    }

    .roi-card-body {
        font-size: 0.82rem;
    }

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

    .roi-timeline {
        padding: 28px 24px;
        border-radius: 14px;
        margin-top: 36px;
    }

    .roi-tl-track {
        height: 70px;
        gap: 8px;
    }

    .roi-tl-month {
        font-size: 0.62rem;
    }

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

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

    .cta-body {
        font-size: 0.9rem;
        margin-bottom: 36px;
    }

    .cta-trio {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 36px;
    }

    .cta-divider {
        display: none;
    }

    .cta-section .d-flex.gap-3 {
        flex-direction: column;
        align-items: stretch;
        gap: 12px !important;
        max-width: 340px;
        margin: 0 auto;
    }

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

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

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

/* ── Large Mobile (≤576px) ── */
@media (max-width: 576px) {
    .ng-nav {
        padding: 0 16px;
    }

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

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

    /* Hero */
    .about-hero {
        padding-top: 96px;
        padding-bottom: 40px;
    }

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

    .about-hero-sub {
        font-size: 0.87rem;
        margin-bottom: 22px;
    }

    .hero-philosophy-card {
        padding: 20px;
        border-radius: 14px;
    }

    .hero-philo-quote {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .hero-philo-divider {
        margin: 16px 0;
    }

    .hero-philo-stat {
        gap: 10px;
    }

    .hps-num {
        font-size: 1.2rem;
    }

    .hps-lbl {
        font-size: 0.68rem;
    }

    /* Why */
    .why-section {
        padding: 52px 0;
    }

    .why-card {
        padding: 20px 16px;
    }

    .why-card-num {
        font-size: 0.55rem;
        margin-bottom: 12px;
    }

    .why-card-icon {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .why-card-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .why-card-body {
        font-size: 0.82rem;
    }

    /* Problem */
    .problem-section {
        padding: 52px 0;
    }

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

    .problem-card {
        padding: 20px 16px;
    }

    .problem-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .problem-card-label {
        font-size: 0.6rem;
    }

    .problem-card-title {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .problem-card-body {
        font-size: 0.82rem;
    }

    .problem-counter-row {
        margin-top: 28px;
        border-radius: 12px;
    }

    .problem-counter {
        flex: 0 0 50%;
        padding: 20px 14px;
    }

    .pcnum {
        font-size: 1.6rem;
    }

    .pclbl {
        font-size: 0.7rem;
    }

    /* Differentiator */
    .diff-section {
        padding: 52px 0;
    }

    .diff-col {
        padding: 22px 16px;
    }

    .diff-compare {
        margin-top: 24px;
        border-radius: 12px;
    }

    .diff-col-title {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .diff-item {
        gap: 10px;
        margin-bottom: 14px;
    }

    .diff-ico {
        width: 20px;
        height: 20px;
        font-size: 0.62rem;
    }

    .diff-text {
        font-size: 0.8rem;
    }

    /* Pillars */
    .pillars-section {
        padding: 52px 0;
    }

    .pillar-block {
        padding: 22px 18px;
    }

    .pillar-block-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        margin-bottom: 16px;
    }

    .pillar-num {
        font-size: 0.58rem;
        margin-bottom: 8px;
    }

    .pillar-block-title {
        font-size: 1.1rem;
    }

    .pillar-block-sub {
        font-size: 0.72rem;
        margin-bottom: 12px;
    }

    .pillar-block-body {
        font-size: 0.82rem;
    }

    .pillar-block-tags {
        gap: 6px;
        margin-top: 16px;
    }

    .pbt {
        font-size: 0.65rem;
        padding: 4px 10px;
    }

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

    .data-headline {
        font-size: clamp(1.6rem, 6.5vw, 2.2rem);
    }

    .data-body-text {
        font-size: 0.85rem;
    }

    .data-dashboard {
        margin-top: 28px;
    }

    .data-dash-body {
        padding: 12px;
    }

    .data-metric {
        padding: 12px;
    }

    .dmv {
        font-size: 1.1rem;
    }

    .dml {
        font-size: 0.62rem;
    }

    .data-source-row {
        padding: 12px;
    }

    .dsrc-name {
        font-size: 0.72rem;
    }

    .dsrc-bar-wrap {
        width: 60px;
    }

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

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

    /* SEO */
    .seo-section {
        padding: 52px 0;
    }

    .seo-item {
        padding: 14px 0;
    }

    .seo-item-num {
        font-size: 0.6rem;
    }

    .seo-item-title {
        font-size: 0.88rem;
        margin-bottom: 4px;
    }

    .seo-item-body {
        font-size: 0.79rem;
    }

    .seo-visual {
        padding: 16px;
        border-radius: 12px;
    }

    .seo-rank-item {
        padding: 9px 10px;
        margin-bottom: 8px;
    }

    .seo-rank-badge {
        width: 24px;
        height: 24px;
        font-size: 0.62rem;
    }

    .seo-rank-query {
        font-size: 0.74rem;
    }

    .seo-rank-status {
        font-size: 0.62rem;
    }

    /* Team */
    .team-section {
        padding: 52px 0;
    }

    .team-card-avatar {
        height: 140px;
    }

    .team-initials {
        font-size: 2rem;
    }

    .team-role-badge {
        font-size: 0.58rem;
        padding: 4px 10px;
    }

    .team-card-body {
        padding: 18px;
    }

    .team-name {
        font-size: 0.95rem;
    }

    .team-role {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .team-bio {
        font-size: 0.78rem;
        margin-bottom: 14px;
    }

    .team-skill {
        font-size: 0.62rem;
        padding: 3px 8px;
    }

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

    .roi-card {
        padding: 20px 16px;
    }

    .roi-card-icon {
        font-size: 1.8rem;
        margin-bottom: 14px;
    }

    .roi-card-title {
        font-size: 0.92rem;
        margin-bottom: 8px;
    }

    .roi-card-body {
        font-size: 0.8rem;
    }

    .rcm-num {
        font-size: 1.3rem;
    }

    .rcm-lbl {
        font-size: 0.7rem;
    }

    .roi-timeline {
        padding: 22px 18px;
        margin-top: 28px;
        border-radius: 12px;
    }

    .roi-tl-track {
        height: 60px;
        gap: 6px;
    }

    .roi-tl-month {
        font-size: 0.58rem;
    }

    .roi-tl-bar {
        border-radius: 4px 4px 0 0;
    }

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

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

    .cta-body {
        font-size: 0.85rem;
        margin-bottom: 28px;
    }

    .cta-trio-item {
        font-size: 0.78rem;
    }

    .cta-trio {
        gap: 10px;
        margin-bottom: 28px;
    }

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

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

/* ── Small Mobile (≤400px) ── */
@media (max-width: 400px) {
    .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 */
    .about-hero {
        padding-top: 80px;
        padding-bottom: 36px;
    }

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

    .hero-philo-stat {
        flex-direction: column;
        gap: 10px;
    }

    .hero-philosophy-card {
        padding: 18px;
    }

    .hero-philo-quote {
        font-size: 0.95rem;
    }

    /* All sections — tightest padding */
    .why-section,
    .problem-section,
    .diff-section,
    .pillars-section,
    .data-section,
    .seo-section,
    .team-section,
    .roi-section {
        padding: 44px 0;
    }

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

    /* Problem counters → full width each */
    .problem-counter {
        flex: 0 0 100%;
    }

    .problem-counter:nth-child(n) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        border-right: none;
    }

    /* Diff: single col already, tighten further */
    .diff-col {
        padding: 18px 14px;
    }

    /* Pillar */
    .pillar-block {
        padding: 18px 14px;
    }

    .pillar-block-title {
        font-size: 1rem;
    }

    /* Data */
    .data-metric-row {
        grid-template-columns: 1fr 1fr;
    }

    /* Team */
    .team-card-avatar {
        height: 120px;
    }

    /* ROI */
    .roi-card {
        padding: 16px 14px;
    }

    .roi-timeline {
        padding: 18px 14px;
    }

    .roi-tl-track {
        height: 50px;
    }

    /* CTA */
    .cta-headline {
        font-size: clamp(1.4rem, 9vw, 1.8rem);
    }

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