/**
 * Nursing Dissertation Help — Main Stylesheet
 *
 * Custom CSS + Tailwind integration
 * Color Palette: Warm neutrals + soft orange accent
 *
 * @package NursingDissertationHelp
 * @since   1.0.0
 */

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ========================================================================== */

:root {
    /* ── Colors ── */
    --ndh-primary:        #2F343A;
    --ndh-primary-light:  #3A3F45;
    --ndh-secondary:      #8A8F95;
    --ndh-bg:             #F5F5F2;
    --ndh-bg-warm:        #F7F6F3;
    --ndh-surface:        #ECECE9;
    --ndh-surface-light:  #EDEDEA;
    --ndh-surface-border: #E0E0DC;
    --ndh-accent:         #E07A5F;
    --ndh-accent-dark:    #D97757;
    --ndh-sidebar:        #2C2C2C;
    --ndh-sidebar-muted:  #6F6F6F;
    --ndh-btn-bg:         #F0F0ED;
    --ndh-btn-text:       #3A3A3A;
    --ndh-btn-border:     #DADAD6;
    --ndh-white:          #FFFFFF;
    --ndh-black:          #1A1A1A;

    /* ── Typography ── */
    --ndh-font-heading: "Playfair Display", Georgia, serif;
    --ndh-font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* ── Spacing ── */
    --ndh-section-gap:     6rem;
    --ndh-container-max:   1200px;
    --ndh-container-wide:  1400px;

    /* ── Transitions ── */
    --ndh-ease:       cubic-bezier(0.4, 0, 0.2, 1);
    --ndh-ease-out:   cubic-bezier(0, 0, 0.2, 1);
    --ndh-duration:   300ms;

    /* ── Shadows ── */
    --ndh-shadow-sm:  0 1px 2px rgba(47, 52, 58, 0.05);
    --ndh-shadow-md:  0 4px 12px rgba(47, 52, 58, 0.08);
    --ndh-shadow-lg:  0 12px 32px rgba(47, 52, 58, 0.12);
    --ndh-shadow-xl:  0 20px 48px rgba(47, 52, 58, 0.16);

    /* ── Radius ── */
    --ndh-radius-sm:  4px;
    --ndh-radius-md:  8px;
    --ndh-radius-lg:  12px;
    --ndh-radius-xl:  16px;
    --ndh-radius-2xl: 24px;
}

/* ==========================================================================
   2. BASE / RESET OVERRIDES
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--ndh-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ndh-primary);
    background-color: var(--ndh-bg);
    overflow-x: hidden;
}

::selection {
    background-color: var(--ndh-accent);
    color: var(--ndh-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--ndh-accent);
    text-decoration: none;
    transition: color var(--ndh-duration) var(--ndh-ease);
}

a:hover {
    color: var(--ndh-accent-dark);
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ndh-font-heading);
    font-weight: 500;
    color: var(--ndh-primary);
    line-height: 1.2;
}

h1, .ndh-h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2, .ndh-h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); letter-spacing: -0.01em; }
h3, .ndh-h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4, .ndh-h4 { font-size: 1.25rem; }
h5, .ndh-h5 { font-size: 1rem; font-weight: 600; font-family: var(--ndh-font-body); }
h6, .ndh-h6 { font-size: 0.875rem; font-weight: 600; font-family: var(--ndh-font-body); text-transform: uppercase; letter-spacing: 0.05em; }

p {
    margin-bottom: 1.25em;
}

.ndh-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--ndh-secondary);
}

.ndh-overline {
    font-family: var(--ndh-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ndh-accent);
}

/* ==========================================================================
   4. LAYOUT — CONTAINER
   ========================================================================== */

.ndh-container {
    max-width: var(--ndh-container-max);
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.ndh-container-wide {
    max-width: var(--ndh-container-wide);
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.ndh-section {
    padding-block: var(--ndh-section-gap);
}

/* ==========================================================================
   5. HEADER
   ========================================================================== */

.ndh-topbar {
    background-color: var(--ndh-primary);
    color: var(--ndh-surface-light);
    font-size: 0.75rem;
    padding: 0.5rem 0;
}

.ndh-topbar a {
    color: var(--ndh-surface-light);
    opacity: 0.8;
    transition: opacity var(--ndh-duration) var(--ndh-ease);
}

.ndh-topbar a:hover {
    opacity: 1;
    color: var(--ndh-accent);
}

.ndh-header {
    background-color: var(--ndh-bg-warm);
    border-bottom: 1px solid var(--ndh-surface-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: rgba(247, 246, 243, 0.92);
    transition: box-shadow var(--ndh-duration) var(--ndh-ease);
}

.ndh-header.is-scrolled {
    box-shadow: var(--ndh-shadow-md);
}

.ndh-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.ndh-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.ndh-logo__text {
    font-family: var(--ndh-font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--ndh-primary);
    line-height: 1.1;
}

.ndh-logo__text span {
    color: var(--ndh-accent);
}

.ndh-logo__img {
    height: 38px;
    width: auto;
    display: block;
}
@media (max-width: 1023px) {
    .ndh-logo__img { height: 30px; }
}

/* ── Primary Navigation ── */

.ndh-nav ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.ndh-nav li {
    position: relative;
}

.ndh-nav a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ndh-primary);
    border-radius: var(--ndh-radius-md);
    transition: all var(--ndh-duration) var(--ndh-ease);
    position: relative;
}

.ndh-nav a:hover,
.ndh-nav .current-menu-item > a {
    color: var(--ndh-accent);
    background-color: rgba(224, 122, 95, 0.06);
}

.ndh-nav .current-menu-item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--ndh-accent);
    border-radius: 1px;
}

/* ── Dropdown ── */
.ndh-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--ndh-white);
    border: 1px solid var(--ndh-surface-border);
    border-radius: var(--ndh-radius-lg);
    box-shadow: var(--ndh-shadow-lg);
    min-width: 220px;
    padding: 0.5rem;
    z-index: 100;
}

.ndh-nav li:hover > .sub-menu {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

.ndh-nav .sub-menu a {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    border-radius: var(--ndh-radius-sm);
}

/* ── Mobile Toggle ── */
.ndh-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: none;
    border: 1.5px solid var(--ndh-surface-border);
    border-radius: var(--ndh-radius-md);
    cursor: pointer;
    padding: 0.5rem 0.625rem;
    color: var(--ndh-primary);
    width: 42px; height: 42px;
    transition: background var(--ndh-duration) var(--ndh-ease),
                border-color var(--ndh-duration) var(--ndh-ease);
}
.ndh-menu-toggle:hover {
    background: var(--ndh-surface);
    border-color: var(--ndh-accent);
}

.ndh-menu-toggle .bar {
    display: block;
    width: 20px;
    height: 2px;
    background-color: currentColor;
    margin: 3px 0;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

/* Hamburger → X */
.ndh-menu-toggle.is-active { border-color: var(--ndh-accent); color: var(--ndh-accent); }
.ndh-menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.ndh-menu-toggle.is-active .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ndh-menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile-only elements hidden on desktop */
.ndh-mobile-drawer,
.ndh-mobile-nav__top,
.ndh-mobile-nav__footer { display: none; }

/* ── Backdrop ── */
.ndh-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(20, 24, 28, 0.6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */

.ndh-hero {
    position: relative;
    background: linear-gradient(135deg, var(--ndh-primary) 0%, var(--ndh-primary-light) 50%, #464D55 100%);
    color: var(--ndh-white);
    overflow: hidden;
    padding-block: 3rem;
    display: flex;
    align-items: center;
}

.ndh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(224, 122, 95, 0.12), transparent),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(224, 122, 95, 0.08), transparent);
    z-index: 1;
}

.ndh-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 122, 95, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.ndh-hero__content {
    position: relative;
    z-index: 2;
}

.ndh-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(224, 122, 95, 0.15);
    border: 1px solid rgba(224, 122, 95, 0.3);
    color: var(--ndh-accent);
    padding: 0.375rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.ndh-hero__title {
    font-family: var(--ndh-font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--ndh-white);
}

.ndh-hero__title em {
    font-style: italic;
    color: var(--ndh-accent);
}

.ndh-hero__subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    max-width: 540px;
    margin-bottom: 2.5rem;
}

/* ── Trust Indicators ── */
.ndh-hero__trust {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ndh-hero__trust-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ndh-hero__trust-number {
    font-family: var(--ndh-font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--ndh-accent);
}

.ndh-hero__trust-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   7. BUTTONS
   ========================================================================== */

.ndh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--ndh-font-body);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    border-radius: var(--ndh-radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--ndh-duration) var(--ndh-ease);
    text-decoration: none;
    white-space: nowrap;
}

.ndh-btn--primary {
    background-color: var(--ndh-accent);
    color: var(--ndh-white);
    border-color: var(--ndh-accent);
}

.ndh-btn--primary:hover {
    background-color: var(--ndh-accent-dark);
    color: var(--ndh-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(224, 122, 95, 0.35);
}

.ndh-btn--secondary {
    background-color: var(--ndh-btn-bg);
    color: var(--ndh-btn-text);
    border-color: var(--ndh-btn-border);
}

.ndh-btn--secondary:hover {
    background-color: var(--ndh-surface);
    border-color: var(--ndh-secondary);
}

.ndh-btn--outline {
    background: transparent;
    color: var(--ndh-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.ndh-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--ndh-white);
}

.ndh-btn--ghost {
    background: transparent;
    color: var(--ndh-accent);
    border-color: transparent;
    padding-inline: 0;
}

.ndh-btn--ghost:hover {
    color: var(--ndh-accent-dark);
}

.ndh-btn--lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
    border-radius: var(--ndh-radius-lg);
}

.ndh-btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

/* ==========================================================================
   8. CARDS
   ========================================================================== */

.ndh-card {
    background: var(--ndh-white);
    border: 1px solid var(--ndh-surface-border);
    border-radius: var(--ndh-radius-xl);
    overflow: hidden;
    transition: all var(--ndh-duration) var(--ndh-ease);
}

.ndh-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ndh-shadow-lg);
    border-color: transparent;
}

.ndh-card__image {
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.ndh-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ndh-ease);
}

.ndh-card:hover .ndh-card__image img {
    transform: scale(1.04);
}

.ndh-card__body {
    padding: 1.5rem;
}

.ndh-card__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--ndh-secondary);
    margin-bottom: 0.75rem;
}

.ndh-card__meta-divider {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--ndh-surface-border);
}

.ndh-card__title {
    font-family: var(--ndh-font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.ndh-card__title a {
    color: var(--ndh-primary);
}

.ndh-card__title a:hover {
    color: var(--ndh-accent);
}

.ndh-card__excerpt {
    color: var(--ndh-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

/* ── Service Card ── */
.ndh-service-card {
    background: var(--ndh-white);
    border: 1px solid var(--ndh-surface-border);
    border-radius: var(--ndh-radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all 0.4s var(--ndh-ease);
    position: relative;
    overflow: hidden;
}

.ndh-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ndh-accent), var(--ndh-accent-dark));
    transform: scaleX(0);
    transition: transform 0.4s var(--ndh-ease);
}

.ndh-service-card:hover::before {
    transform: scaleX(1);
}

.ndh-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ndh-shadow-xl);
    border-color: transparent;
}

.ndh-service-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    border-radius: var(--ndh-radius-lg);
    background: linear-gradient(135deg, rgba(224, 122, 95, 0.1), rgba(224, 122, 95, 0.05));
    color: var(--ndh-accent);
    font-size: 1.75rem;
}

/* ── Testimonial Card ── */
.ndh-testimonial-card {
    background: var(--ndh-white);
    border: 1px solid var(--ndh-surface-border);
    border-radius: var(--ndh-radius-xl);
    padding: 2rem;
    position: relative;
}

.ndh-testimonial-card__quote {
    font-family: var(--ndh-font-heading);
    font-size: 2.5rem;
    color: var(--ndh-accent);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.ndh-testimonial-card__text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--ndh-sidebar);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.ndh-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ndh-testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--ndh-surface);
}

.ndh-testimonial-card__name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--ndh-primary);
}

.ndh-testimonial-card__role {
    font-size: 0.75rem;
    color: var(--ndh-secondary);
}

/* ── Star Rating ── */
.ndh-stars {
    display: flex;
    gap: 2px;
    color: #F4A940;
    font-size: 0.875rem;
}

/* ==========================================================================
   9. SECTION HEADERS
   ========================================================================== */

.ndh-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

.ndh-section-header__overline {
    display: inline-block;
    margin-bottom: 0.75rem;
}

.ndh-section-header__title {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-family: var(--ndh-font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.ndh-section-header__description {
    color: var(--ndh-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* Decorative line under section titles */
.ndh-section-header__title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--ndh-accent), transparent);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ==========================================================================
   10. PROCESS / HOW IT WORKS
   ========================================================================== */

/* ==========================================================================
   HOW IT WORKS — REDESIGNED
   ========================================================================== */
/* ==========================================================================
   HOW IT WORKS — MINDBLOWING VERTICAL REDESIGN
   ========================================================================== */
.ndh-process {
    background: linear-gradient(135deg, #1e2227 0%, #2F343A 40%, #1a1e22 100%);
    position: relative;
    overflow: hidden;
    padding-block: 8rem;
}

/* Decorative radial glows */
.ndh-process__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    z-index: 0;
}
.ndh-process__glow--1 {
    width: 600px; height: 600px;
    background: rgba(224, 122, 95, 0.12);
    top: -100px; left: -200px;
}
.ndh-process__glow--2 {
    width: 500px; height: 500px;
    background: rgba(224, 122, 95, 0.08);
    bottom: -100px; right: -100px;
}

.ndh-process__v-container {
    position: relative;
    margin-top: 4rem;
}

/* ── Central Pulse Line (The Research Thread) ── */
.ndh-process__v-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    z-index: 1;
}

.ndh-process__v-line-inner {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
}

.ndh-process__v-line-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(224, 122, 95, 0.3) 20%, 
        var(--ndh-accent) 50%, 
        rgba(224, 122, 95, 0.3) 80%, 
        transparent);
    background-size: 100% 200%;
    animation: pulseLine 6s linear infinite;
}

@keyframes pulseLine {
    0% { background-position: 0 0%; }
    100% { background-position: 0 -200%; }
}

/* ── Steps ── */
.ndh-process__v-steps {
    position: relative;
    z-index: 2;
}

.ndh-process__v-step {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    width: 100%;
}

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

/* Card Content */
.ndh-process__v-card {
    width: 44%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--ndh-radius-2xl);
    padding: 2.5rem;
    position: relative;
    transition: all 0.5s var(--ndh-ease);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.ndh-process__v-step:hover .ndh-process__v-card {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(224, 122, 95, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(224, 122, 95, 0.1);
}

/* Staggering Left/Right */
.ndh-process__v-step--left { justify-content: flex-start; }
.ndh-process__v-step--right { justify-content: flex-end; }

/* Large Numeral Watermark */
.ndh-process__v-num {
    position: absolute;
    top: -20px;
    right: 20px;
    font-family: var(--ndh-font-heading);
    font-size: 6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
    transition: color 0.5s ease;
}
.ndh-process__v-step:hover .ndh-process__v-num {
    color: rgba(224, 122, 95, 0.08);
}

/* Icon */
.ndh-process__v-icon {
    width: 56px;
    height: 56px;
    background: rgba(224, 122, 95, 0.1);
    border: 1px solid rgba(224, 122, 95, 0.2);
    border-radius: var(--ndh-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ndh-accent);
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
}

.ndh-process__v-step:hover .ndh-process__v-icon {
    background: var(--ndh-accent);
    color: var(--ndh-white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(224, 122, 95, 0.4);
}

/* Title & Text */
.ndh-process__v-title {
    font-size: 1.375rem;
    color: var(--ndh-white);
    margin-bottom: 0.75rem;
}

.ndh-process__v-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* The Connecting Dot */
.ndh-process__v-dot {
    position: absolute;
    left: 50%;
    top: 50px;
    width: 16px;
    height: 16px;
    background: var(--ndh-primary);
    border: 3px solid var(--ndh-accent);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 3;
    transition: all 0.5s ease;
}

.ndh-process__v-step:hover .ndh-process__v-dot {
    background: var(--ndh-accent);
    box-shadow: 0 0 15px var(--ndh-accent);
    transform: translateX(-50%) scale(1.5);
}

/* Animation overrides */
.ndh-process__v-step--left .ndh-process__v-card { transform: translateX(-30px); opacity: 0; }
.ndh-process__v-step--right .ndh-process__v-card { transform: translateX(30px); opacity: 0; }

.ndh-process__v-step.is-visible .ndh-process__v-card {
    transform: translateX(0);
    opacity: 1;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .ndh-process__v-line { left: 30px; }
    .ndh-process__v-dot { left: 30px; }
    .ndh-process__v-card { width: calc(100% - 80px); margin-left: 80px; }
    .ndh-process__v-step--left, .ndh-process__v-step--right { justify-content: flex-start; }
    .ndh-process__v-step--left .ndh-process__v-card, 
    .ndh-process__v-step--right .ndh-process__v-card { transform: translateY(20px); }
    .ndh-process__v-step.is-visible .ndh-process__v-card { transform: translateY(0); }
}

@media (max-width: 640px) {
    .ndh-process { padding-block: 5rem; }
    .ndh-process__v-card { padding: 1.75rem; }
}
    color: rgba(224,122,95,0.55);
    display: flex;
    align-items: center;
}
.ndh-process__step:last-child .ndh-process__step-arrow { display: none; }
@media (max-width: 900px) { .ndh-process__step-arrow { display: none; } }

/* ==========================================================================
   11. CTA SECTION
   ========================================================================== */

.ndh-cta {
    background: linear-gradient(135deg, var(--ndh-primary) 0%, #3D434A 100%);
    color: var(--ndh-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ndh-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(224, 122, 95, 0.15), transparent 60%);
}

.ndh-cta__content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

.ndh-cta__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--ndh-white);
    margin-bottom: 1rem;
}

.ndh-cta__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* ==========================================================================
   12. FOOTER
   ========================================================================== */

.ndh-footer {
    background-color: var(--ndh-primary);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
}

.ndh-footer a {
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--ndh-duration) var(--ndh-ease);
}

.ndh-footer a:hover {
    color: var(--ndh-accent);
}

.ndh-footer__top {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ndh-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.ndh-footer__brand {
    max-width: 300px;
}

.ndh-footer__logo {
    font-family: var(--ndh-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ndh-white);
    margin-bottom: 1rem;
}

.ndh-footer__logo span {
    color: var(--ndh-accent);
}

.ndh-footer__heading {
    font-family: var(--ndh-font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ndh-white);
    margin-bottom: 1.25rem;
}

.ndh-footer__links {
    list-style: none;
}

.ndh-footer__links li {
    margin-bottom: 0.625rem;
}

.ndh-footer__links a {
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.ndh-footer__links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--ndh-accent);
    transition: width var(--ndh-duration) var(--ndh-ease);
}

.ndh-footer__links a:hover::before {
    width: 12px;
}

.ndh-footer__bottom {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   13. BLOG / SINGLE POST
   ========================================================================== */

.ndh-post-header {
    padding: 4rem 0 2rem;
    text-align: center;
}

.ndh-post-header__category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(224, 122, 95, 0.1);
    color: var(--ndh-accent);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.ndh-post-header__title {
    max-width: 800px;
    margin: 0 auto 1.25rem;
}

.ndh-post-header__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--ndh-secondary);
    font-size: 0.8125rem;
}

.ndh-post-content {
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: 4rem;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--ndh-primary);
}

/* ── Paragraphs ── */
.ndh-post-content p {
    margin-bottom: 1.5rem;
}
.ndh-post-content p:last-child { margin-bottom: 0; }

/* ── Headings (scaled for prose, not page-level) ── */
.ndh-post-content h2 {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--ndh-primary);
    letter-spacing: -0.01em;
}
.ndh-post-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--ndh-primary);
}
.ndh-post-content h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--ndh-primary);
    font-family: var(--ndh-font-body);
}
.ndh-post-content h5,
.ndh-post-content h6 {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--ndh-primary);
    font-family: var(--ndh-font-body);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Inline text ── */
.ndh-post-content strong,
.ndh-post-content b { font-weight: 700; color: var(--ndh-sidebar); }
.ndh-post-content em,
.ndh-post-content i { font-style: italic; }
.ndh-post-content mark {
    background: rgba(224, 122, 95, 0.18);
    color: inherit;
    padding: 0.05em 0.25em;
    border-radius: 3px;
}
.ndh-post-content abbr[title] {
    text-decoration: underline dotted;
    cursor: help;
}

/* ── Links ── */
.ndh-post-content a {
    color: var(--ndh-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--ndh-duration) var(--ndh-ease);
}
.ndh-post-content a:hover { color: var(--ndh-accent-dark, #c0614a); }

/* ── Lists ── */
.ndh-post-content ul,
.ndh-post-content ol {
    margin: 1.25rem 0 1.5rem;
    padding-left: 1.75rem;
}
.ndh-post-content ul { list-style: disc; }
.ndh-post-content ol { list-style: decimal; }
.ndh-post-content ul ul { list-style: circle; margin: 0.4rem 0; }
.ndh-post-content ol ol { list-style: lower-alpha; margin: 0.4rem 0; }
.ndh-post-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}
.ndh-post-content li > p { margin-bottom: 0.5rem; }

/* ── Blockquote ── */
.ndh-post-content blockquote {
    border-left: 3px solid var(--ndh-accent);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: rgba(224, 122, 95, 0.04);
    border-radius: 0 var(--ndh-radius-md) var(--ndh-radius-md) 0;
    font-style: italic;
    color: var(--ndh-secondary);
    font-size: 1.0625rem;
}
.ndh-post-content blockquote p { margin-bottom: 0; }
.ndh-post-content blockquote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-style: normal;
    color: var(--ndh-secondary);
}

/* ── Code ── */
.ndh-post-content code {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 0.875em;
    background: var(--ndh-surface);
    border: 1px solid var(--ndh-surface-border);
    border-radius: 4px;
    padding: 0.1em 0.4em;
    color: var(--ndh-accent);
}
.ndh-post-content pre {
    background: #1e1e2e;
    color: #cdd6f4;
    border-radius: var(--ndh-radius-md);
    padding: 1.25rem 1.5rem;
    overflow-x: auto;
    margin: 2rem 0;
    font-size: 0.875rem;
    line-height: 1.65;
}
.ndh-post-content pre code {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    font-size: inherit;
}

/* ── Horizontal rule ── */
.ndh-post-content hr {
    border: none;
    border-top: 1px solid var(--ndh-surface-border);
    margin: 2.5rem 0;
}

/* ── Tables ── */
.ndh-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.9375rem;
    border-radius: var(--ndh-radius-md);
    overflow: hidden;
    box-shadow: 0 0 0 1px var(--ndh-surface-border);
}
.ndh-post-content thead {
    background: var(--ndh-surface);
}
.ndh-post-content th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ndh-secondary);
    border-bottom: 1px solid var(--ndh-surface-border);
}
.ndh-post-content td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--ndh-surface-border);
    vertical-align: top;
    line-height: 1.6;
}
.ndh-post-content tbody tr:last-child td { border-bottom: none; }
.ndh-post-content tbody tr:nth-child(even) { background: var(--ndh-surface); }

/* ── Figures & images ── */
.ndh-post-content figure { margin: 2rem 0; }
.ndh-post-content img {
    border-radius: var(--ndh-radius-lg);
    margin: 0;
    max-width: 100%;
    height: auto;
    display: block;
}
.ndh-post-content figure img { margin: 0 auto; }
.ndh-post-content figcaption {
    margin-top: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--ndh-secondary);
    font-style: italic;
}

/* ── Post Tags ── */
.ndh-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ndh-surface-border);
}

.ndh-post-tags a {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--ndh-surface);
    color: var(--ndh-sidebar-muted);
    border-radius: 100px;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all var(--ndh-duration) var(--ndh-ease);
}

.ndh-post-tags a:hover {
    background: var(--ndh-accent);
    color: var(--ndh-white);
}

/* ── Author Box ── */
.ndh-author-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--ndh-surface-light);
    border-radius: var(--ndh-radius-xl);
    margin-top: 3rem;
}

.ndh-author-box__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.ndh-author-box__name {
    font-family: var(--ndh-font-heading);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.ndh-author-box__bio {
    color: var(--ndh-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* ── Post Navigation ── */
.ndh-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
    border-top: 1px solid var(--ndh-surface-border);
    margin-top: 2rem;
}

.ndh-post-nav__item {
    padding: 1.25rem;
    background: var(--ndh-surface-light);
    border-radius: var(--ndh-radius-lg);
    transition: all var(--ndh-duration) var(--ndh-ease);
}

.ndh-post-nav__item:hover {
    background: var(--ndh-surface);
}

.ndh-post-nav__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ndh-secondary);
    margin-bottom: 0.25rem;
}

.ndh-post-nav__title {
    font-family: var(--ndh-font-heading);
    font-size: 1rem;
    color: var(--ndh-primary);
}

/* ==========================================================================
   14. SIDEBAR
   ========================================================================== */

.ndh-sidebar {
    position: sticky;
    top: 96px;
}

.ndh-widget {
    background: var(--ndh-white);
    border: 1px solid var(--ndh-surface-border);
    border-radius: var(--ndh-radius-xl);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.ndh-widget__title {
    font-family: var(--ndh-font-heading);
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--ndh-surface-border);
}

.ndh-widget ul {
    list-style: none;
}

.ndh-widget li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--ndh-surface);
}

.ndh-widget li:last-child {
    border-bottom: none;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

/* ── Hero ── */
.ndh-contact-hero {
    background: var(--ndh-bg-warm);
    padding: 3.5rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid var(--ndh-surface-border);
}
.ndh-contact-hero .ndh-breadcrumbs {
    justify-content: center;
    margin-bottom: 1.25rem;
}
.ndh-contact-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: var(--ndh-font-heading);
    font-weight: 700;
    color: var(--ndh-primary);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.ndh-contact-hero__sub {
    font-size: 1.0625rem;
    color: var(--ndh-secondary);
    max-width: 560px;
    margin: 0 auto 1.75rem;
    line-height: 1.7;
}
.ndh-contact-hero__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    font-size: 0.875rem;
    color: var(--ndh-secondary);
}
.ndh-contact-hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}
.ndh-contact-hero__trust svg { color: var(--ndh-accent); }

/* ── Two-column grid ── */
.ndh-contact-section { padding-top: 3.5rem; }
.ndh-contact-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 900px) {
    .ndh-contact-grid { grid-template-columns: 1fr; }
}

/* ── Sidebar ── */
.ndh-contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ── Info cards ── */
.ndh-contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    background: var(--ndh-white);
    border: 1.5px solid var(--ndh-surface-border);
    border-radius: var(--ndh-radius-lg);
    transition: border-color var(--ndh-duration) var(--ndh-ease);
}
.ndh-contact-info-card:hover { border-color: var(--ndh-accent); }
.ndh-contact-info-card--whatsapp .ndh-contact-info-card__icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}
.ndh-contact-info-card__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--ndh-radius-md);
    background: rgba(224, 122, 95, 0.1);
    color: var(--ndh-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ndh-contact-info-card__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--ndh-secondary);
    margin-bottom: 0.2rem;
}
.ndh-contact-info-card__value {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ndh-primary);
    text-decoration: none;
    line-height: 1.4;
}
a.ndh-contact-info-card__value:hover { color: var(--ndh-accent); }
.ndh-contact-info-card__value--text { cursor: default; }
.ndh-contact-info-card__note {
    font-size: 0.75rem;
    color: var(--ndh-secondary);
    margin-top: 0.125rem;
}

/* ── Trust box ── */
.ndh-contact-trust {
    padding: 1.25rem;
    background: var(--ndh-surface);
    border-radius: var(--ndh-radius-lg);
    margin-top: 0.25rem;
}
.ndh-contact-trust__title {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--ndh-secondary);
    margin-bottom: 0.875rem;
}
.ndh-contact-trust__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.ndh-contact-trust__list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--ndh-primary);
}
.ndh-contact-trust__list svg { color: var(--ndh-accent); flex-shrink: 0; }

/* ── Form card ── */
.ndh-contact-form-col { min-width: 0; }
.ndh-contact-form-card {
    background: var(--ndh-white);
    border: 1.5px solid var(--ndh-surface-border);
    border-radius: var(--ndh-radius-xl);
    padding: 2.25rem;
    box-shadow: var(--ndh-shadow-md);
}
.ndh-contact-form-card__header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--ndh-surface-border);
}
.ndh-contact-form-card__title {
    font-size: 1.5rem;
    font-family: var(--ndh-font-heading);
    font-weight: 700;
    color: var(--ndh-primary);
    margin-bottom: 0.375rem;
}
.ndh-contact-form-card__sub {
    font-size: 0.9375rem;
    color: var(--ndh-secondary);
    line-height: 1.6;
}

/* ── Form section labels ── */
.ndh-form-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ndh-secondary);
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--ndh-surface-border);
}
.ndh-form-section-label:first-of-type { margin-top: 0; }

/* ── Form rows ── */
.ndh-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.ndh-form-row--three {
    grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 640px) {
    .ndh-form-row,
    .ndh-form-row--three { grid-template-columns: 1fr; }
}

/* ── Required / optional labels ── */
.ndh-form-required { color: var(--ndh-accent); font-weight: 700; }
.ndh-form-optional { font-weight: 400; color: var(--ndh-secondary); font-size: 0.8em; }

/* ── Urgency select hint coloring (CSS only, browsers vary) ── */
.ndh-form-label svg { vertical-align: middle; margin-right: 0.25rem; }

/* ── Form footer ── */
.ndh-contact-form-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--ndh-surface-border);
}
.ndh-contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.ndh-contact-form-card__privacy {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--ndh-secondary);
}
.ndh-contact-form-card__privacy svg { color: var(--ndh-accent); flex-shrink: 0; }

/* ── reCAPTCHA note ── */
.ndh-recaptcha-note {
    font-size: 0.75rem;
    color: var(--ndh-secondary);
    margin-top: 0.75rem;
    line-height: 1.5;
}
.ndh-recaptcha-note a {
    color: var(--ndh-accent);
    text-decoration: underline;
}

/* ── Status notices ── */
.ndh-form-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    border-radius: var(--ndh-radius-md);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}
.ndh-form-notice--success {
    background: rgba(34, 197, 94, 0.08);
    border: 1.5px solid rgba(34, 197, 94, 0.3);
    color: #15803d;
}
.ndh-form-notice--error {
    background: rgba(239, 68, 68, 0.07);
    border: 1.5px solid rgba(239, 68, 68, 0.25);
    color: #b91c1c;
}
.ndh-form-notice svg { flex-shrink: 0; margin-top: 0.125rem; }
.ndh-form-notice strong { display: block; font-weight: 700; margin-bottom: 0.125rem; }
.ndh-form-notice p { margin: 0; font-size: 0.875rem; opacity: 0.9; }

/* ==========================================================================
   15. FORMS
   ========================================================================== */

.ndh-form-group {
    margin-bottom: 1.25rem;
}

.ndh-form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ndh-primary);
    margin-bottom: 0.375rem;
}

.ndh-form-input,
.ndh-form-textarea,
.ndh-form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--ndh-font-body);
    font-size: 0.875rem;
    color: var(--ndh-primary);
    background: var(--ndh-surface-light);
    border: 1px solid var(--ndh-surface-border);
    border-radius: var(--ndh-radius-md);
    transition: all var(--ndh-duration) var(--ndh-ease);
    outline: none;
}

.ndh-form-input::placeholder,
.ndh-form-textarea::placeholder {
    color: var(--ndh-secondary);
}

.ndh-form-input:focus,
.ndh-form-textarea:focus,
.ndh-form-select:focus {
    border-color: var(--ndh-accent);
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.12);
    background: var(--ndh-white);
}

.ndh-form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* ==========================================================================
   16. PAGINATION
   ========================================================================== */

.ndh-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.ndh-pagination a,
.ndh-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--ndh-radius-md);
    border: 1px solid var(--ndh-surface-border);
    color: var(--ndh-primary);
    background: var(--ndh-white);
    transition: all var(--ndh-duration) var(--ndh-ease);
}

.ndh-pagination a:hover {
    background: var(--ndh-accent);
    border-color: var(--ndh-accent);
    color: var(--ndh-white);
}

.ndh-pagination .current {
    background: var(--ndh-accent);
    border-color: var(--ndh-accent);
    color: var(--ndh-white);
}

/* ==========================================================================
   17. SEARCH FORM
   ========================================================================== */

.ndh-search-form {
    display: flex;
    gap: 0;
    border-radius: var(--ndh-radius-md);
    overflow: hidden;
    border: 1px solid var(--ndh-surface-border);
}

.ndh-search-form input[type="search"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: var(--ndh-surface-light);
    font-family: var(--ndh-font-body);
    font-size: 0.875rem;
    outline: none;
}

.ndh-search-form button {
    padding: 0.75rem 1.25rem;
    background: var(--ndh-accent);
    color: var(--ndh-white);
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background var(--ndh-duration) var(--ndh-ease);
}

.ndh-search-form button:hover {
    background: var(--ndh-accent-dark);
}

/* ==========================================================================
   18. BREADCRUMBS
   ========================================================================== */

.ndh-breadcrumbs {
    padding: 1rem 0;
    font-size: 0.8125rem;
    color: var(--ndh-secondary);
}

.ndh-breadcrumbs a {
    color: var(--ndh-secondary);
}

.ndh-breadcrumbs a:hover {
    color: var(--ndh-accent);
}

.ndh-breadcrumbs__separator {
    margin: 0 0.5rem;
    opacity: 0.4;
}

.ndh-breadcrumbs .current {
    color: var(--ndh-primary);
    font-weight: 500;
}

/* ==========================================================================
   19. 404 PAGE
   ========================================================================== */

/* ==========================================================================
   404 PAGE
   ========================================================================== */

.ndh-404 {
    padding: 5rem 0 7rem;
    background: var(--ndh-bg);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.ndh-404__inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

/* ── Big 404 number (decorative, sits behind icon) ── */
.ndh-404__number {
    font-family: var(--ndh-font-heading);
    font-size: clamp(7rem, 18vw, 14rem);
    font-weight: 700;
    color: var(--ndh-surface-border);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: -1rem;
    user-select: none;
}

/* ── Icon ── */
.ndh-404__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--ndh-accent);
}

/* ── Heading ── */
.ndh-404__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-family: var(--ndh-font-heading);
    font-weight: 700;
    color: var(--ndh-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

/* ── Subtext ── */
.ndh-404__text {
    font-size: 1.0625rem;
    color: var(--ndh-secondary);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

/* ── Action buttons ── */
.ndh-404__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
}

/* ── Search block ── */
.ndh-404__search {
    max-width: 480px;
    margin: 0 auto 3rem;
}
.ndh-404__search-label {
    font-size: 0.875rem;
    color: var(--ndh-secondary);
    margin-bottom: 0.75rem;
}
/* Style the WP default search form */
.ndh-404__search .search-form {
    display: flex;
    gap: 0.5rem;
}
.ndh-404__search .search-field {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--ndh-surface-border);
    border-radius: var(--ndh-radius-md);
    font-size: 0.9375rem;
    font-family: var(--ndh-font-body);
    background: var(--ndh-white);
    color: var(--ndh-primary);
    outline: none;
    transition: border-color var(--ndh-duration) var(--ndh-ease);
}
.ndh-404__search .search-field:focus {
    border-color: var(--ndh-accent);
}
.ndh-404__search .search-submit {
    padding: 0.7rem 1.25rem;
    background: var(--ndh-accent);
    color: var(--ndh-white);
    border: none;
    border-radius: var(--ndh-radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--ndh-font-body);
    transition: background var(--ndh-duration) var(--ndh-ease);
}
.ndh-404__search .search-submit:hover {
    background: var(--ndh-accent-dark);
}

/* ── Popular links ── */
.ndh-404__links {
    padding-top: 2rem;
    border-top: 1px solid var(--ndh-surface-border);
}
.ndh-404__links-label {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ndh-secondary);
    margin-bottom: 1rem;
}
.ndh-404__link-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: center;
}
.ndh-404__link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.45rem 1rem;
    background: var(--ndh-white);
    border: 1.5px solid var(--ndh-surface-border);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ndh-primary);
    text-decoration: none;
    transition: all var(--ndh-duration) var(--ndh-ease);
}
.ndh-404__link:hover {
    border-color: var(--ndh-accent);
    color: var(--ndh-accent);
    background: rgba(224, 122, 95, 0.05);
}
.ndh-404__link svg {
    flex-shrink: 0;
    opacity: 0.6;
}

/* ==========================================================================
   20. ANIMATIONS / UTILITIES
   ========================================================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

.ndh-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ndh-ease-out), transform 0.6s var(--ndh-ease-out);
}

.ndh-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.ndh-stagger > *:nth-child(1) { transition-delay: 0ms; }
.ndh-stagger > *:nth-child(2) { transition-delay: 80ms; }
.ndh-stagger > *:nth-child(3) { transition-delay: 160ms; }
.ndh-stagger > *:nth-child(4) { transition-delay: 240ms; }
.ndh-stagger > *:nth-child(5) { transition-delay: 320ms; }
.ndh-stagger > *:nth-child(6) { transition-delay: 400ms; }

/* Grain overlay */
.ndh-grain::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    z-index: 9999;
}

/* ==========================================================================
   21. RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .ndh-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 1023px) {
    .ndh-header__inner { height: 60px; }

    /* Hide desktop nav */
    .ndh-nav { display: none !important; }

    /* Show toggle */
    .ndh-menu-toggle { display: flex; }

    /* Show backdrop when menu open */
    body.ndh-menu-open .ndh-nav-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    /* ── Mobile drawer ── */
    .ndh-mobile-drawer {
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: min(320px, 88vw);
        display: flex !important;
        flex-direction: column;
        background: linear-gradient(160deg, #2F343A 0%, #252a30 60%, #1e2228 100%);
        z-index: 2000; /* Above header */
        overflow-y: auto;
        overflow-x: hidden;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                    visibility 0.38s linear;
        box-shadow: -8px 0 40px rgba(0,0,0,0.35);
    }
    .ndh-mobile-drawer.is-open {
        transform: translateX(0);
        visibility: visible;
    }
}

@media (max-width: 768px) {
    :root {
        --ndh-section-gap: 4rem;
    }

    /* Mobile drawer top bar */
    .ndh-mobile-nav__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.25rem 1.375rem;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        flex-shrink: 0;
    }
    .ndh-mobile-nav__brand {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        flex-shrink: 0;
    }
    .ndh-mobile-nav__logo {
        display: block;
        height: 32px;
        width: auto;
        max-width: 180px;
        object-fit: contain;
    }

    .ndh-mobile-nav__close {
        width: 34px; height: 34px;
        border-radius: 50%;
        border: 1.5px solid rgba(255,255,255,0.15);
        background: rgba(255,255,255,0.06);
        color: rgba(255,255,255,0.75);
        display: flex; align-items: center; justify-content: center;
        cursor: pointer;
        transition: background var(--ndh-duration) var(--ndh-ease),
                    color var(--ndh-duration) var(--ndh-ease),
                    border-color var(--ndh-duration) var(--ndh-ease);
        flex-shrink: 0;
    }
    .ndh-mobile-nav__close:hover {
        background: rgba(224,122,95,0.2);
        border-color: var(--ndh-accent);
        color: var(--ndh-accent);
    }

    /* Mobile Nav list */
    .ndh-mobile-drawer__list {
        flex-direction: column;
        gap: 0;
        padding: 0.75rem 0;
        flex: 1;
        list-style: none;
    }
    .ndh-mobile-drawer__list li { border-bottom: 1px solid rgba(255,255,255,0.05); }
    .ndh-mobile-drawer__list li:last-child { border-bottom: none; }

    .ndh-mobile-drawer__list a {
        padding: 1rem 1.375rem;
        font-size: 1rem;
        font-weight: 500;
        color: rgba(255,255,255,0.75);
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: color var(--ndh-duration) var(--ndh-ease),
                    background var(--ndh-duration) var(--ndh-ease),
                    padding-left var(--ndh-duration) var(--ndh-ease);
        text-decoration: none;
    }
    .ndh-mobile-drawer__list a:hover,
    .ndh-mobile-drawer__list .current-menu-item > a {
        color: var(--ndh-white);
        background: rgba(224,122,95,0.1);
        padding-left: 1.75rem;
    }
    .ndh-mobile-drawer__list .current-menu-item > a {
        color: var(--ndh-accent);
        border-left: 3px solid var(--ndh-accent);
    }

    /* Mobile Sub-menu */
    .ndh-mobile-drawer__list .sub-menu {
        position: static;
        display: block;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(0,0,0,0.15);
        padding: 0;
        min-width: unset;
    }
    .ndh-mobile-drawer__list .sub-menu a {
        padding: 0.75rem 1.375rem 0.75rem 2.25rem;
        font-size: 0.875rem;
        color: rgba(255,255,255,0.5);
    }
    .ndh-mobile-drawer__list .sub-menu a:hover { color: rgba(255,255,255,0.85); padding-left: 2.75rem; }
    .ndh-mobile-drawer__list li:hover > .sub-menu { animation: none; }

    /* Mobile drawer footer */
    .ndh-mobile-nav__footer {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.375rem;
        border-top: 1px solid rgba(255,255,255,0.07);
        background: rgba(0,0,0,0.15);
        flex-shrink: 0;
    }
    .ndh-mobile-nav__cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        background: var(--ndh-accent);
        color: var(--ndh-white) !important;
        font-weight: 700;
        font-size: 0.9375rem;
        padding: 0.875rem 1.25rem !important;
        border-radius: var(--ndh-radius-lg) !important;
        text-align: center;
        transition: background var(--ndh-duration) var(--ndh-ease),
                    transform var(--ndh-duration) var(--ndh-ease) !important;
        padding-left: 1.25rem !important;
    }
    .ndh-mobile-nav__cta:hover {
        background: var(--ndh-accent-dark) !important;
        transform: translateY(-1px) !important;
        color: var(--ndh-white) !important;
    }
    .ndh-mobile-nav__secondary {
        display: block;
        text-align: center;
        font-size: 0.875rem;
        font-weight: 500;
        color: rgba(255,255,255,0.5) !important;
        padding: 0.5rem !important;
        background: transparent !important;
        transition: color var(--ndh-duration) var(--ndh-ease) !important;
        text-decoration: underline;
        text-underline-offset: 3px;
    }
    .ndh-mobile-nav__secondary:hover { color: rgba(255,255,255,0.85) !important; }

    .ndh-mobile-nav__trust {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255,255,255,0.06);
    }
    .ndh-mobile-nav__trust span {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.75rem;
        color: rgba(255,255,255,0.4);
    }
    .ndh-mobile-nav__trust svg { color: var(--ndh-accent); flex-shrink: 0; }

    .ndh-hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .ndh-hero__trust {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .ndh-footer__grid {
        grid-template-columns: 1fr;
    }

    .ndh-post-nav {
        grid-template-columns: 1fr;
    }

    .ndh-author-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ndh-hero__title {
        font-size: 2rem;
    }

    .ndh-btn--lg {
        width: 100%;
    }
}

/* ==========================================================================
   19. SINGLE POST / SERVICE / SAMPLE — SHARED LAYOUT
   ========================================================================== */

/* ── Single page header ── */
.ndh-single-header {
    background: var(--ndh-bg-warm);
    border-bottom: 1px solid var(--ndh-surface-border);
    padding: 3rem 0 2.5rem;
    text-align: center;
}

.ndh-single-header--service {
    background: linear-gradient(160deg, var(--ndh-bg-warm) 0%, var(--ndh-surface) 100%);
}

.ndh-single-header--sample {
    background: var(--ndh-bg-warm);
}

.ndh-single-header__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.ndh-single-header__title {
    font-family: var(--ndh-font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ndh-primary);
    max-width: 820px;
    margin: 0 auto 1rem;
}

.ndh-single-header__lead {
    max-width: 680px;
    margin: 0 auto 1.5rem;
}

/* ── Meta bar ── */
.ndh-single-metabar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--ndh-secondary);
}

.ndh-single-metabar__item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.ndh-single-metabar__item a {
    color: var(--ndh-secondary);
    font-weight: 500;
}

.ndh-single-metabar__item a:hover {
    color: var(--ndh-accent);
}

.ndh-single-metabar__avatar {
    border-radius: 50%;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.ndh-single-metabar__divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--ndh-surface-border);
    flex-shrink: 0;
}

.ndh-single-metabar__updated {
    font-style: italic;
    opacity: 0.75;
}

/* ── Featured image ── */
.ndh-single-featured-img {
    margin-top: 2rem;
    margin-bottom: 0;
}

.ndh-single-featured-img__img {
    width: 100%;
    height: auto;
    border-radius: var(--ndh-radius-xl);
    display: block;
    max-height: 480px;
    object-fit: cover;
}

.ndh-single-featured-img__caption {
    font-size: 0.875rem;
    color: var(--ndh-secondary);
    text-align: center;
    margin-top: 0.75rem;
    font-style: italic;
}

/* ── Two-column grid (content + sidebar) ── */
.ndh-single-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .ndh-single-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Main content column ── */
.ndh-single-main {
    min-width: 0; /* prevent overflow in grid */
}

/* ── Sticky sidebar ── */
.ndh-single-sidebar {
    min-width: 0;
}

.ndh-single-sidebar__sticky {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* ==========================================================================
   20. TABLE OF CONTENTS
   ========================================================================== */

.ndh-toc {
    background: var(--ndh-surface-light);
    border: 1px solid var(--ndh-surface-border);
    border-left: 3px solid var(--ndh-accent);
    border-radius: var(--ndh-radius-lg);
    padding: 1.25rem 1.5rem;
}

.ndh-toc__title {
    font-family: var(--ndh-font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ndh-secondary);
    margin-bottom: 0.875rem;
}

.ndh-toc__list {
    list-style: none;
    counter-reset: toc-h2;
    margin: 0;
    padding: 0;
}

.ndh-toc__item {
    margin-bottom: 0.375rem;
    padding-left: 1.75rem;
    position: relative;
    counter-increment: toc-h2;
    counter-reset: toc-h3;
}

.ndh-toc__item::before {
    content: counter(toc-h2) '.';
    position: absolute;
    left: 0;
    color: var(--ndh-accent);
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.5;
}

.ndh-toc__item a {
    font-size: 0.9375rem;
    color: var(--ndh-primary);
    line-height: 1.5;
    transition: color var(--ndh-duration) var(--ndh-ease);
}

.ndh-toc__item a:hover,
.ndh-toc__item a.is-active {
    color: var(--ndh-accent);
}

.ndh-toc__item a.is-active {
    font-weight: 600;
}

.ndh-toc__item--sub {
    padding-left: 3.25rem;
    counter-increment: toc-h3;
}

.ndh-toc__item--sub::before {
    content: counter(toc-h3, lower-alpha) '.';
    color: var(--ndh-surface-border);
    font-weight: 400;
}

.ndh-toc__item--sub a {
    font-size: 0.875rem;
    color: var(--ndh-secondary);
}

/* Inline TOC (mobile / content-top) — hide on desktop when sidebar TOC is visible */
.ndh-toc-inline {
    margin-bottom: 2rem;
}

/* Sidebar TOC — hide on mobile */
.ndh-toc-sidebar .ndh-toc {
    background: var(--ndh-white);
}

@media (min-width: 1025px) {
    .ndh-toc-inline {
        display: none;
    }
}

@media (max-width: 1024px) {
    .ndh-toc-sidebar {
        display: none;
    }
}

/* ==========================================================================
   21. SHARE BUTTONS
   ========================================================================== */

.ndh-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--ndh-surface-border);
    border-bottom: 1px solid var(--ndh-surface-border);
    margin: 2rem 0;
    flex-wrap: wrap;
}

.ndh-share__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ndh-secondary);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ndh-share__buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.ndh-share__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--ndh-surface-border);
    background: var(--ndh-white);
    color: var(--ndh-secondary);
    transition: all 0.25s var(--ndh-ease);
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
}

.ndh-share__btn:hover {
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--ndh-shadow-md);
}

.ndh-share__btn--facebook:hover { background: #1877F2; color: #fff; }
.ndh-share__btn--twitter:hover  { background: #000;    color: #fff; }
.ndh-share__btn--linkedin:hover { background: #0A66C2; color: #fff; }
.ndh-share__btn--whatsapp:hover { background: #25D366; color: #fff; }
.ndh-share__btn--copy:hover,
.ndh-share__btn--copy.is-copied { background: var(--ndh-accent); color: #fff; border-color: transparent; }

/* ==========================================================================
   22. AUTHOR BOX (enhanced)
   ========================================================================== */

.ndh-author-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--ndh-surface-light);
    border: 1px solid var(--ndh-surface-border);
    border-radius: var(--ndh-radius-xl);
    padding: 1.75rem;
    margin-top: 2.5rem;
}

.ndh-author-box__avatar-wrap {
    flex-shrink: 0;
}

.ndh-author-box__avatar {
    border-radius: 50%;
    width: 80px !important;
    height: 80px !important;
    border: 3px solid var(--ndh-white);
    box-shadow: var(--ndh-shadow-sm);
}

.ndh-author-box__info {
    min-width: 0;
}

.ndh-author-box__label {
    margin-bottom: 0.25rem;
}

.ndh-author-box__name {
    font-family: var(--ndh-font-heading);
    font-size: 1.1875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.ndh-author-box__name a {
    color: var(--ndh-primary);
}

.ndh-author-box__name a:hover {
    color: var(--ndh-accent);
}

.ndh-author-box__bio {
    font-size: 0.9375rem;
    color: var(--ndh-secondary);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.ndh-author-box__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.ndh-author-box__posts {
    font-size: 0.8125rem;
    color: var(--ndh-secondary);
    font-weight: 500;
}

.ndh-author-box__social {
    display: flex;
    gap: 0.5rem;
}

.ndh-author-box__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--ndh-surface-border);
    color: var(--ndh-secondary);
    transition: all var(--ndh-duration) var(--ndh-ease);
}

.ndh-author-box__social-link:hover {
    background: var(--ndh-accent);
    border-color: var(--ndh-accent);
    color: #fff;
}

/* ==========================================================================
   23. SIDEBAR WIDGETS (CTA + Related)
   ========================================================================== */

.ndh-sidebar-cta {
    background: var(--ndh-primary);
    border-radius: var(--ndh-radius-xl);
    padding: 1.75rem;
    color: var(--ndh-white);
}

.ndh-sidebar-cta--accent {
    background: linear-gradient(135deg, var(--ndh-primary) 0%, var(--ndh-primary-light) 100%);
    border: 1px solid rgba(255,255,255,0.06);
}

.ndh-sidebar-cta__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ndh-accent);
    margin-bottom: 0.375rem;
}

.ndh-sidebar-cta__title {
    font-family: var(--ndh-font-heading);
    font-size: 1.1875rem;
    font-weight: 500;
    color: var(--ndh-white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.ndh-sidebar-cta__desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.ndh-btn--full {
    width: 100%;
    justify-content: center;
    display: flex;
    text-align: center;
}

.ndh-btn--ghost-sm {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.15);
}

.ndh-btn--ghost-sm:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.06);
}

.ndh-btn--accent-sm {
    background: var(--ndh-accent);
    color: #fff;
    font-size: 0.8125rem;
    padding: 0.375rem 0.875rem;
    border-radius: var(--ndh-radius-md);
    font-weight: 600;
    transition: background var(--ndh-duration) var(--ndh-ease);
    text-decoration: none;
}

.ndh-btn--accent-sm:hover {
    background: var(--ndh-accent-dark);
    color: #fff;
}

.ndh-sidebar-cta__guarantees {
    list-style: none;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.ndh-sidebar-cta__guarantees li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.72);
}

.ndh-sidebar-cta__guarantees li svg {
    color: var(--ndh-accent);
    flex-shrink: 0;
}

/* Related sidebar list */
.ndh-sidebar-related {
    background: var(--ndh-white);
    border: 1px solid var(--ndh-surface-border);
    border-radius: var(--ndh-radius-xl);
    padding: 1.5rem;
}

.ndh-sidebar-related__title {
    font-family: var(--ndh-font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ndh-secondary);
    margin-bottom: 1rem;
}

.ndh-sidebar-related__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ndh-sidebar-related__list li {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--ndh-surface-border);
}

.ndh-sidebar-related__list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ndh-sidebar-related__list a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: var(--ndh-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
}

.ndh-sidebar-related__list a:hover {
    color: var(--ndh-accent);
}

.ndh-sidebar-related__time {
    font-size: 0.75rem;
    color: var(--ndh-secondary);
    font-weight: 400;
}

/* ==========================================================================
   24. ARCHIVE HERO (services + samples)
   ========================================================================== */

.ndh-archive-hero {
    background: var(--ndh-bg-warm);
    border-bottom: 1px solid var(--ndh-surface-border);
    padding: 3.5rem 0 2.5rem;
}

.ndh-archive-hero--services {
    background: linear-gradient(160deg, var(--ndh-bg-warm) 0%, var(--ndh-surface) 100%);
}

.ndh-archive-hero--samples {
    background: var(--ndh-bg-warm);
}

.ndh-archive-hero__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.ndh-archive-hero__title {
    font-family: var(--ndh-font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 500;
    color: var(--ndh-primary);
    margin: 0.5rem 0 0.75rem;
    letter-spacing: -0.02em;
}

.ndh-archive-hero__desc {
    color: var(--ndh-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 580px;
}

/* Stats (services archive) */
.ndh-archive-hero__stats {
    display: flex;
    gap: 2rem;
    flex-shrink: 0;
    align-items: center;
}

.ndh-archive-stat {
    text-align: center;
}

.ndh-archive-stat__value {
    display: block;
    font-family: var(--ndh-font-heading);
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--ndh-accent);
}

.ndh-archive-stat__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ndh-secondary);
    font-weight: 600;
}

/* Badge group (samples archive) */
.ndh-archive-hero__badge-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
}

.ndh-hero-badge {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--ndh-secondary);
    font-weight: 500;
}

.ndh-hero-badge__icon {
    font-size: 1.25rem;
}

/* ==========================================================================
   25. ARCHIVE FILTERS (category pills)
   ========================================================================== */

.ndh-archive-filters {
    background: var(--ndh-white);
    border-bottom: 1px solid var(--ndh-surface-border);
    padding: 0.875rem 0;
    position: sticky;
    top: 73px;
    z-index: 100;
}

.ndh-archive-filters__inner {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.ndh-filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ndh-secondary);
    border: 1px solid var(--ndh-surface-border);
    background: var(--ndh-white);
    transition: all var(--ndh-duration) var(--ndh-ease);
    white-space: nowrap;
    text-decoration: none;
}

.ndh-filter-pill:hover {
    border-color: var(--ndh-accent);
    color: var(--ndh-accent);
}

.ndh-filter-pill.is-active {
    background: var(--ndh-accent);
    border-color: var(--ndh-accent);
    color: #fff;
}

/* ==========================================================================
   26. SERVICE ARCHIVE CARDS
   ========================================================================== */

.ndh-service-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 3rem;
}

@media (max-width: 900px) {
    .ndh-service-archive-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .ndh-service-archive-grid { grid-template-columns: 1fr; }
}

.ndh-service-archive-card {
    background: var(--ndh-white);
    border: 1px solid var(--ndh-surface-border);
    border-radius: var(--ndh-radius-xl);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.4s var(--ndh-ease);
    position: relative;
    overflow: hidden;
}

.ndh-service-archive-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ndh-accent), var(--ndh-accent-dark));
    transform: scaleX(0);
    transition: transform 0.4s var(--ndh-ease);
}

.ndh-service-archive-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ndh-shadow-xl);
    border-color: transparent;
}

.ndh-service-archive-card:hover::before {
    transform: scaleX(1);
}

.ndh-service-archive-card__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--ndh-radius-lg);
    background: linear-gradient(135deg, rgba(224,122,95,0.1), rgba(224,122,95,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.ndh-service-archive-card__cat {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ndh-accent);
    text-decoration: none;
}

.ndh-service-archive-card__title {
    font-family: var(--ndh-font-heading);
    font-size: 1.1875rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

.ndh-service-archive-card__title a {
    color: var(--ndh-primary);
}

.ndh-service-archive-card__title a:hover {
    color: var(--ndh-accent);
}

.ndh-service-archive-card__excerpt {
    color: var(--ndh-secondary);
    font-size: 0.9375rem;
    line-height: 1.65;
    flex: 1;
}

.ndh-service-archive-card__footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--ndh-surface-border);
    flex-wrap: wrap;
}

/* ==========================================================================
   27. SAMPLE ARCHIVE CARDS
   ========================================================================== */

.ndh-sample-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 3rem;
}

@media (max-width: 900px) {
    .ndh-sample-archive-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .ndh-sample-archive-grid { grid-template-columns: 1fr; }
}

.ndh-sample-card {
    background: var(--ndh-white);
    border: 1px solid var(--ndh-surface-border);
    border-radius: var(--ndh-radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ndh-ease);
}

.ndh-sample-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ndh-shadow-xl);
    border-color: transparent;
}

.ndh-sample-card__thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--ndh-surface);
}

.ndh-sample-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ndh-ease);
}

.ndh-sample-card:hover .ndh-sample-card__img {
    transform: scale(1.04);
}

.ndh-sample-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 3rem;
    opacity: 0.25;
    text-decoration: none;
}

.ndh-sample-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--ndh-accent);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
    text-decoration: none;
    transition: background var(--ndh-duration) var(--ndh-ease);
}

.ndh-sample-card__badge:hover {
    background: var(--ndh-accent-dark);
    color: #fff;
}

.ndh-sample-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    flex: 1;
}

.ndh-sample-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--ndh-secondary);
}

.ndh-sample-card__title {
    font-family: var(--ndh-font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.35;
    margin: 0;
}

.ndh-sample-card__title a {
    color: var(--ndh-primary);
}

.ndh-sample-card__title a:hover {
    color: var(--ndh-accent);
}

.ndh-sample-card__excerpt {
    color: var(--ndh-secondary);
    font-size: 0.9375rem;
    line-height: 1.65;
    flex: 1;
}

.ndh-sample-card__footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.875rem;
    border-top: 1px solid var(--ndh-surface-border);
}

.ndh-sample-card__order-link {
    font-size: 0.875rem;
    color: var(--ndh-accent);
    font-weight: 500;
    text-decoration: none;
    margin-left: auto;
}

.ndh-sample-card__order-link:hover {
    color: var(--ndh-accent-dark);
    text-decoration: underline;
}

/* ==========================================================================
   28. SAMPLE BADGE (single page)
   ========================================================================== */

.ndh-sample-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.875rem;
    background: rgba(224, 122, 95, 0.12);
    color: var(--ndh-accent);
    border: 1px solid rgba(224, 122, 95, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ==========================================================================
   29. SAMPLE DISCLAIMER
   ========================================================================== */

.ndh-sample-disclaimer {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    background: rgba(224, 122, 95, 0.06);
    border: 1px solid rgba(224, 122, 95, 0.2);
    border-radius: var(--ndh-radius-lg);
    padding: 1rem 1.25rem;
    margin: 2rem 0;
    color: var(--ndh-sidebar);
}

.ndh-sample-disclaimer svg {
    color: var(--ndh-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.ndh-sample-disclaimer p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   30. CTA STRIP (services archive bottom)
   ========================================================================== */

.ndh-cta-strip {
    background: var(--ndh-primary);
    padding: 3rem 0;
}

.ndh-cta-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.ndh-cta-strip__title {
    font-family: var(--ndh-font-heading);
    font-size: 1.5rem;
    color: var(--ndh-white);
    margin-bottom: 0.375rem;
}

.ndh-cta-strip__desc {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
}

.ndh-cta-strip__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.ndh-btn--outline-light {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
    padding: 0.75rem 1.5rem;
    border-radius: var(--ndh-radius-md);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--ndh-duration) var(--ndh-ease);
    display: inline-flex;
    align-items: center;
}

.ndh-btn--outline-light:hover {
    border-color: rgba(255,255,255,0.7);
    color: #fff;
    background: rgba(255,255,255,0.06);
}

/* ==========================================================================
   31. REASSURANCE STRIP (samples archive bottom)
   ========================================================================== */

.ndh-reassurance-strip {
    background: var(--ndh-surface-light);
    border-top: 1px solid var(--ndh-surface-border);
    padding: 3rem 0;
}

.ndh-reassurance-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .ndh-reassurance-strip__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .ndh-reassurance-strip__grid { grid-template-columns: 1fr; }
}

.ndh-reassurance-item {
    text-align: center;
}

.ndh-reassurance-item__icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.ndh-reassurance-item h3 {
    font-family: var(--ndh-font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--ndh-primary);
    margin-bottom: 0.375rem;
}

.ndh-reassurance-item p {
    font-size: 0.9rem;
    color: var(--ndh-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   HOMEPAGE — FREE SAMPLES SECTION
   ========================================================================== */

.ndh-fp-samples {
    background: linear-gradient(135deg, var(--ndh-primary) 0%, #3a3f4a 60%, #2a2f3a 100%);
    position: relative;
    overflow: hidden;
}

/* decorative radial glows */
.ndh-fp-samples::before,
.ndh-fp-samples::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.ndh-fp-samples::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 122, 95, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -150px;
}
.ndh-fp-samples::after {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(224, 122, 95, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

/* Section header on dark bg */
.ndh-overline--light { color: var(--ndh-accent); }
.ndh-section-header__title--light { color: var(--ndh-white); }
.ndh-section-header__description--light { color: rgba(255,255,255,0.65); }

/* ── Sample cards grid ── */
.ndh-fp-samples__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}
@media (max-width: 900px) { .ndh-fp-samples__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .ndh-fp-samples__grid { grid-template-columns: 1fr; } }

/* ── Individual sample card ── */
.ndh-fp-sample-card {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--ndh-radius-xl);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform var(--ndh-duration) var(--ndh-ease),
                border-color var(--ndh-duration) var(--ndh-ease),
                box-shadow var(--ndh-duration) var(--ndh-ease),
                background var(--ndh-duration) var(--ndh-ease);
    backdrop-filter: blur(8px);
    position: relative;
}
.ndh-fp-sample-card:hover {
    transform: translateY(-6px);
    border-color: rgba(224, 122, 95, 0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(224, 122, 95, 0.3);
    background: rgba(255,255,255,0.08);
}

/* Badges row */
.ndh-fp-sample-card__badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
.ndh-fp-sample-card__badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--ndh-accent);
    color: var(--ndh-white);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    border-radius: 100px;
}
.ndh-fp-sample-card__cat {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(255,255,255,0.15);
    color: var(--ndh-white);
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: 100px;
    backdrop-filter: blur(4px);
}

/* Thumbnail */
.ndh-fp-sample-card__thumb {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    flex-shrink: 0;
}
.ndh-fp-sample-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ndh-ease);
    display: block;
}
.ndh-fp-sample-card:hover .ndh-fp-sample-card__thumb img {
    transform: scale(1.06);
}
.ndh-fp-sample-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.03);
}

/* Body */
.ndh-fp-sample-card__body {
    padding: 1rem 1.125rem 0.75rem;
    flex: 1;
}
.ndh-fp-sample-card__title {
    font-family: var(--ndh-font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ndh-white);
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ndh-fp-sample-card__excerpt {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ndh-fp-sample-card__meta {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}
.ndh-fp-sample-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* Footer CTA */
.ndh-fp-sample-card__foot {
    padding: 0.75rem 1.125rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.ndh-fp-sample-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ndh-accent);
    transition: gap var(--ndh-duration) var(--ndh-ease);
}
.ndh-fp-sample-card:hover .ndh-fp-sample-card__cta { gap: 0.625rem; }

/* Placeholder/skeleton */
.ndh-fp-sample-card--placeholder { pointer-events: none; }
.ndh-fp-sample-card__skel {
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    margin-bottom: 0.5rem;
    animation: ndh-shimmer 1.8s ease-in-out infinite;
}
.ndh-fp-sample-card__skel--title { height: 18px; width: 80%; }
.ndh-fp-sample-card__skel--text  { height: 13px; width: 100%; }
.ndh-fp-sample-card__skel--short { width: 60%; }
@keyframes ndh-shimmer {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* Footer CTA row */
.ndh-fp-samples__footer {
    text-align: center;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   HOMEPAGE — SCROLLABLE BLOG WITH TOC
   ========================================================================== */

/* ==========================================================================
   NDH FRONT-PAGE BLOG GRID
   ========================================================================== */
.ndh-fp-blog-grid { background: var(--ndh-white); }

.ndh-fp-blog-grid__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 3rem;
}
@media (max-width: 900px) {
    .ndh-fp-blog-grid__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
    .ndh-fp-blog-grid__grid { grid-template-columns: 1fr; }
}

/* Card */
.ndh-fp-blog-grid__card {
    display: flex;
    flex-direction: column;
    background: var(--ndh-white);
    border: 1.5px solid var(--ndh-surface-border);
    border-radius: var(--ndh-radius-xl);
    padding: 1.75rem;
    transition: border-color var(--ndh-duration) var(--ndh-ease),
                box-shadow var(--ndh-duration) var(--ndh-ease),
                transform var(--ndh-duration) var(--ndh-ease);
}
.ndh-fp-blog-grid__card:hover {
    border-color: var(--ndh-accent);
    box-shadow: var(--ndh-shadow-md);
    transform: translateY(-3px);
}

/* Meta row */
.ndh-fp-blog-grid__card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--ndh-secondary);
    margin-bottom: 0.875rem;
}
.ndh-fp-blog-grid__card-cat {
    font-weight: 600;
    color: var(--ndh-secondary);
    text-decoration: none;
    transition: color var(--ndh-duration) var(--ndh-ease);
}
.ndh-fp-blog-grid__card-cat:hover { color: var(--ndh-accent); }
.ndh-fp-blog-grid__card-sep { opacity: 0.45; }

/* Title */
.ndh-fp-blog-grid__card-title {
    font-family: var(--ndh-font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--ndh-primary);
    margin-bottom: 0.75rem;
}
.ndh-fp-blog-grid__card-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--ndh-duration) var(--ndh-ease);
}
.ndh-fp-blog-grid__card-title a:hover { color: var(--ndh-accent); }

/* Excerpt */
.ndh-fp-blog-grid__card-excerpt {
    font-size: 0.9rem;
    color: var(--ndh-secondary);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* CTA */
.ndh-fp-blog-grid__card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ndh-accent);
    text-decoration: none;
    transition: gap var(--ndh-duration) var(--ndh-ease),
                color var(--ndh-duration) var(--ndh-ease);
    margin-top: auto;
}
.ndh-fp-blog-grid__card-cta:hover { gap: 0.625rem; color: var(--ndh-accent-dark); }

/* Footer CTA */
.ndh-fp-blog-grid__footer {
    text-align: center;
}

/* ── Keep old scroll classes so they don't 404 if cached ── */
.ndh-fp-blog-scroll { display: none; }

/* ── Two-column layout ── */
.ndh-fp-blog-scroll__layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
    align-items: start;
}
@media (max-width: 900px) {
    .ndh-fp-blog-scroll__layout { grid-template-columns: 1fr; }
    .ndh-fp-blog-scroll__toc { display: none; }
}

/* ── TOC sidebar ── */
.ndh-fp-blog-scroll__toc {
    position: sticky;
    top: 100px;
    background: var(--ndh-bg-warm);
    border: 1.5px solid var(--ndh-surface-border);
    border-radius: var(--ndh-radius-xl);
    padding: 1.5rem;
    box-shadow: var(--ndh-shadow-sm);
}
.ndh-fp-blog-scroll__toc-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ndh-secondary);
    margin-bottom: 1.25rem;
}
.ndh-fp-blog-scroll__toc-head svg { color: var(--ndh-accent); }

/* Scroll progress track */
.ndh-fp-blog-scroll__toc-progress {
    margin-bottom: 1rem;
}
.ndh-fp-blog-scroll__toc-track {
    width: 100%;
    height: 3px;
    background: var(--ndh-surface-border);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.ndh-fp-blog-scroll__toc-thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--ndh-accent), var(--ndh-accent-dark));
    border-radius: 10px;
    transition: width 0.15s linear;
}

/* TOC list */
.ndh-fp-blog-scroll__toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.ndh-fp-blog-scroll__toc-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.625rem;
    border-radius: var(--ndh-radius-md);
    font-size: 0.875rem;
    color: var(--ndh-secondary);
    text-decoration: none;
    transition: all var(--ndh-duration) var(--ndh-ease);
    cursor: pointer;
}
.ndh-fp-blog-scroll__toc-link:hover {
    background: var(--ndh-surface);
    color: var(--ndh-primary);
}
.ndh-fp-blog-scroll__toc-link.is-active {
    background: rgba(224, 122, 95, 0.1);
    color: var(--ndh-accent);
    font-weight: 600;
}
.ndh-fp-blog-scroll__toc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ndh-surface-border);
    flex-shrink: 0;
    transition: background var(--ndh-duration) var(--ndh-ease),
                transform var(--ndh-duration) var(--ndh-ease);
}
.ndh-fp-blog-scroll__toc-link.is-active .ndh-fp-blog-scroll__toc-dot {
    background: var(--ndh-accent);
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.2);
}
.ndh-fp-blog-scroll__toc-text { flex: 1; }
.ndh-fp-blog-scroll__toc-count {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--ndh-secondary);
    background: var(--ndh-surface);
    padding: 0.1rem 0.4rem;
    border-radius: 100px;
    min-width: 20px;
    text-align: center;
}
.ndh-fp-blog-scroll__toc-link.is-active .ndh-fp-blog-scroll__toc-count {
    background: rgba(224, 122, 95, 0.15);
    color: var(--ndh-accent);
}
.ndh-fp-blog-scroll__toc-footer {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--ndh-surface-border);
}
.ndh-fp-blog-scroll__toc-footer a {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ndh-accent);
    text-decoration: none;
    transition: gap var(--ndh-duration) var(--ndh-ease);
}
.ndh-fp-blog-scroll__toc-footer a:hover { gap: 0.625rem; }

/* ── Scrollable panel ── */
.ndh-fp-blog-scroll__panel {
    min-height: 560px;
    max-height: 620px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1.5px solid var(--ndh-surface-border);
    border-radius: var(--ndh-radius-xl);
    padding: 1.5rem;
    background: var(--ndh-white);
    position: relative;
    scroll-behavior: smooth;
}

/* ═══ WOW custom scrollbar ═══ */
.ndh-fp-blog-scroll__panel::-webkit-scrollbar {
    width: 6px;
}
.ndh-fp-blog-scroll__panel::-webkit-scrollbar-track {
    background: var(--ndh-surface);
    border-radius: 10px;
}
.ndh-fp-blog-scroll__panel::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        var(--ndh-accent) 0%,
        var(--ndh-accent-dark) 50%,
        rgba(224, 122, 95, 0.4) 100%
    );
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: background 0.3s ease;
}
.ndh-fp-blog-scroll__panel::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        180deg,
        var(--ndh-accent-dark) 0%,
        var(--ndh-accent) 100%
    );
}
.ndh-fp-blog-scroll__panel::-webkit-scrollbar-corner {
    background: transparent;
}
/* Firefox scrollbar */
.ndh-fp-blog-scroll__panel {
    scrollbar-width: thin;
    scrollbar-color: var(--ndh-accent) var(--ndh-surface);
}

/* Fade gradient at bottom */
.ndh-fp-blog-scroll__fade {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--ndh-white) 0%, transparent 100%);
    pointer-events: none;
    margin: 0 -1.5rem -1.5rem;
}

/* ── Category groups ── */
.ndh-fp-blog-scroll__group {
    margin-bottom: 2.5rem;
}
.ndh-fp-blog-scroll__group:last-of-type { margin-bottom: 0; }

.ndh-fp-blog-scroll__group-head {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1.5px solid var(--ndh-surface-border);
}
.ndh-fp-blog-scroll__group-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ndh-accent);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.2);
}
.ndh-fp-blog-scroll__group-title {
    font-family: var(--ndh-font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--ndh-primary);
    flex: 1;
    margin: 0;
}
.ndh-fp-blog-scroll__group-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ndh-secondary);
    text-decoration: none;
    transition: color var(--ndh-duration) var(--ndh-ease),
                gap var(--ndh-duration) var(--ndh-ease);
}
.ndh-fp-blog-scroll__group-link:hover { color: var(--ndh-accent); gap: 0.5rem; }

/* ── Article item ── */
.ndh-fp-blog-scroll__item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--ndh-white);
    border: 1px solid var(--ndh-surface-border);
    border-radius: var(--ndh-radius-lg);
    transition: border-color var(--ndh-duration) var(--ndh-ease),
                box-shadow var(--ndh-duration) var(--ndh-ease),
                transform var(--ndh-duration) var(--ndh-ease);
}
.ndh-fp-blog-scroll__item:last-child { margin-bottom: 0; }
.ndh-fp-blog-scroll__item:hover {
    border-color: var(--ndh-accent);
    box-shadow: var(--ndh-shadow-md);
    transform: translateX(3px);
}
.ndh-fp-blog-scroll__item-img {
    width: 90px;
    height: 70px;
    border-radius: var(--ndh-radius-md);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--ndh-surface);
}
.ndh-fp-blog-scroll__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s var(--ndh-ease);
}
.ndh-fp-blog-scroll__item:hover .ndh-fp-blog-scroll__item-img img {
    transform: scale(1.07);
}
.ndh-fp-blog-scroll__item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ndh-surface) 0%, var(--ndh-surface-border) 100%);
    color: var(--ndh-accent);
    opacity: 0.7;
}
.ndh-fp-blog-scroll__item-body { flex: 1; min-width: 0; }
.ndh-fp-blog-scroll__item-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--ndh-secondary);
    margin-bottom: 0.375rem;
}
.ndh-fp-blog-scroll__item-readtime {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.ndh-fp-blog-scroll__item-readtime svg { color: var(--ndh-accent); }
.ndh-fp-blog-scroll__item-title {
    font-family: var(--ndh-font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ndh-fp-blog-scroll__item-title a {
    color: var(--ndh-primary);
    text-decoration: none;
    transition: color var(--ndh-duration) var(--ndh-ease);
}
.ndh-fp-blog-scroll__item-title a:hover { color: var(--ndh-accent); }
.ndh-fp-blog-scroll__item-excerpt {
    font-size: 0.8125rem;
    color: var(--ndh-secondary);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.375rem;
}
.ndh-fp-blog-scroll__item-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ndh-accent);
    text-decoration: none;
    transition: gap var(--ndh-duration) var(--ndh-ease);
}
.ndh-fp-blog-scroll__item:hover .ndh-fp-blog-scroll__item-cta { gap: 0.5rem; }

/* ==========================================================================
   NDH FRONT-PAGE CONTENT HUB — REDESIGNED
   ========================================================================== */

/* ── Section wrapper ── */
.ndh-fp-hub {
    background: var(--ndh-white);
    position: relative;
    overflow: hidden;
}

/* Decorative background glows */
.ndh-fp-hub__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.06;
}
.ndh-fp-hub__glow--1 {
    width: 480px; height: 480px;
    background: var(--ndh-accent);
    top: -120px; left: -120px;
}
.ndh-fp-hub__glow--2 {
    width: 360px; height: 360px;
    background: var(--ndh-primary);
    bottom: -80px; right: -80px;
}

/* ── Two-column layout ── */
.ndh-fp-hub__layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2.5rem;
    align-items: start;
}
@media (max-width: 960px) {
    .ndh-fp-hub__layout { grid-template-columns: 1fr; }
    .ndh-fp-hub__sidebar { display: none; }
}

/* ══ LEFT SIDEBAR ══ */
.ndh-fp-hub__sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--ndh-white);
    border: 1.5px solid var(--ndh-surface-border);
    border-radius: var(--ndh-radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(47,52,58,0.08), 0 1px 4px rgba(47,52,58,0.04);
    min-height: 560px;
}

/* ── Featured image ── */
.ndh-fp-hub__img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    flex-shrink: 0;
}
.ndh-fp-hub__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ndh-ease);
}
.ndh-fp-hub__sidebar:hover .ndh-fp-hub__img { transform: scale(1.04); }

/* Placeholder when no featured image */
.ndh-fp-hub__img-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(
        135deg,
        var(--ndh-primary) 0%,
        #3a4048 50%,
        #2a2f38 100%
    );
    color: rgba(255,255,255,0.55);
    font-size: 0.8125rem;
    font-weight: 500;
    text-align: center;
    padding: 1rem;
}
.ndh-fp-hub__img-placeholder svg { color: var(--ndh-accent); opacity: 0.8; }

/* Gradient overlay on image */
.ndh-fp-hub__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(47,52,58,0.72) 100%
    );
}

/* Read-time pill on image */
.ndh-fp-hub__img-badge {
    position: absolute;
    bottom: 0.875rem;
    left: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ndh-white);
    background: var(--ndh-accent);
    border-radius: 100px;
    padding: 0.3rem 0.75rem;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(224,122,95,0.45);
}

/* ── Stats strip ── */
.ndh-fp-hub__stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0.875rem 1rem;
    background: var(--ndh-bg-warm);
    border-bottom: 1px solid var(--ndh-surface-border);
    flex-shrink: 0;
}
.ndh-fp-hub__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}
.ndh-fp-hub__stat-num {
    font-family: var(--ndh-font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--ndh-primary);
    line-height: 1;
}
.ndh-fp-hub__stat-label {
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--ndh-secondary);
}
.ndh-fp-hub__stat-div {
    width: 1px;
    height: 28px;
    background: var(--ndh-surface-border);
}

/* ── TOC nav (inside sidebar) ── */
.ndh-fp-hub__toc {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.ndh-fp-hub__toc-head {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ndh-secondary);
    margin-bottom: 0.875rem;
}
.ndh-fp-hub__toc-head svg { color: var(--ndh-accent); }

/* Progress track */
.ndh-fp-hub__toc-progress { margin-bottom: 1rem; }
.ndh-fp-hub__toc-track {
    width: 100%;
    height: 4px;
    background: var(--ndh-surface);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.ndh-fp-hub__toc-thumb {
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--ndh-accent) 0%, var(--ndh-accent-dark) 100%);
    border-radius: 10px;
    transition: width 0.12s linear;
    box-shadow: 0 0 6px rgba(224,122,95,0.5);
}

/* TOC list */
.ndh-fp-hub__toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    flex: 1;
}
.ndh-fp-hub__toc-item--sub .ndh-fp-hub__toc-link {
    padding-left: 1.625rem;
    font-size: 0.79rem;
    opacity: 0.85;
}
.ndh-fp-hub__toc-item--sub .ndh-fp-hub__toc-dot { width: 5px; height: 5px; }

.ndh-fp-hub__toc-link {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 0.5rem;
    border-radius: var(--ndh-radius-md);
    font-size: 0.8125rem;
    color: var(--ndh-secondary);
    text-decoration: none;
    line-height: 1.4;
    border-left: 2px solid transparent;
    transition: background var(--ndh-duration) var(--ndh-ease),
                color var(--ndh-duration) var(--ndh-ease),
                border-color var(--ndh-duration) var(--ndh-ease),
                padding-left var(--ndh-duration) var(--ndh-ease);
}
.ndh-fp-hub__toc-link:hover {
    background: var(--ndh-surface);
    color: var(--ndh-primary);
    padding-left: 0.75rem;
    border-left-color: var(--ndh-surface-border);
}
.ndh-fp-hub__toc-link.is-active {
    background: rgba(224,122,95,0.08);
    color: var(--ndh-accent);
    font-weight: 600;
    border-left-color: var(--ndh-accent);
    padding-left: 0.75rem;
}

.ndh-fp-hub__toc-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.35rem;
    background: var(--ndh-surface-border);
    transition: background var(--ndh-duration) var(--ndh-ease),
                transform var(--ndh-duration) var(--ndh-ease),
                box-shadow var(--ndh-duration) var(--ndh-ease);
}
.ndh-fp-hub__toc-link.is-active .ndh-fp-hub__toc-dot {
    background: var(--ndh-accent);
    transform: scale(1.5);
    box-shadow: 0 0 0 3px rgba(224,122,95,0.22);
}
.ndh-fp-hub__toc-text { flex: 1; }

/* ══ RIGHT — Scrollable Content Panel ══ */
.ndh-fp-hub__panel {
    min-height: 560px;
    max-height: 660px;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--ndh-white);
    border: 1.5px solid var(--ndh-surface-border);
    border-radius: var(--ndh-radius-xl);
    padding: 2.25rem 2.5rem;
    position: relative;
    scroll-behavior: smooth;
    box-shadow: 0 4px 24px rgba(47,52,58,0.06);
}

/* ══ WOW custom scrollbar ══ */
.ndh-fp-hub__panel::-webkit-scrollbar { width: 8px; }
.ndh-fp-hub__panel::-webkit-scrollbar-track {
    background: var(--ndh-surface);
    border-radius: 10px;
    margin: 8px 0;
}
.ndh-fp-hub__panel::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        var(--ndh-accent)           0%,
        var(--ndh-accent-dark)      55%,
        rgba(224,122,95,0.30)       100%
    );
    border-radius: 10px;
    border: 2px solid var(--ndh-white);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
}
.ndh-fp-hub__panel::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--ndh-accent-dark) 0%, var(--ndh-accent) 100%);
}
.ndh-fp-hub__panel::-webkit-scrollbar-corner { background: transparent; }
.ndh-fp-hub__panel { scrollbar-width: thin; scrollbar-color: var(--ndh-accent) var(--ndh-surface); }

/* Prose content */
.ndh-fp-hub__content { padding-bottom: 4rem; }

.ndh-fp-hub__content h2 {
    font-family: var(--ndh-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ndh-primary);
    margin: 2.25rem 0 0.625rem;
    padding: 0.625rem 0 0.625rem 0.875rem;
    border-left: 3px solid var(--ndh-accent);
    border-top: 1px solid var(--ndh-surface-border);
    scroll-margin-top: 1rem;
    background: linear-gradient(90deg, rgba(224,122,95,0.04) 0%, transparent 70%);
    border-radius: 0 var(--ndh-radius-sm) var(--ndh-radius-sm) 0;
}
.ndh-fp-hub__content h2:first-child { margin-top: 0; border-top: none; }

.ndh-fp-hub__content h3 {
    font-family: var(--ndh-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ndh-primary);
    margin: 1.375rem 0 0.5rem;
    padding-left: 0.625rem;
    border-left: 2px solid rgba(224,122,95,0.4);
    scroll-margin-top: 1rem;
}

.ndh-fp-hub__content p {
    font-size: 0.9375rem;
    color: var(--ndh-secondary);
    line-height: 1.8;
    margin-bottom: 0.875rem;
}

/* Fade overlay at bottom */
.ndh-fp-hub__fade {
    position: sticky;
    bottom: 0;
    left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--ndh-white) 0%, transparent 100%);
    pointer-events: none;
    margin: 0 -2.5rem -2.25rem;
}

