/* ══════════════════════════════════════════════════════
   NRI HEDGING SOLUTIONS — nri-hedging-services.css
   Theme: Institutional · Precision · Bloomberg Terminal
   Palette: Deep Charcoal + Electric Cyan + Signal Green
   Philosophy: Clarity through control. Every pixel is intentional.
   Fonts: Outfit (headings & data) · Inter (body)
══════════════════════════════════════════════════════ */

/* ── Design tokens ── */
:root {
    --nh-bg: #f8fafc;
    --nh-surface: #f1f5f9;
    --nh-card: #ffffff;
    --nh-card-alt: #f1f5f9;
    --nh-card-hover: #e2e8f0;
    --nh-blue: #0284c7;
    --nh-blue-bright: #0ea5e9;
    --nh-blue-dim: #0369a1;
    --nh-blue-pale: rgba(2, 132, 199, 0.06);
    --nh-blue-glow: rgba(2, 132, 199, 0.2);
    --nh-blue-border: rgba(2, 132, 199, 0.18);
    --nh-green: #059669;
    --nh-green-bright: #10b981;
    --nh-green-pale: rgba(5, 150, 105, 0.08);
    --nh-green-border: rgba(5, 150, 105, 0.2);
    --nh-amber: #d97706;
    --nh-amber-pale: rgba(217, 119, 6, 0.08);
    --nh-red: #e11d48;
    --nh-red-pale: rgba(225, 29, 72, 0.08);
    --nh-white: #0f172a;
    --nh-text: rgba(15, 23, 42, 0.85);
    --nh-text-dim: rgba(71, 85, 105, 0.7);
    --nh-border: rgba(2, 132, 199, 0.12);
    --nh-border-faint: rgba(15, 23, 42, 0.05);
    --nh-grid: rgba(2, 132, 199, 0.04);
}

/* ── Page entrance ── */
#main {
    opacity: 1;
    animation: nhPageIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

#navbar {
    opacity: 1 !important;
    transition: none !important;
}

/* Premium Icon System — Localized for NRI Hedging */
.sfv-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 12px;
    color: var(--nh-blue);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
    border: 1px solid var(--nh-border);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.sfv-icon-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(14, 165, 233, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Icon box sizing */
.sfv-icon-box--sm {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.sfv-icon-box--sm i {
    width: 20px !important;
    height: 20px !important;
}

.sfv-icon-box--lg {
    width: 56px;
    height: 56px;
    border-radius: 16px;
}

.sfv-icon-box--lg i {
    width: 28px !important;
    height: 28px !important;
}

.sfv-icon-box i {
    width: 22px;
    height: 22px;
    stroke-width: 2px;
    position: relative;
    z-index: 1;
}

/* Color variants localized to NH palette */
.sfv-icon-box--blue {
    color: var(--nh-blue);
    border-color: var(--nh-blue-border);
}

.sfv-icon-box--green {
    color: var(--nh-green);
    border-color: var(--nh-green-border);
}

.sfv-icon-box--amber {
    color: var(--nh-amber);
    border-color: rgba(245, 158, 11, 0.15);
}

.sfv-icon-box--red {
    color: var(--nh-red);
    border-color: rgba(239, 68, 68, 0.15);
}

/* Page-specific overrides */
.nh-page .sfv-icon-box {
    background: transparent;
    box-shadow: none;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
}

/* Inline variant to override global box styles */
.icon-inline {
    display: inline-flex !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    vertical-align: middle;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.nh-page .sfv-icon-box:hover {
    transform: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border-color: inherit !important;
}

.nh-page .sfv-icon-box:hover::before {
    opacity: 0 !important;
}

/* Timeline exception — must remain opaque white */
.nh-step-circle.sfv-icon-box {
    background: #ffffff !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    margin-bottom: 16px !important;
}

.nh-step.active .nh-step-circle.sfv-icon-box {
    background: #ffffff !important;
    border-color: var(--nh-blue) !important;
}


@keyframes nhPageIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Scroll reveal ── */
.nh-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.nh-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════════════════
   BASE LAYOUT
══════════════════════════════════════════════════════ */
.nh-page {
    background: var(--nh-bg);
    color: var(--nh-text);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    position: relative;
}

/* Global grid overlay */
.nh-page::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(var(--nh-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--nh-grid) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.nh-container {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 6vw;
    position: relative;
    z-index: 1;
}

.nh-container-narrow {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 6vw;
    position: relative;
    z-index: 1;
}

.nh-section {
    padding: 100px 0;
    position: relative;
}

.nh-section-dark {
    background: var(--nh-surface);
    border-top: 1px solid var(--nh-border-faint);
    border-bottom: 1px solid var(--nh-border-faint);
}

.nh-section-card {
    background: var(--nh-card);
}

.nh-center {
    text-align: center;
}

/* ── Typography ── */
.nh-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: var(--nh-white);
    letter-spacing: -0.8px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.nh-section-sub {
    font-size: 1.05rem;
    color: var(--nh-text-dim);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.72;
}

/* ── Labels ── */
.nh-label {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--nh-blue);
    border: 1px solid var(--nh-blue-border);
    background: var(--nh-blue-pale);
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.nh-label-green {
    color: var(--nh-green);
    border-color: var(--nh-green-border);
    background: var(--nh-green-pale);
}

.nh-label-amber {
    color: var(--nh-amber);
    border-color: rgba(245, 158, 11, 0.25);
    background: var(--nh-amber-pale);
}

/* ── Buttons ── */
.nh-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--nh-blue);
    color: #fff;
    padding: 14px 30px;
    border-radius: 26px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.35);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.3px;
}

.nh-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(14, 165, 233, 0.5);
    background: var(--nh-blue-bright);
}

.nh-btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--nh-text);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 28px;
    border-radius: 26px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    font-family: 'Outfit', sans-serif;
}

.nh-btn-ghost:hover {
    background: var(--nh-blue-pale);
    border-color: var(--nh-blue-border);
    transform: translateY(-2px);
    color: var(--nh-white);
}

/* ══════════════════════════════════════════════════════
   SECTION 1 — HERO
   Full cinematic dark. Currency flow animation.
══════════════════════════════════════════════════════ */
.nh-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 70% 40%, rgba(14, 165, 233, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 80%, rgba(16, 185, 129, 0.04) 0%, transparent 50%),
        var(--nh-bg);
}

/* Scanning line effect */
.nh-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.4), transparent);
    animation: nhScanLine 8s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes nhScanLine {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(200vh);
        opacity: 0;
    }
}

.nh-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Left: content */
.nh-hero-left {
    flex: 1;
}

.nh-hero-micro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--nh-blue);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.nh-hero-micro::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--nh-blue);
}

.nh-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 5.5vw, 4.6rem);
    font-weight: 900;
    color: var(--nh-white);
    line-height: 1.04;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
}

.nh-hero-title .nh-accent-blue {
    background: linear-gradient(135deg, var(--nh-blue) 0%, var(--nh-blue-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nh-hero-title .nh-accent-green {
    color: var(--nh-green);
    -webkit-text-fill-color: var(--nh-green);
}

.nh-hero-sub {
    font-size: 1.12rem;
    color: var(--nh-text-dim);
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.nh-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Trust strip */
.nh-hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid var(--nh-border-faint);
}

.nh-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: var(--nh-text-dim);
    letter-spacing: 0.5px;
}

.nh-trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--nh-green);
    animation: nhBlink 2s ease-in-out infinite;
}

@keyframes nhBlink {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 4px var(--nh-green);
    }

    50% {
        opacity: 0.4;
        box-shadow: none;
    }
}

/* Right: currency flow visual */
.nh-hero-right {
    flex: 0 0 420px;
    position: relative;
    height: 420px;
}

/* Currency flow system */
.nh-flow-system {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.nh-flow-node {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    border: 1.5px solid var(--nh-blue-border);
}

.nh-flow-node--usd {
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0.04) 100%);
    box-shadow: 0 0 40px rgba(14, 165, 233, 0.15), inset 0 0 20px rgba(14, 165, 233, 0.05);
    animation: nhNodePulse 3s ease-in-out infinite;
}

.nh-flow-node--lock {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.04) 100%);
    border-color: rgba(245, 158, 11, 0.25);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.12), inset 0 0 16px rgba(245, 158, 11, 0.05);
    animation: nhNodePulse 3s ease-in-out 0.5s infinite;
}

.nh-flow-node--inr {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0.04) 100%);
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.12), inset 0 0 20px rgba(16, 185, 129, 0.04);
    animation: nhNodePulse 3s ease-in-out 1s infinite;
}

@keyframes nhNodePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

.nh-flow-currency {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nh-blue-bright);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.nh-flow-node--inr .nh-flow-currency {
    color: var(--nh-green);
}

.nh-flow-node--lock .nh-flow-currency {
    font-size: 1.8rem;
    color: var(--nh-amber);
}

.nh-flow-label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--nh-text-dim);
    font-family: 'Outfit', sans-serif;
}

/* Connecting arrows between nodes */
.nh-flow-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
    position: relative;
    z-index: 1;
}

.nh-flow-line {
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, rgba(14, 165, 233, 0.5), rgba(14, 165, 233, 0.2));
    position: relative;
    overflow: visible;
}

/* Animated particle on the line */
.nh-flow-particle {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--nh-blue);
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 8px var(--nh-blue);
    animation: nhFlowDown 2s ease-in-out infinite;
}

.nh-flow-particle--green {
    background: var(--nh-green);
    box-shadow: 0 0 8px var(--nh-green);
    animation-delay: 1s;
}

.nh-flow-arrow {
    font-size: 12px;
    color: var(--nh-blue);
    opacity: 0.6;
    line-height: 1;
}

@keyframes nhFlowDown {
    0% {
        top: -5px;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Floating badges on the visual */
.nh-flow-badge {
    position: absolute;
    background: rgba(238, 247, 255, 0.9);
    border: 1px solid var(--nh-blue-border);
    border-radius: 8px;
    padding: 10px 14px;
    font-family: 'Outfit', sans-serif;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.nh-flow-badge--1 {
    top: 20px;
    right: 0;
    animation: nhBadgeFloat 6s ease-in-out infinite;
}

.nh-flow-badge--2 {
    bottom: 20px;
    left: 0;
    animation: nhBadgeFloat 6s ease-in-out 2s infinite;
}

@keyframes nhBadgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.nhb-label {
    font-size: 9px;
    color: var(--nh-text-dim);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.nhb-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--nh-white);
}

.nhb-sub {
    font-size: 9px;
    color: var(--nh-green);
    font-weight: 600;
}

/* ══════════════════════════════════════════════════════
   SECTION 2 — CORE MESSAGE (THE EQUATION)
══════════════════════════════════════════════════════ */
.nh-equation-section {
    padding: 80px 0;
    background: var(--nh-card);
    border-top: 1px solid var(--nh-border-faint);
    border-bottom: 1px solid var(--nh-border-faint);
    overflow: hidden;
    position: relative;
}

.nh-equation-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(14, 165, 233, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.nh-equation-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.nh-equation-heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--nh-white);
    margin-bottom: 48px;
    letter-spacing: -0.8px;
}

.nh-equation-heading em {
    font-style: normal;
    color: var(--nh-blue);
}

/* The equation formula */
.nh-equation-formula {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.nh-eq-term {
    background: var(--nh-card-alt);
    border: 1px solid var(--nh-border);
    border-radius: 12px;
    padding: 24px 32px;
    text-align: center;
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.nh-eq-term:hover {
    border-color: var(--nh-blue-border);
    box-shadow: 0 0 24px rgba(14, 165, 233, 0.08);
}

.nh-eq-term--blue {
    border-color: var(--nh-blue-border);
    background: rgba(14, 165, 233, 0.05);
}

.nh-eq-term--green {
    border-color: var(--nh-green-border);
    background: rgba(16, 185, 129, 0.05);
}

.nh-eq-term--result {
    border-color: rgba(245, 158, 11, 0.25);
    background: rgba(245, 158, 11, 0.06);
    box-shadow: 0 0 32px rgba(245, 158, 11, 0.08);
}

.nh-eq-icon {
    margin-bottom: 12px;
    display: block;
}

.nh-eq-icon i {
    width: 32px !important;
    height: 32px !important;
}

.nh-eq-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--nh-text-dim);
    margin-bottom: 6px;
    display: block;
}

.nh-eq-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--nh-white);
    line-height: 1.25;
}

.nh-eq-term--blue .nh-eq-value {
    color: var(--nh-blue-bright);
}

.nh-eq-term--green .nh-eq-value {
    color: var(--nh-green-bright);
}

.nh-eq-term--result .nh-eq-value {
    color: var(--nh-amber);
    font-size: 1.2rem;
}

.nh-eq-op {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--nh-border);
    flex-shrink: 0;
}

.nh-eq-equals {
    font-size: 2.4rem;
    color: var(--nh-amber);
}

.nh-equation-note {
    font-size: 0.95rem;
    color: var(--nh-text-dim);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.72;
}

.nh-equation-note strong {
    color: var(--nh-white);
    font-weight: 700;
}

/* ══════════════════════════════════════════════════════
   SECTION 3 — TWO FACTORS (SPLIT SCREEN)
══════════════════════════════════════════════════════ */
.nh-split-section {
    padding: 100px 0;
    position: relative;
}

.nh-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

/* Controlled side */
.nh-split-panel {
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
}

.nh-split-panel--control {
    background: rgba(16, 185, 129, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.12);
    border-radius: 20px 0 0 20px;
}

.nh-split-panel--chaos {
    background: rgba(245, 158, 11, 0.04);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 0 20px 20px 0;
    border-left: none;
}

.nh-split-panel--chaos::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.nh-split-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
}

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

.nh-split-panel--control .nh-split-icon {
    background: rgba(16, 185, 129, 0.1);
}

.nh-split-panel--chaos .nh-split-icon {
    background: rgba(245, 158, 11, 0.1);
}

.nh-split-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--nh-white);
}

.nh-split-panel--control .nh-split-title {
    color: var(--nh-green-bright);
}

.nh-split-panel--chaos .nh-split-title {
    color: var(--nh-amber);
}

.nh-split-desc {
    font-size: 1rem;
    color: var(--nh-text-dim);
    line-height: 1.75;
    margin-bottom: 28px;
}

.nh-split-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.nh-split-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.92rem;
    color: var(--nh-text);
    font-weight: 500;
}

.nh-split-panel--control .nh-split-item {
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.nh-split-panel--chaos .nh-split-item {
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.1);
}

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

.nh-split-panel--control .nh-split-item-dot {
    background: var(--nh-green);
}

.nh-split-panel--chaos .nh-split-item-dot {
    background: var(--nh-amber);
}

.nh-split-verdict {
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.3px;
}

.nh-split-panel--control .nh-split-verdict {
    background: rgba(16, 185, 129, 0.1);
    color: var(--nh-green-bright);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.nh-split-panel--chaos .nh-split-verdict {
    background: rgba(245, 158, 11, 0.1);
    color: var(--nh-amber);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* ══════════════════════════════════════════════════════
   SECTION 4 — THE PROBLEM (IMPACT CALCULATION)
══════════════════════════════════════════════════════ */
.nh-problem-section {
    padding: 100px 0;
    background: var(--nh-surface);
    position: relative;
    overflow: hidden;
}

.nh-problem-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(244, 63, 94, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.nh-problem-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* The calculation visual */
.nh-calc-visual {
    max-width: 796px;
    margin: 48px auto 0;
    position: relative;
}

/* Vertical highlight bar for the numbers */
.nh-calc-visual::after {
    content: '';
    position: absolute;
    top: -16px;
    bottom: -16px;
    right: 33px;
    width: clamp(120px, 20vw, 150px);
    background: rgba(16, 185, 129, 0.12);
    border: 2px solid var(--nh-green);
    border-radius: 12px;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
}

.nh-calc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 52px 20px 32px;
    border-radius: 12px;
    margin-bottom: 4px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nh-calc-row--inr {
    background: rgba(14, 165, 233, 0.06);
    border: 1px solid var(--nh-blue-border);
}

.nh-calc-row--fx {
    background: rgba(244, 63, 94, 0.06);
    border: 1px solid rgba(244, 63, 94, 0.15);
    z-index: 10;
}

.nh-calc-row--result {
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.2);
    margin-top: 12px;
}

.nh-calc-divider {
    text-align: left;
    padding: 8px 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: rgba(15, 23, 42, 0.4);
    letter-spacing: 4px;
}

.nh-calc-desc {
    flex: 1;
    min-width: 0;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: var(--nh-text-dim);
    text-align: left;
}

.nh-calc-desc strong {
    color: var(--nh-white);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    display: block;
    margin-bottom: 4px;
}

.nh-calc-desc .nh-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    color: var(--nh-text-dim);
}

.nh-calc-number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 500;
    line-height: 1;
    flex-shrink: 0;
    text-align: right;
}

.nh-calc-row--inr .nh-calc-number {
    color: var(--nh-blue-bright);
}

.nh-calc-row--fx .nh-calc-number {
    color: var(--nh-red);
}

.nh-calc-row--result .nh-calc-number {
    color: var(--nh-amber);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
}

.nh-calc-note {
    margin-top: 42px;
    font-size: 0.92rem;
    color: var(--nh-text-dim);
    line-height: 1.7;
    background: rgba(244, 63, 94, 0.05);
    border: 1px solid rgba(244, 63, 94, 0.1);
    border-radius: 10px;
    padding: 16px 24px;
    display: inline-block;
    max-width: 590px;
}

.nh-calc-note strong {
    color: var(--nh-red);
}

/* ══════════════════════════════════════════════════════
   SECTION 5 — HOW HEDGING WORKS (STEP FLOW)
══════════════════════════════════════════════════════ */
.nh-steps-section {
    padding: 100px 0;
}

.nh-steps-wrap {
    position: relative;
    margin-top: 60px;
}

/* Connecting track */
.nh-steps-track {
    position: absolute;
    top: 28px;
    z-index: 0;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 1px;
    background: linear-gradient(90deg, var(--nh-blue-border), var(--nh-green-border));
    overflow: hidden;
}

.nh-steps-track-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--nh-blue), var(--nh-green));
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 8px var(--nh-blue);
}

.nh-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.nh-step {
    text-align: center;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.nh-step.active {
    opacity: 1;
}

.nh-step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffffff !important;
    border: 1.5px solid var(--nh-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 16px;
    position: relative;
    z-index: 2;
    transition: border-color 0.4s, box-shadow 0.4s, background 0.4s;
}

.nh-step.active .nh-step-circle {
    border-color: var(--nh-blue);
    background: #ffffff !important;
    box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.08), 0 0 20px rgba(14, 165, 233, 0.15);
}

.nh-step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--nh-blue);
    margin-bottom: 10px;
}

.nh-step h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--nh-white);
    margin-bottom: 8px;
    line-height: 1.35;
}

.nh-step p {
    font-size: 0.82rem;
    color: var(--nh-text-dim);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════
   SECTION 6 — COMPARISON TABLE
══════════════════════════════════════════════════════ */
.nh-table-section {
    padding: 100px 0;
    background: var(--nh-surface);
}

.nh-table-wrap {
    margin-top: 48px;
    border: 1px solid var(--nh-border);
    border-radius: 20px;
    overflow: hidden;
}

.nh-table {
    width: 100%;
    border-collapse: collapse;
}

.nh-table thead th {
    padding: 20px 28px;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--nh-border);
}

.nh-table thead th:first-child {
    color: var(--nh-text-dim);
    background: var(--nh-card);
    width: 35%;
}

.nh-table thead th.nh-th-unhedged {
    color: var(--nh-text-dim);
    background: var(--nh-card);
}

.nh-table thead th.nh-th-hedged {
    color: var(--nh-blue);
    background: rgba(114, 210, 255, 0.476);
    border-left: 2px solid var(--nh-blue-border);
    /* border-right: 2px solid var(--nh-blue); */
}

.nh-table tbody tr {
    border-bottom: 1px solid var(--nh-border-faint);
    transition: background 0.2s;
}

.nh-table tbody tr:last-child {
    border-bottom: none;
}

.nh-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.nh-table tbody td {
    padding: 20px 28px;
    font-size: 0.92rem;
}

.nh-table tbody td:first-child {
    color: var(--nh-text-dim);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    background: var(--nh-card);
}

.nh-table tbody td.nh-td-unhedged {
    color: var(--nh-text);
    background: var(--nh-card);
}

.nh-table tbody td.nh-td-hedged {
    color: var(--nh-blue);
    font-weight: 700;
    background: rgba(231, 247, 255, 0.781);
    border-left: 2px solid var(--nh-blue-border);
    /* border-right: 2px solid var(--nh-blue); */
    border-bottom: 2px solid var(--nh-blue-border);
}

.nh-td-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
}

.nh-badge-green {
    background: var(--nh-green-pale);
    color: var(--nh-green-bright);
    border: 1px solid var(--nh-green-border);
}

.nh-badge-red {
    background: var(--nh-red-pale);
    color: #fb7185;
    border: 1px solid rgba(244, 63, 94, 0.2);
}

.nh-badge-dim {
    background: rgba(255, 255, 255, 0.04);
    color: var(--nh-text-dim);
    border: 1px solid var(--nh-border-faint);
}

.nh-table-insight {
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid var(--nh-blue-border);
    border-radius: 12px;
    padding: 20px 28px;
    margin-top: 24px;
    text-align: center;
    font-size: 0.92rem;
    color: var(--nh-blue-bright);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.3px;
}

/* ══════════════════════════════════════════════════════
   SECTION 7 — WHO SHOULD CONSIDER HEDGING
══════════════════════════════════════════════════════ */
.nh-who-section {
    padding: 100px 0;
}

.nh-who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.nh-who-card {
    background: var(--nh-card);
    border: 1px solid var(--nh-border);
    border-radius: 18px;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
}

.nh-who-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--nh-blue), var(--nh-blue-bright));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nh-who-card:hover {
    transform: translateY(-6px);
    border-color: var(--nh-blue-border);
    box-shadow: 0 16px 48px rgba(14, 165, 233, 0.08);
}

.nh-who-card:hover::before {
    transform: scaleX(1);
}

.nh-who-icon {
    margin-bottom: 20px !important;
    display: flex !important;
}

.nh-who-icon i {
    width: 32px !important;
    height: 32px !important;
}

.nh-who-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--nh-white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.nh-who-card p {
    font-size: 0.85rem;
    color: var(--nh-text-dim);
    line-height: 1.65;
}

/* ══════════════════════════════════════════════════════
   SECTION 8 — KEY CONSIDERATIONS
══════════════════════════════════════════════════════ */
.nh-considerations-section {
    padding: 100px 0;
    background: var(--nh-surface);
}

.nh-considerations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
}

.nh-consideration-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: var(--nh-card);
    border: 1px solid var(--nh-border);
    border-radius: 14px;
    transition: border-color 0.3s, background 0.3s;
}

.nh-consideration-item:hover {
    border-color: var(--nh-blue-border);
    background: var(--nh-card-hover);
}

.nh-consideration-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--nh-blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    border: 1px solid var(--nh-blue-border);
}

.nh-consideration-text {
    font-size: 0.92rem;
    color: var(--nh-text);
    line-height: 1.65;
    padding-top: 8px;
}

.nh-consideration-text strong {
    color: var(--nh-white);
}

/* ══════════════════════════════════════════════════════
   SECTION 9 — INSTRUMENTS
══════════════════════════════════════════════════════ */
.nh-instruments-section {
    padding: 100px 0;
}

.nh-instruments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.nh-instrument-card {
    background: var(--nh-card);
    border: 1px solid var(--nh-border);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
}

.nh-instrument-card:hover {
    transform: translateY(-6px);
    border-color: var(--nh-blue-border);
    box-shadow: 0 16px 40px rgba(14, 165, 233, 0.07);
}

.nh-instrument-icon {
    margin: 0 auto 20px !important;
    display: flex !important;
}

.nh-instrument-icon i {
    width: 32px !important;
    height: 32px !important;
}

.nh-instrument-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--nh-white);
    margin-bottom: 8px;
}

.nh-instrument-card p {
    font-size: 0.85rem;
    color: var(--nh-text-dim);
    line-height: 1.6;
}

.nh-instruments-note {
    margin-top: 32px;
    text-align: center;
    font-size: 0.88rem;
    color: var(--nh-text-dim);
    background: rgba(14, 165, 233, 0.04);
    border: 1px solid var(--nh-blue-border);
    border-radius: 10px;
    padding: 16px 24px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.3px;
}

/* ══════════════════════════════════════════════════════
   SECTION 10 — SPEEDY FINVEST ROLE
══════════════════════════════════════════════════════ */
.nh-role-section {
    padding: 100px 0;
    background: var(--nh-surface);
    position: relative;
    overflow: hidden;
}

.nh-role-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 40%;
    height: 80%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.nh-role-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.nh-role-card {
    background: var(--nh-card);
    border: 1px solid var(--nh-border);
    border-radius: 18px;
    padding: 36px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
}

.nh-role-card:hover {
    transform: translateY(-8px);
    border-color: var(--nh-blue-border);
    box-shadow: 0 20px 56px rgba(14, 165, 233, 0.1);
}

.nh-role-num {
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--nh-blue);
    background: var(--nh-blue-pale);
    border: 1px solid var(--nh-blue-border);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
}

.nh-role-icon {
    margin-bottom: 20px !important;
    display: flex !important;
}

.nh-role-icon i {
    width: 32px !important;
    height: 32px !important;
}

/* .nh-role-card:hover .nh-role-icon {
    transform: scale(1.12) rotate(-5deg);
} */

.nh-role-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--nh-white);
    margin-bottom: 10px;
}

.nh-role-card p {
    font-size: 0.85rem;
    color: var(--nh-text-dim);
    line-height: 1.65;
}

/* ══════════════════════════════════════════════════════
   SECTION 11 — POSITIONING STATEMENT
══════════════════════════════════════════════════════ */
.nh-position-section {
    padding: 80px 0;
    background: var(--nh-card);
    border-top: 1px solid var(--nh-border-faint);
    border-bottom: 1px solid var(--nh-border-faint);
}

.nh-position-inner {
    text-align: center;
    position: relative;
}

.nh-position-quote-mark {
    font-family: 'Outfit', sans-serif;
    font-size: 8rem;
    line-height: 0.6;
    color: rgba(14, 165, 233, 0.06);
    display: block;
    margin-bottom: 20px;
}

.nh-position-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--nh-white);
    letter-spacing: -1px;
    margin-bottom: 24px;
    line-height: 1.15;
}

.nh-position-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--nh-blue) 0%, var(--nh-green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nh-position-text {
    font-size: 1.05rem;
    color: var(--nh-text-dim);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.82;
}

.nh-position-text strong {
    color: var(--nh-white);
}

/* ══════════════════════════════════════════════════════
   SECTION 12 — FAQ
══════════════════════════════════════════════════════ */
.nh-faq-section {
    padding: 100px 0;
}

.nh-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 48px;
}

.nh-faq-item {
    background: var(--nh-card);
    border: 1px solid var(--nh-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.nh-faq-item.open {
    border-color: var(--nh-blue-border);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.06);
}

.nh-faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    cursor: pointer;
}

.nh-faq-trigger h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--nh-white);
    flex: 1;
    padding-right: 16px;
    transition: color 0.2s;
}

.nh-faq-item.open .nh-faq-trigger h4 {
    color: var(--nh-blue-bright);
}

.nh-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--nh-card-alt);
    border: 1px solid var(--nh-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 300;
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    color: var(--nh-text-dim);
}

.nh-faq-item.open .nh-faq-icon {
    background: var(--nh-blue-pale);
    border-color: var(--nh-blue-border);
    color: var(--nh-blue);
    transform: rotate(45deg);
}

.nh-faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nh-faq-item.open .nh-faq-panel {
    max-height: 300px;
}

.nh-faq-inner {
    padding: 0 28px 22px;
    font-size: 0.95rem;
    color: var(--nh-text-dim);
    line-height: 1.78;
}

/* ══════════════════════════════════════════════════════
   SECTION 13 — FINAL CTA
══════════════════════════════════════════════════════ */
.nh-cta-section {
    padding: 80px 0 100px;
}

.nh-cta-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 80px 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--nh-card) 0%, var(--nh-card-alt) 100%);
    border: 1px solid var(--nh-blue-border);
    box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.08), 0 24px 80px rgba(14, 165, 233, 0.06);
}

/* Animated border glow */
.nh-cta-box::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: linear-gradient(135deg,
            rgba(14, 165, 233, 0.3) 0%,
            transparent 30%,
            transparent 70%,
            rgba(16, 185, 129, 0.2) 100%);
    pointer-events: none;
    z-index: 0;
}

.nh-cta-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(14, 165, 233, 0.05) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.nh-cta-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 auto;
}

.nh-cta-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--nh-blue);
    margin-bottom: 24px;
    display: block;
}

.nh-cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--nh-white);
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.15;
}

.nh-cta-desc {
    font-size: 1.05rem;
    color: var(--nh-text-dim);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

.nh-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.nh-cta-micro {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--nh-text-dim);
}

.nh-cta-micro span {
    color: var(--nh-blue);
    margin: 0 12px;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .nh-split-grid {
        grid-template-columns: 1fr;
    }

    .nh-split-panel--control {
        border-radius: 20px 20px 0 0;
    }

    .nh-split-panel--chaos {
        border-radius: 0 0 20px 20px;
        border-left: 1px solid rgba(245, 158, 11, 0.12);
        border-top: none;
    }

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

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

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

    .nh-step {
        display: block;
        padding: 0px 35px;
    }

    .nh-steps-track {
        display: none;
    }
}

@media (max-width: 860px) {
    .nh-hero-inner {
        flex-direction: column;
        gap: 56px;
    }

    .nh-hero-right {
        width: 100%;
        flex: none;
        height: 360px;
    }

    .nh-equation-formula {
        gap: 12px;
    }

    .nh-eq-term {
        padding: 18px 20px;
    }

    .nh-instruments-grid {
        grid-template-columns: 1fr;
    }

    .nh-cta-box {
        padding: 60px 32px;
    }
}

@media (max-width: 640px) {
    .nh-section {
        padding: 60px 0;
    }

    .nh-considerations-grid {
        grid-template-columns: 1fr;
    }

    .nh-who-grid {
        grid-template-columns: 1fr;
    }

    .nh-role-grid {
        grid-template-columns: 1fr;
    }

    .nh-steps-grid {
        grid-template-columns: 1fr;
    }

    .nh-instruments-grid {
        grid-template-columns: 1fr;
    }

    .nh-calc-row {
        gap: 16px;
        padding: 16px 40px 16px 20px;
    }

    .nh-calc-divider {
        padding: 4px 16px;
    }

    .nh-equation-formula {
        flex-direction: column;
        align-items: center;
    }

    .nh-eq-op,
    .nh-eq-equals {
        transform: rotate(90deg);
    }

    .nh-hero-right {
        height: 300px;
    }

    .nh-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-inline: -4%;
        padding-inline: 4%;
    }

    .nh-table {
        min-width: 460px;
        /* Gives enough room to not feel cramped */
        width: 100%;
        table-layout: auto;
    }

    .nh-table thead th,
    .nh-table tbody td {
        padding: 16px 12px;
        font-size: 0.88rem;
    }

    .nh-table thead th:first-child,
    .nh-table tbody td:first-child {
        width: auto;
        min-width: 100px;
        font-size: 0.75rem;
        padding-left: 12px;
    }

    .nh-td-badge {
        padding: 4px 10px;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .nh-split-panel {
        padding: 36px 24px;
    }
}