/* ═══════════════════════════════════════════════════════════════════
   NetHub CMS — Premium Light Theme
   Custom designed for NetHub Hosting
   ═══════════════════════════════════════════════════════════════════ */

/* Google Fonts loaded async from HTML head for performance */

/* Screen-reader only utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    /* Primary Palette — Vibrant Indigo-Purple */
    --primary: #673de6;
    --primary-dark: #5025c4;
    --primary-light: #7b57ea;
    --primary-ghost: rgba(103, 61, 230, 0.08);
    --primary-glow: rgba(103, 61, 230, 0.15);

    /* Accent — Warm Coral */
    --accent: #ff6b35;
    --accent-light: #ff8a5c;

    /* Success / Warning / Error */
    --success: #00b37e;
    --success-bg: #ecfdf5;
    --warning: #f59e0b;
    --warning-bg: #fffbeb;
    --error: #ef4444;
    --error-bg: #fef2f2;
    --info: #3b82f6;
    --info-bg: #eff6ff;

    /* Neutrals — Elegant Gray Scale */
    --white: #ffffff;
    --gray-25: #fcfcfd;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #6b7280;
    --gray-500: #4b5563;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gray-950: #0a0d14;

    /* Surface & Background */
    --bg: #ffffff;
    --bg-alt: #f9fafb;
    --bg-elevated: #ffffff;
    --surface: #ffffff;
    --surface-hover: #f9fafb;
    --border: #e5e7eb;
    --border-light: #f3f4f6;

    /* Text */
    --text: #111827;
    --text-secondary: #4b5563;
    --text-dim: #6b7280;
    --text-muted: #9ca3af;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #673de6 0%, #2563eb 50%, #06b6d4 100%);
    --gradient-primary: linear-gradient(135deg, #673de6 0%, #5025c4 100%);
    --gradient-warm: linear-gradient(135deg, #ff6b35 0%, #f59e0b 100%);
    --gradient-mesh: radial-gradient(ellipse at 20% 50%, rgba(103, 61, 230, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(6, 182, 212, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(255, 107, 53, 0.04) 0%, transparent 40%);

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.06), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.07), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 4px 14px rgba(103, 61, 230, 0.25);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-card-hover: 0 10px 40px rgba(0, 0, 0, 0.08);

    /* Layout */
    --container: 1320px;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --header-height: 72px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── Reset & Base ───────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    max-width: 100%;
}

body.nh-theme {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s var(--ease);
}

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

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

/* ─── Container ──────────────────────────────────────────────────── */
.nh-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Typography ─────────────────────────────────────────────────── */
.nh-gradient-text {
    background: var(--gradient-hero) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    display: inline;
}

.text-success {
    color: var(--success) !important;
}

.text-error {
    color: var(--error) !important;
}

/* ═══════════════════════════════════════════════════════════════════
   HEADER — Floating glass effect
   ═══════════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════════
   TOP UTILITY BAR
   ═══════════════════════════════════════════════════════════════════ */
.nh-topbar {
    background: #0d1117;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    height: 36px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.nh-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nh-topbar__left {
    display: flex;
    align-items: center;
    gap: 0;
}

.nh-topbar__right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nh-topbar a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 3px;
    transition: all 0.15s;
    font-weight: 500;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.nh-topbar a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

/* First link aligns with logo below */
.nh-topbar__left>a:first-child {
    padding-left: 0;
}

/* Hide icons from topbar text links — cleaner look */
.nh-topbar__left>a>i {
    display: none;
}

.nh-topbar__phone {
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    margin-left: 6px;
    padding-left: 12px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.nh-topbar__phone i {
    display: inline-flex !important;
    color: #22c55e !important;
    opacity: 1 !important;
    font-size: 12px !important;
}

.nh-topbar__signup {
    background: #f97316 !important;
    color: #fff !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    padding: 6px 16px !important;
    gap: 6px !important;
}

.nh-topbar__signup:hover {
    background: #ea580c !important;
}

/* --- Topbar Icon Button (Notifications etc.) --- */
.nh-topbar__icon-btn {
    font-size: 14px !important;
    padding: 4px 6px !important;
    opacity: 0.7;
    position: relative;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-family: inherit;
}

.nh-topbar__icon-btn:hover {
    opacity: 1;
}

.nh-topbar__notif-badge {
    position: absolute;
    top: -2px;
    right: -4px;
    background: #ef4444;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    min-width: 14px;
    height: 14px;
    line-height: 14px;
    text-align: center;
    border-radius: 50%;
    padding: 0 3px;
}

.nh-topbar__notif-menu {
    min-width: 300px !important;
    right: 0;
    left: auto !important;
}

.nh-topbar__notif-item {
    font-size: 12px !important;
    padding: 10px 14px !important;
    border-bottom: 1px solid #f0f0f0;
}

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

.nh-topbar__notif-empty {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 12px;
}

/* --- Topbar Cart ("Sepet 0" style) --- */
.nh-topbar__cart {
    font-size: 12px !important;
    gap: 5px !important;
}

.nh-topbar__cart i {
    font-size: 13px;
    opacity: 0.7;
}

.nh-topbar__cart span {
    font-weight: 700;
    color: #fff;
}

@keyframes cartPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

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

/* --- Topbar Dropdown (Currency / Language) --- */
.nh-topbar__dropdown {
    position: relative;
}

.nh-topbar__dropdown-trigger {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 3px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.15s;
    font-family: inherit;
    white-space: nowrap;
}

.nh-topbar__dropdown-trigger:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nh-topbar__arrow {
    font-size: 0.55rem !important;
    opacity: 0.6;
    transition: transform 0.2s;
}

.nh-topbar__dropdown.open .nh-topbar__arrow {
    transform: rotate(180deg);
}

.nh-topbar__dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: var(--gray-900);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.2s ease;
}

.nh-topbar__dropdown.open .nh-topbar__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nh-topbar__dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    transition: all 0.15s;
    white-space: nowrap;
}

.nh-topbar__dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
}

.nh-topbar__dropdown-item.active {
    background: rgba(var(--primary-rgb, 105, 78, 247), 0.15) !important;
    color: var(--primary) !important;
}

.nh-topbar__dropdown-symbol {
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 18px;
    text-align: center;
}

.nh-topbar__flag {
    font-size: 1.05rem;
    line-height: 1;
}

/* --- Header Cart Button --- */
.nh-header__btn--icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-primary);
    background: transparent;
    border: 1px solid var(--border);
    transition: all 0.2s;
    text-decoration: none;
}

.nh-header__btn--icon:hover {
    background: var(--bg-secondary);
    border-color: var(--primary);
    color: var(--primary);
}

.nh-header__cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    padding: 0 4px;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════
   MAIN HEADER
   ═══════════════════════════════════════════════════════════════════ */
.nh-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.35s var(--ease);
}

.nh-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nh-mobile-lang-btn {
    display: none;
}

.nh-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo */
.nh-header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nh-header__logo-img {
    height: 38px;
    width: auto;
    transition: opacity 0.2s;
}

.nh-header__logo:hover .nh-header__logo-img {
    opacity: 0.85;
}

/* Nav */
.nh-header__nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nh-header__link {
    padding: 12px 16px;
    color: #1f2937;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.2s var(--ease);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nh-header__link:hover {
    color: var(--primary);
    background: rgba(var(--primary-rgb, 105, 78, 247), 0.06);
}

.nh-nav-arrow {
    font-size: 0.6rem;
    transition: transform 0.25s;
    opacity: 0.5;
}

/* ─── Mega Dropdown ───────────────────────────────────────────── */
.nh-nav-dropdown {
    position: relative;
}

.nh-nav-dropdown__menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 300px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.02);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s var(--ease);
    z-index: 999;
    pointer-events: none;
}

.nh-nav-dropdown:hover .nh-nav-dropdown__menu,
.nh-nav-dropdown.active .nh-nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.nh-nav-dropdown:hover .nh-nav-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.nh-nav-dropdown__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--gray-700);
    transition: all 0.2s;
}

.nh-nav-dropdown__item:hover {
    background: var(--primary-ghost);
    color: var(--primary);
}

.nh-nav-dropdown__item>i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-ghost);
    color: var(--primary);
    border-radius: 10px;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.2s;
}

.nh-nav-dropdown__item:hover>i {
    background: var(--primary);
    color: #fff;
}

.nh-nav-dropdown__item div strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.nh-nav-dropdown__item div span {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 400;
}

/* Header Actions */
.nh-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nh-header__btn {
    padding: 9px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.25s var(--ease);
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.nh-header__btn--outline {
    color: var(--gray-700);
    background: transparent;
    border: 1.5px solid var(--border);
}

.nh-header__btn--outline:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: var(--primary-ghost);
}

.nh-header__btn--solid {
    color: #fff;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-primary);
}

.nh-header__btn--solid:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(103, 61, 230, 0.35);
    color: #fff;
}

.nh-header__hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--gray-700);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
}

/* ═══════════════════════════════════════════════════════════════════
   MAIN CONTENT
   ═══════════════════════════════════════════════════════════════════ */
.nh-main-content {
    padding-top: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   DOMAIN BAR — Üstte Domain Arama
   ═══════════════════════════════════════════════════════════════════ */
.nh-domain-bar {
    padding: 20px 0;
    background: #fff;
    border-bottom: 1px solid #e8ecf3;
}

.nh-domain-bar__form {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.nh-domain-bar__icon {
    color: #64748b;
    font-size: 0.9rem;
}

.nh-domain-bar__input {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    outline: none;
    transition: border-color 0.3s ease;
}

.nh-domain-bar__input:focus {
    border-color: #673de6;
}

.nh-domain-bar__input::placeholder {
    color: #cbd5e1;
}

.nh-domain-bar__btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, #673de6, #4f46e5);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nh-domain-bar__btn:hover {
    background: linear-gradient(135deg, #5b32cc, #4338ca);
    transform: translateY(-1px);
}

.nh-domain-bar__tlds {
    display: flex;
    gap: 16px;
    margin-left: 8px;
}

.nh-domain-bar__tld {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1e293b;
}

.nh-domain-bar__tld-price {
    color: #673de6;
    font-weight: 700;
    margin-left: 4px;
    text-decoration: line-through;
    text-decoration-color: #ef4444;
}

/* Domain Results */
.nh-domain-results {
    background: #fff;
    padding: 0 0 24px;
    border-bottom: 1px solid #e8ecf3;
}

.nh-domain-v3__loading {
    text-align: center;
    padding: 20px;
    color: #64748b;
}

.nh-domain-v3__result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    margin-bottom: 8px;
}

.nh-domain-v3__result--available {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.03);
}

.nh-domain-v3__result--taken {
    opacity: 0.5;
}

.nh-domain-v3__result-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nh-domain-v3__result-domain {
    font-weight: 700;
    color: #1e293b;
}

.nh-domain-v3__result-status {
    font-size: 0.75rem;
    font-weight: 600;
}

.nh-domain-v3__result--available .nh-domain-v3__result-status {
    color: #10b981;
}

.nh-domain-v3__result--taken .nh-domain-v3__result-status {
    color: #ef4444;
}

.nh-domain-v3__result-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nh-domain-v3__result-price {
    font-weight: 700;
    color: #1e293b;
}

.nh-domain-v3__result-price small {
    color: #64748b;
    font-weight: 500;
}

.nh-domain-v3__result-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #673de6, #4f46e5);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.82rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

.nh-domain-v3__result-btn:hover {
    transform: translateY(-1px);
}

.nh-domain-v3__result-btn.added {
    background: #10b981;
}

.nh-domain-v3__no-result {
    text-align: center;
    padding: 20px;
    color: #64748b;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO SLIDER — Light + Illustrations Style
   ═══════════════════════════════════════════════════════════════════ */
.nh-slider {
    padding: 24px 0 0;
    background: #f8fafc;
}

.nh-slider__wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8ecf3;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.nh-slider__track {
    position: relative;
    width: 100%;
    height: 400px;
}

.nh-slider__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 56px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
    height: 400px;
}

.nh-slider__slide--active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.nh-slider__content {
    flex: 1;
    max-width: 50%;
    padding-right: 24px;
}

.nh-slider__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}

.nh-slider__title {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.25;
    margin-bottom: 14px;
}

.nh-slider__desc {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 420px;
}

.nh-slider__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.nh-slider__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

.nh-slider__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
    color: #fff;
}

/* Right illustration */
.nh-slider__visual {
    flex: 0 0 42%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 16px;
}

.nh-slider__visual img {
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
}

/* Bottom nav bar — dots left, arrows right */
.nh-slider__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    border-top: 1px solid #f1f5f9;
    background: #fff;
}

.nh-slider__dots {
    display: flex;
    gap: 8px;
    position: static;
    transform: none;
}

.nh-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.nh-slider__dot--active {
    background: #0f172a;
    border-color: #0f172a;
}

.nh-slider__arrows {
    display: flex;
    gap: 6px;
}

.nh-slider__arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nh-slider__arrow:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #eff6ff;
}

/* ═══════════════════════════════════════════════════════════════════
   TRUST BAR — Social Proof
   ═══════════════════════════════════════════════════════════════════ */
.nh-trust-bar {
    padding: 16px 0 0;
    background: #f8fafc;
}

.nh-trust-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 20px 32px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8ecf3;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    overflow-x: auto;
}

.nh-trust-bar__item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

.nh-trust-bar__label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.3;
}

.nh-trust-bar__platform {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nh-trust-bar__platform-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
}

.nh-trust-bar__stars {
    display: flex;
    gap: 2px;
}

.nh-trust-bar__stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.nh-trust-bar__score {
    display: flex;
    flex-direction: column;
}

.nh-trust-bar__score-label {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nh-trust-bar__score-value {
    font-size: 1.35rem;
    font-weight: 900;
    color: #1e293b;
}

.nh-trust-bar__divider {
    width: 1px;
    height: 48px;
    background: #e2e8f0;
}

.nh-trust-bar__google {
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

/* ═══════════════════════════════════════════════════════════════════
   SHARED — Section Header + Utilities
   ═══════════════════════════════════════════════════════════════════ */
.nh-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.nh-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(59, 130, 246, 0.08));
    color: #7c3aed;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    border: 1px solid rgba(139, 92, 246, 0.12);
}

.nh-section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    line-height: 1.2;
}

.nh-section-header p {
    font-size: 1rem;
    color: #64748b;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.nh-gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    display: inline;
}

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

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

/* ═══════════════════════════════════════════════════════════════════
   PRICING — Premium Cards
   ═══════════════════════════════════════════════════════════════════ */
.nh-pricing {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.nh-pricing__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e8ecf3;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    background: #fff;
}

.nh-pricing__card {
    position: relative;
    padding: 36px 28px;
    border-right: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: #fff;
}

.nh-pricing__card:last-child {
    border-right: none;
}

.nh-pricing__card:hover {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.02) 0%, rgba(59, 130, 246, 0.02) 100%);
}

.nh-pricing__card--featured {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.04) 0%, rgba(139, 92, 246, 0.01) 100%);
    border-top: 3px solid var(--card-accent, #8b5cf6);
}

.nh-pricing__ribbon {
    position: absolute;
    top: 12px;
    right: -8px;
    padding: 5px 16px 5px 12px;
    background: var(--card-accent, #8b5cf6);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nh-pricing__ribbon::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    border: 4px solid transparent;
    border-top-color: color-mix(in srgb, var(--card-accent, #8b5cf6), black 25%);
    border-right-color: color-mix(in srgb, var(--card-accent, #8b5cf6), black 25%);
}

.nh-pricing__card-head {
    text-align: center;
    margin-bottom: 24px;
}

.nh-pricing__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--card-accent, #8b5cf6), color-mix(in srgb, var(--card-accent), black 15%));
    color: #fff;
    font-size: 1.1rem;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--card-accent), transparent 60%);
}

.nh-pricing__card-head h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.nh-pricing__card-head p {
    font-size: 0.82rem;
    color: #64748b;
}

.nh-pricing__card-price {
    text-align: center;
    margin-bottom: 24px;
    padding: 16px 0;
}

.nh-pricing__old-price {
    font-size: 0.85rem;
    color: #64748b;
    text-decoration: line-through;
}

.nh-pricing__amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-top: 4px;
}

.nh-pricing__currency {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-top: 8px;
}

.nh-pricing__number {
    font-size: 3.2rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
    letter-spacing: -0.03em;
}

.nh-pricing__period {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    align-self: flex-end;
    margin-bottom: 6px;
}

.nh-pricing__card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--card-accent, #8b5cf6), color-mix(in srgb, var(--card-accent), black 15%));
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px color-mix(in srgb, var(--card-accent), transparent 65%);
    margin-bottom: 24px;
}

.nh-pricing__card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--card-accent), transparent 50%);
    color: #fff;
}

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

.nh-pricing__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.83rem;
    color: #475569;
    border-bottom: 1px solid #f8fafc;
}

.nh-pricing__features li:last-child {
    border-bottom: none;
}

.nh-pricing__features li i {
    color: var(--card-accent, #8b5cf6);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   SERVICES — Horizontal Cards
   ═══════════════════════════════════════════════════════════════════ */
.nh-services {
    padding: 80px 0;
    background: #fff;
}

.nh-svc-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nh-svc-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8ecf3;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.nh-svc-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--svc-color, #8b5cf6);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nh-svc-card:hover {
    border-color: color-mix(in srgb, var(--svc-color), transparent 75%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transform: translateX(4px);
}

.nh-svc-card:hover::before {
    opacity: 1;
}

.nh-svc-card__icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    background: color-mix(in srgb, var(--svc-color), transparent 88%);
    color: var(--svc-color, #8b5cf6);
    transition: all 0.3s ease;
}

.nh-svc-card:hover .nh-svc-card__icon {
    background: var(--svc-color, #8b5cf6);
    color: #fff;
    transform: scale(1.06);
}

.nh-svc-card__body {
    flex: 1;
    min-width: 0;
}

.nh-svc-card__body h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.nh-svc-card__body p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.nh-svc-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.nh-svc-card__price {
    padding: 6px 14px;
    background: color-mix(in srgb, var(--svc-color), transparent 92%);
    color: var(--svc-color, #8b5cf6);
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 8px;
    white-space: nowrap;
}

.nh-svc-card__arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    color: #64748b;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.nh-svc-card:hover .nh-svc-card__arrow {
    background: var(--svc-color, #8b5cf6);
    color: #fff;
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════════
   FEATURES — Split Layout
   ═══════════════════════════════════════════════════════════════════ */
.nh-features {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.nh-features__layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: start;
}

.nh-features__left h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 16px 0;
}

.nh-features__left>p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 28px;
}

.nh-features__highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.06), rgba(59, 130, 246, 0.06));
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    margin-bottom: 24px;
}

.nh-features__highlight-num {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    line-height: 1;
}

.nh-features__highlight-num span {
    font-size: 1.2rem;
}

.nh-features__highlight-info {
    display: flex;
    flex-direction: column;
}

.nh-features__highlight-info strong {
    font-size: 0.92rem;
    color: #0f172a;
    font-weight: 700;
}

.nh-features__highlight-info span {
    font-size: 0.78rem;
    color: #64748b;
}

.nh-features__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #0f172a;
    color: #fff;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nh-features__cta-btn:hover {
    background: #1e293b;
    transform: translateY(-2px);
    color: #fff;
}

.nh-features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.nh-features__card {
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.nh-features__card:hover {
    border-color: #e2e8f0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.nh-features__card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--f-color, #3b82f6), transparent 88%);
    color: var(--f-color, #3b82f6);
    font-size: 1rem;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.nh-features__card:hover .nh-features__card-icon {
    background: var(--f-color, #3b82f6);
    color: #fff;
    transform: scale(1.08);
}

.nh-features__card h4 {
    font-size: 0.92rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.nh-features__card p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════
   STATS — Animated Counters (Gradient BG)
   ═══════════════════════════════════════════════════════════════════ */
.nh-stats {
    padding: 64px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.nh-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
}

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

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

.nh-stats__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin: 0 auto 16px;
    backdrop-filter: blur(8px);
}

.nh-stats__counter {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}

.nh-stats__number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.nh-stats__suffix {
    font-size: 1.2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
}

.nh-stats__label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════════════
   REVIEWS — Testimonials
   ═══════════════════════════════════════════════════════════════════ */
.nh-reviews {
    padding: 80px 0;
    background: #fff;
}

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

.nh-reviews__card {
    position: relative;
    padding: 32px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    overflow: hidden;
}

.nh-reviews__card:hover {
    border-color: #e2e8f0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.nh-reviews__card--highlight {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03), rgba(59, 130, 246, 0.03));
    border-color: rgba(139, 92, 246, 0.15);
}

.nh-reviews__card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.nh-reviews__avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--avatar-bg, linear-gradient(135deg, #667eea, #764ba2));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
}

.nh-reviews__info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.nh-reviews__info span {
    font-size: 0.75rem;
    color: #64748b;
}

.nh-reviews__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
}

.nh-reviews__stars i {
    color: #fbbf24;
    font-size: 0.82rem;
}

.nh-reviews__text {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.7;
    font-style: italic;
}

.nh-reviews__quote {
    position: absolute;
    bottom: 16px;
    right: 20px;
    font-size: 2rem;
    color: rgba(139, 92, 246, 0.08);
}

/* ═══════════════════════════════════════════════════════════════════
   CTA — Cinematic Call To Action
   ═══════════════════════════════════════════════════════════════════ */
.nh-cta {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 25%, #4c1d95 50%, #5b21b6 75%, #7c3aed 100%);
    overflow: hidden;
}

.nh-cta__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.nh-cta__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: ctaFloat 8s ease-in-out infinite;
}

.nh-cta__shape--1 {
    width: 300px;
    height: 300px;
    background: rgba(59, 130, 246, 0.25);
    top: -80px;
    left: -80px;
    animation-delay: 0s;
}

.nh-cta__shape--2 {
    width: 250px;
    height: 250px;
    background: rgba(168, 85, 247, 0.2);
    bottom: -60px;
    right: -60px;
    animation-delay: 3s;
}

.nh-cta__shape--3 {
    width: 180px;
    height: 180px;
    background: rgba(236, 72, 153, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 5s;
}

@keyframes ctaFloat {

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

    33% {
        transform: translate(20px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-15px, 15px) scale(0.95);
    }
}

.nh-cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.nh-cta__content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.nh-cta__content h2 span {
    background: linear-gradient(90deg, #c4b5fd, #93c5fd) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    display: inline;
}

.nh-cta__content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.7;
}

.nh-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.nh-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nh-cta__btn--primary {
    background: #fff;
    color: #4c1d95;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nh-cta__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    color: #4c1d95;
}

.nh-cta__btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.nh-cta__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.nh-cta__badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.nh-cta__badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.nh-cta__badge-item i {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════════════════════════════════
   HOMEPAGE — Responsive
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .nh-pricing__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .nh-features__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nh-svc-card__body p {
        display: none;
    }

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

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

    .nh-slider__slide {
        flex-direction: column;
        height: auto;
        min-height: 320px;
        padding: 32px 24px;
        gap: 16px;
    }

    .nh-slider__track {
        height: auto;
    }

    .nh-slider__content {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .nh-slider__visual {
        flex: 0 0 auto;
        max-height: 200px;
    }

    .nh-slider__actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nh-pricing__cards {
        grid-template-columns: 1fr;
    }

    .nh-pricing__card {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
    }

    .nh-svc-card {
        padding: 18px 20px;
        gap: 16px;
    }

    .nh-svc-card__meta {
        flex-direction: column;
        gap: 8px;
    }

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

    .nh-trust-bar__inner {
        gap: 16px;
        padding: 16px 20px;
        margin-top: -12px;
    }

    .nh-trust-bar__label {
        font-size: 0.82rem;
    }

    .nh-trust-bar__divider {
        display: none;
    }

    .nh-cta__actions {
        flex-direction: column;
    }

    .nh-cta__btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nh-slider__title {
        font-size: 1.4rem;
    }

    .nh-slider__visual {
        display: none;
    }

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

    .nh-stats__number {
        font-size: 2rem;
    }

    .nh-pricing__number {
        font-size: 2.5rem;
    }

    .nh-section-header h2 {
        font-size: 1.5rem;
    }

    .nh-cta__content h2 {
        font-size: 1.5rem;
    }

    .nh-cta__badges {
        gap: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   PAGE HERO (Sub-pages)
   ═══════════════════════════════════════════════════════════════════ */
.nh-page-hero {
    position: relative;
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(160deg, #f0edff 0%, #e8f4fd 30%, #fff6f0 60%, #f0edff 100%);
    overflow: hidden;
}

.nh-page-hero__bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
}

.nh-page-hero .nh-container {
    position: relative;
    z-index: 2;
}

.nh-page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--gray-900);
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.nh-page-hero p {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════
   VPS CARDS
   ═══════════════════════════════════════════════════════════════════ */
.nh-vps__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.nh-vps-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    position: relative;
    transition: all 0.35s var(--ease);
}

.nh-vps-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.nh-vps-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 8px 30px rgba(103, 61, 230, 0.12);
}

.nh-vps-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 24px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-primary);
    white-space: nowrap;
}

.nh-vps-card__header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.nh-vps-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}

.nh-vps-card__amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1;
    letter-spacing: -0.03em;
}

.nh-vps-card__period {
    font-size: 0.9rem;
    color: var(--gray-400);
}

/* VPS Specs Grid */
.nh-vps-card__specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.nh-vps-spec {
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    padding: 14px;
    text-align: center;
}

.nh-vps-spec__value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gray-900);
    display: block;
}

.nh-vps-spec__label {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.nh-vps-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.nh-vps-card__features li {
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nh-vps-card__features li i {
    color: var(--success);
    font-size: 0.7rem;
}

.nh-vps-card__btn {
    display: block;
    padding: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius);
    text-align: center;
    text-decoration: none;
    border: 2px solid var(--border);
    color: var(--gray-700);
    background: var(--white);
    transition: all 0.3s var(--ease);
    cursor: pointer;
}

.nh-vps-card__btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-ghost);
}

.nh-vps-card.featured .nh-vps-card__btn {
    border: none;
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-primary);
}

.nh-vps-card.featured .nh-vps-card__btn:hover {
    box-shadow: 0 8px 25px rgba(103, 61, 230, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════
   DOMAIN PAGE
   ═══════════════════════════════════════════════════════════════════ */
.nh-domain-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--white);
}

.nh-domain-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.nh-domain-table thead th {
    padding: 16px 20px;
    background: var(--gray-50);
    font-weight: 700;
    color: var(--gray-700);
    text-align: left;
    border-bottom: 2px solid var(--border);
}

.nh-domain-table tbody td {
    padding: 14px 20px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--border-light);
}

.nh-domain-table tbody tr:hover {
    background: var(--gray-25);
}

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

.nh-domain-table .nh-domain-ext {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 0.95rem;
}

.nh-domain-table .nh-domain-price {
    font-weight: 700;
    color: var(--primary);
}

.nh-domain-table .nh-btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    background: var(--gradient-primary);
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s var(--ease);
}

.nh-domain-table .nh-btn-sm:hover {
    box-shadow: var(--shadow-primary);
    transform: translateY(-1px);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════════════════ */
.nh-contact {
    padding: 80px 0;
}

.nh-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.nh-contact__info h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.nh-contact__info p {
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.7;
}

.nh-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.nh-contact__item-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--primary-ghost);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.nh-contact__item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.nh-contact__item p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
}

.nh-contact__form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.nh-form-group {
    margin-bottom: 20px;
}

.nh-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.nh-form-control {
    width: 100%;
    padding: 12px 16px;
    background: var(--gray-50);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    color: var(--gray-900);
    transition: all 0.2s var(--ease);
    outline: none;
}

.nh-form-control:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

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

.nh-btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-primary);
}

.nh-btn-submit:hover {
    box-shadow: 0 8px 25px rgba(103, 61, 230, 0.4);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════════════════════════════════ */
.nh-404 {
    padding: 160px 0 100px;
    text-align: center;
}

.nh-404 h1 {
    font-size: 8rem;
    font-weight: 900;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.05em;
}

.nh-404 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.nh-404 p {
    color: var(--gray-500);
    margin-bottom: 32px;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER — Premium Corporate Design
   ═══════════════════════════════════════════════════════════════════ */

/* ── Newsletter CTA ── */
.nh-footer-cta {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
    padding: 56px 24px;
    position: relative;
    overflow: hidden;
}

.nh-footer-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
    border-radius: 50%;
}

.nh-footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.nh-footer-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #a5b4fc;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nh-footer-cta__title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.nh-footer-cta__title span {
    background: linear-gradient(135deg, #a78bfa, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nh-footer-cta__desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
}

.nh-footer-cta__form {
    flex-shrink: 0;
    min-width: 380px;
}

.nh-footer-cta__input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s;
    position: relative;
}

.nh-footer-cta__input-group:focus-within {
    border-color: rgba(167, 139, 250, 0.5);
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.1);
}

.nh-footer-cta__input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    pointer-events: none;
}

.nh-footer-cta__input-group input {
    background: none;
    border: none;
    padding: 14px 16px 14px 42px;
    color: #fff;
    font-size: 0.9rem;
    font-family: inherit;
    flex: 1;
    min-width: 0;
    outline: none;
}

.nh-footer-cta__input-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.nh-footer-cta__input-group button {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    border: none;
    color: #fff;
    padding: 14px 24px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: inherit;
    white-space: nowrap;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nh-footer-cta__input-group button:hover {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
}

.nh-footer-cta__privacy {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nh-footer-cta__privacy i {
    font-size: 0.6rem;
    color: #10b981;
}

/* ── Trust Bar ── */
.nh-trust-bar {
    background: #0c0e1a;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nh-trust-bar__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nh-trust-bar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.nh-trust-bar__item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.nh-trust-bar__icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a78bfa;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.nh-trust-bar__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nh-trust-bar__text strong {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
}

.nh-trust-bar__text span {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
}

/* ── Mega Footer ── */
.nh-footer {
    background: linear-gradient(180deg, #111327 0%, #0c0e1a 100%);
    color: rgba(255, 255, 255, 0.5);
    padding: 64px 0 0;
}

.nh-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(5, 1fr);
    gap: 36px;
    padding-bottom: 48px;
}

.nh-footer__logo {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.nh-footer__logo-img {
    height: 32px;
    width: auto;
}

.nh-footer__tagline {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.nh-footer__phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 12px;
}

.nh-footer__phone-btn:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.35);
    transform: translateY(-1px);
}

.nh-footer__phone-btn i {
    color: #10b981;
    font-size: 0.95rem;
}

.nh-footer__phone-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nh-footer__phone-number {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
}

.nh-footer__email-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
    margin-bottom: 20px;
}

.nh-footer__email-btn:hover {
    color: #a78bfa;
}

.nh-footer__email-btn i {
    font-size: 0.75rem;
}

.nh-footer__social {
    display: flex;
    gap: 8px;
}

.nh-footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.25s;
    text-decoration: none;
}

.nh-footer__social a:hover {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

/* Footer columns */
.nh-footer__col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.nh-footer__col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #a78bfa);
    border-radius: 2px;
}

.nh-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nh-footer__col ul li {
    margin-bottom: 8px;
}

.nh-footer__col ul li a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    line-height: 1.5;
}

.nh-footer__col ul li a:hover {
    color: #fff;
    transform: translateX(3px);
}

/* Bottom bar */
.nh-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.nh-footer__bottom-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.nh-footer__copyright {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.nh-footer__legal-links {
    display: flex;
    gap: 16px;
}

.nh-footer__legal-links a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.2s;
}

.nh-footer__legal-links a:hover {
    color: #a78bfa;
}

.nh-footer__bottom-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nh-footer__payment {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nh-footer__payment i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.2s;
}

.nh-footer__payment i:hover {
    color: rgba(255, 255, 255, 0.5);
}

.nh-footer__secure {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 6px;
}

.nh-footer__secure i {
    color: #10b981;
    font-size: 0.65rem;
}

/* ── Footer Responsive ── */
@media (max-width: 1024px) {
    .nh-footer__grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
    }

    .nh-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nh-footer-cta__inner {
        flex-direction: column;
        text-align: center;
    }

    .nh-footer-cta__form {
        min-width: 0;
        width: 100%;
    }

    .nh-footer-cta__privacy {
        justify-content: center;
    }

    .nh-trust-bar__grid {
        gap: 6px;
    }

    .nh-trust-bar__item {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .nh-trust-bar__icon {
        width: 26px;
        height: 26px;
        font-size: 0.65rem;
    }

    .nh-trust-bar__text strong {
        font-size: 0.7rem;
    }

    .nh-trust-bar__text span {
        font-size: 0.58rem;
    }

    .nh-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .nh-footer__brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .nh-footer__logo {
        justify-content: center;
    }

    .nh-footer__phone-btn,
    .nh-footer__email-btn {
        display: flex;
        justify-content: center;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .nh-footer__social {
        justify-content: center;
    }

    .nh-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .nh-footer__bottom-left {
        flex-direction: column;
        align-items: center;
    }

    .nh-footer__bottom-right {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .nh-footer__grid {
        grid-template-columns: 1fr;
    }

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

    .nh-footer__col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .nh-footer-cta__input-group {
        flex-direction: column;
        border-radius: 12px;
    }

    .nh-footer-cta__input-icon {
        top: 24px;
    }

    .nh-footer-cta__input-group button {
        justify-content: center;
        border-radius: 0 0 11px 11px;
    }
}


/* ═══════════════════════════════════════════════════════════════════
   PRICING GRID
   ═══════════════════════════════════════════════════════════════════ */
.nh-price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 900px) {
    .nh-price-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .nh-price-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE TAB BAR & MENU
   ═══════════════════════════════════════════════════════════════════ */
.nh-mobile-tabbar {
    display: none;
}

.nh-mobile-menu {
    display: none;
}

@media (max-width: 768px) {

    /* --- Always-visible Bottom Tab Bar --- */
    .nh-mobile-tabbar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        padding: 6px 0;
        padding-bottom: max(6px, env(safe-area-inset-bottom));
        z-index: 10000;
        justify-content: space-around;
        align-items: flex-end;
        box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.06);
    }

    .nh-mobile-tabbar__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        text-decoration: none;
        color: var(--gray-500);
        font-size: 10px;
        font-weight: 500;
        padding: 4px 12px;
        border-radius: 8px;
        transition: color 0.2s;
        background: none;
        border: none;
        cursor: pointer;
        font-family: inherit;
        -webkit-tap-highlight-color: transparent;
    }

    .nh-mobile-tabbar__item:active,
    .nh-mobile-tabbar__item.active {
        color: var(--primary);
    }

    .nh-mobile-tabbar__item i {
        font-size: 18px;
    }

    /* Centered FAB (Hosting) */
    .nh-mobile-tabbar__item--center {
        margin-top: -22px;
    }

    .nh-mobile-tabbar__fab {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--gradient-primary);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        box-shadow: 0 4px 15px rgba(103, 61, 230, 0.35);
    }

    .nh-mobile-tabbar__item--center span {
        color: var(--primary);
        font-weight: 600;
    }

    /* Body padding for tabbar */
    body.nh-theme {
        padding-bottom: 70px;
    }

    /* --- Fullscreen Premium Menu --- */
    .nh-mobile-menu {
        display: block;
        position: fixed;
        inset: 0;
        background: #fff;
        z-index: 10001;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nh-mobile-menu.open {
        transform: translateY(0);
    }

    .nh-mobile-menu__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        border-bottom: 1px solid var(--gray-100);
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 2;
    }

    .nh-mobile-menu__header h3 {
        font-size: 18px;
        font-weight: 700;
        color: var(--gray-900);
    }

    .nh-mobile-menu__logo img {
        height: 26px;
        width: auto;
        max-height: 26px;
    }

    .nh-mobile-menu__close {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--gray-100);
        border: none;
        color: var(--gray-600);
        font-size: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
    }

    .nh-mobile-menu__close:active {
        background: var(--gray-200);
    }

    .nh-mobile-menu__content {
        padding: 8px 20px 100px;
    }

    .nh-mobile-menu__section {
        margin-bottom: 8px;
    }

    .nh-mobile-menu__section-title {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        color: var(--gray-400);
        padding: 16px 0 8px;
    }

    .nh-mobile-menu__link {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 4px;
        text-decoration: none;
        color: var(--gray-800);
        font-size: 15px;
        font-weight: 500;
        border-bottom: 1px solid var(--gray-100);
        transition: background 0.15s;
        -webkit-tap-highlight-color: transparent;
    }

    .nh-mobile-menu__link:active {
        background: var(--gray-50);
    }

    .nh-mobile-menu__link i:first-child {
        width: 20px;
        text-align: center;
        color: var(--primary);
        font-size: 16px;
    }

    .nh-mobile-menu__arrow {
        margin-left: auto;
        font-size: 11px;
        color: var(--gray-300);
    }

    .nh-mobile-menu__badge {
        margin-left: auto;
        background: #ef4444;
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        min-width: 20px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        border-radius: 10px;
        padding: 0 6px;
    }

    .nh-mobile-menu__cta {
        padding: 20px 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .nh-mobile-menu__cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s;
        background: var(--primary);
        color: #fff;
    }

    .nh-mobile-menu__cta-btn:active {
        transform: scale(0.98);
    }

    .nh-mobile-menu__cta-btn--outline {
        background: transparent;
        color: var(--primary);
        border: 1.5px solid var(--primary);
    }

    /* --- Accordion Submenus --- */
    .nh-mobile-accordion {
        border-bottom: 1px solid var(--gray-100);
    }

    .nh-mobile-accordion__trigger {
        width: 100%;
        background: none;
        border: none;
        border-bottom: none !important;
        cursor: pointer;
        font-family: inherit;
        -webkit-tap-highlight-color: transparent;
    }

    .nh-mobile-accordion__icon {
        margin-left: auto;
        font-size: 11px;
        color: var(--gray-400);
        transition: transform 0.3s ease;
    }

    .nh-mobile-accordion.open .nh-mobile-accordion__icon {
        transform: rotate(180deg);
    }

    .nh-mobile-accordion__panel {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        background: var(--gray-50);
        border-radius: 8px;
        margin-bottom: 4px;
    }

    .nh-mobile-accordion.open .nh-mobile-accordion__panel {
        max-height: 400px;
    }

    .nh-mobile-accordion__item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px 12px 40px;
        text-decoration: none;
        color: var(--gray-700);
        font-size: 14px;
        font-weight: 400;
        border-left: 3px solid var(--primary);
        margin-left: 8px;
        transition: background 0.15s;
        -webkit-tap-highlight-color: transparent;
    }

    .nh-mobile-accordion__item:active {
        background: rgba(103, 61, 230, 0.05);
    }

    .nh-mobile-accordion__item i {
        width: 18px;
        text-align: center;
        color: var(--primary);
        font-size: 13px;
        opacity: 0.7;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   ALERTS
   ═══════════════════════════════════════════════════════════════════ */
.nh-alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.nh-alert--success {
    background: var(--success-bg);
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.nh-alert--error {
    background: var(--error-bg);
    color: #991b1b;
    border: 1px solid #fecaca;
}

.nh-alert--warning {
    background: var(--warning-bg);
    color: #92400e;
    border: 1px solid #fde68a;
}

.nh-alert--info {
    background: var(--info-bg);
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* ═══════════════════════════════════════════════════════════════════
   PAGE CONTENT
   ═══════════════════════════════════════════════════════════════════ */
.nh-page-content {
    padding: 60px 0 80px;
}

.nh-page-content h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--gray-900);
}

.nh-page-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 32px 0 16px;
    color: var(--gray-900);
}

.nh-page-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 24px 0 12px;
    color: var(--gray-900);
}

.nh-page-content p {
    margin-bottom: 16px;
    color: var(--gray-600);
    line-height: 1.7;
}

.nh-page-content ul,
.nh-page-content ol {
    margin-bottom: 16px;
    padding-left: 20px;
    color: var(--gray-600);
}

.nh-page-content li {
    margin-bottom: 8px;
}

/* ═══════════════════════════════════════════════════════════════════
   DOMAIN PAGE — Dark Hero + Search
   ═══════════════════════════════════════════════════════════════════ */
.nh-domain-hero {
    position: relative;
    padding: 80px 0 64px;
    background: linear-gradient(135deg, #0f0b1e 0%, #1a1145 40%, #0f172a 100%);
    overflow: hidden;
    text-align: center;
}

.nh-domain-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.nh-domain-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.nh-domain-hero__orb--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #8b5cf6, transparent);
    top: -100px;
    left: -100px;
    animation: domainOrbFloat 8s ease-in-out infinite;
}

.nh-domain-hero__orb--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #3b82f6, transparent);
    bottom: -80px;
    right: -60px;
    animation: domainOrbFloat 6s ease-in-out infinite reverse;
}

.nh-domain-hero__orb--3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #ec4899, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: domainOrbFloat 10s ease-in-out infinite;
}

@keyframes domainOrbFloat {

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

    50% {
        transform: translateY(-20px) scale(1.08);
    }
}

.nh-domain-hero__content {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.nh-domain-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 50px;
    color: #a78bfa;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.nh-domain-hero__content h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.nh-domain-hero__content h1 span {
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nh-domain-hero__content p {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Search Form */
.nh-domain-hero__search {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto 32px;
}

.nh-domain-hero__form {
    display: flex;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 6px;
    backdrop-filter: blur(12px);
    transition: border-color 0.3s;
}

.nh-domain-hero__form:focus-within {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.nh-domain-hero__input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
}

.nh-domain-hero__input-wrap i {
    color: #64748b;
    font-size: 1rem;
}

.nh-domain-hero__input-wrap input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    padding: 14px 0;
}

.nh-domain-hero__input-wrap input::placeholder {
    color: #64748b;
}

.nh-domain-hero__submit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.nh-domain-hero__submit:hover {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}

.nh-domain-hero__submit.nh-loading .nh-domain-hero__submit-text::after {
    content: '...';
    animation: loadDots 1.2s steps(4) infinite;
}

.nh-domain-hero__submit.nh-loading .nh-domain-hero__submit-icon {
    animation: spin 1s linear infinite;
}

@keyframes loadDots {
    0% {
        content: '';
    }

    25% {
        content: '.';
    }

    50% {
        content: '..';
    }

    75% {
        content: '...';
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* TLD Pills */
.nh-domain-hero__tlds {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nh-tld-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.85rem;
}

.nh-tld-pill:hover {
    background: color-mix(in srgb, var(--pill-color, #8b5cf6), transparent 85%);
    border-color: color-mix(in srgb, var(--pill-color, #8b5cf6), transparent 50%);
    transform: translateY(-2px);
}

.nh-tld-pill__ext {
    font-weight: 800;
    color: var(--pill-color, #a78bfa);
}

.nh-tld-pill__price {
    font-weight: 600;
    color: #64748b;
    font-size: 0.78rem;
}

/* ═══════════════════════════════════════════════════════════════════
   DOMAIN PAGE — Search Results
   ═══════════════════════════════════════════════════════════════════ */
.nh-domain-results {
    padding: 32px 0 48px;
    background: #f8fafc;
}

.nh-domain-results__loading {
    text-align: center;
    padding: 48px 20px;
}

.nh-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e2e8f0;
    border-top-color: #8b5cf6;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

.nh-domain-results__loading p {
    color: #64748b;
    font-size: 0.95rem;
}

.nh-domain-results__empty {
    text-align: center;
    padding: 48px 20px;
}

.nh-domain-results__empty i {
    font-size: 2.5rem;
    color: #cbd5e1;
    margin-bottom: 16px;
    display: block;
}

.nh-domain-results__empty p {
    color: #64748b;
}

.nh-domain-results__error i {
    color: #ef4444;
}

.nh-domain-results__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nh-domain-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: #fff;
    border-radius: 14px;
    border: 2px solid #e8ecf3;
    transition: all 0.25s ease;
}

.nh-domain-result--available {
    border-color: rgba(16, 185, 129, 0.25);
}

.nh-domain-result--available:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.08);
}

.nh-domain-result--taken {
    opacity: 0.65;
}

.nh-domain-result__info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nh-domain-result__status i {
    font-size: 1.3rem;
}

.nh-domain-result--available .nh-domain-result__status i {
    color: #10b981;
}

.nh-domain-result--taken .nh-domain-result__status i {
    color: #ef4444;
}

.nh-domain-result__name {
    display: block;
    font-weight: 700;
    font-size: 1.05rem;
    color: #0f172a;
}

.nh-domain-result__label {
    font-size: 0.78rem;
    font-weight: 500;
}

.nh-domain-result--available .nh-domain-result__label {
    color: #10b981;
}

.nh-domain-result--taken .nh-domain-result__label {
    color: #64748b;
}

.nh-domain-result__action {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nh-domain-result__price {
    font-weight: 800;
    font-size: 1.15rem;
    color: #0f172a;
}

.nh-domain-result__price small {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.nh-domain-result__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.nh-domain-result__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

.nh-domain-result__btn--added {
    background: #10b981 !important;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════
   DOMAIN PAGE — Features Grid
   ═══════════════════════════════════════════════════════════════════ */
.nh-domain-features {
    padding: 80px 0;
    background: #fff;
}

.nh-domain-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nh-df-card {
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e8ecf3;
    background: #fff;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nh-df-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border-color: color-mix(in srgb, var(--df-color, #8b5cf6), transparent 70%);
}

.nh-df-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    background: color-mix(in srgb, var(--df-color, #8b5cf6), transparent 88%);
    color: var(--df-color, #8b5cf6);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.nh-df-card:hover .nh-df-card__icon {
    background: var(--df-color, #8b5cf6);
    color: #fff;
    transform: scale(1.06);
}

.nh-df-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.nh-df-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   DOMAIN PAGE — Transfer CTA Banner
   ═══════════════════════════════════════════════════════════════════ */
.nh-domain-transfer {
    padding: 0 0 80px;
    background: #fff;
}

.nh-domain-transfer__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px 40px;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.nh-domain-transfer__box::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent);
    border-radius: 50%;
}

.nh-domain-transfer__content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.nh-domain-transfer__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    background: rgba(139, 92, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #a78bfa;
}

.nh-domain-transfer__content h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.nh-domain-transfer__content p {
    font-size: 0.88rem;
    color: #a5b4fc;
    margin: 0;
    line-height: 1.5;
}

.nh-domain-transfer__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #fff;
    color: #1e1b4b;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.nh-domain-transfer__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ═══════════════════════════════════════════════════════════════════
   DOMAIN PAGE — TLD Filter Bar
   ═══════════════════════════════════════════════════════════════════ */
.nh-domain-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.nh-domain-filter__tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.nh-domain-filter__tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #f1f5f9;
    border: 1px solid transparent;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.nh-domain-filter__tab:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.nh-domain-filter__tab--active {
    background: #8b5cf6;
    color: #fff;
    border-color: #8b5cf6;
}

.nh-domain-filter__tab--active:hover {
    background: #7c3aed;
    color: #fff;
}

.nh-domain-filter__tab span {
    font-size: 0.72rem;
    opacity: 0.7;
}

.nh-domain-filter__search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: #f8fafc;
    border: 1px solid #e8ecf3;
    border-radius: 12px;
    min-width: 220px;
    transition: border-color 0.2s;
}

.nh-domain-filter__search:focus-within {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.08);
}

.nh-domain-filter__search i {
    color: #64748b;
    font-size: 0.85rem;
}

.nh-domain-filter__search input {
    border: none;
    background: none;
    outline: none;
    font-size: 0.88rem;
    color: #0f172a;
    font-family: inherit;
    width: 100%;
}

.nh-domain-filter__search input::placeholder {
    color: #64748b;
}

/* Show More Button */
.nh-domain-showmore {
    text-align: center;
    padding: 32px 0 0;
}

.nh-domain-showmore__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: #f8fafc;
    border: 1px solid #e8ecf3;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.nh-domain-showmore__btn:hover {
    background: #8b5cf6;
    color: #fff;
    border-color: #8b5cf6;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
}

.nh-domain-showmore__btn i {
    font-size: 0.75rem;
}

.nh-domain-showmore__count {
    font-size: 0.78rem;
    opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════════════
   DOMAIN PAGE — TLD Pricing Table
   ═══════════════════════════════════════════════════════════════════ */
.nh-domain-pricing {
    padding: 80px 0;
    background: #f8fafc;
}

.nh-domain-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid #e8ecf3;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

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

.nh-domain-table thead th {
    padding: 16px 24px;
    text-align: left;
    font-size: 0.78rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #f1f5f9;
    background: #fafbfc;
}

.nh-domain-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.nh-domain-table tbody tr:hover {
    background: #faf8ff;
}

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

.nh-domain-table td {
    padding: 16px 24px;
    font-size: 0.9rem;
    color: #334155;
    vertical-align: middle;
}

.nh-domain-table__ext {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nh-domain-table__tld {
    font-weight: 800;
    font-size: 1rem;
    color: #0f172a;
}

.nh-domain-table__badge {
    padding: 3px 10px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.nh-domain-table__price {
    font-weight: 700;
    color: #0f172a;
    font-size: 1rem;
}

.nh-domain-table__price--dim {
    color: #64748b;
    font-weight: 600;
}

.nh-domain-table td small {
    color: #64748b;
    font-size: 0.78rem;
}

.nh-domain-table__featured {
    background: #faf8ff;
}

.nh-domain-table__featured:hover {
    background: #f5f0ff !important;
}

.nh-domain-table__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: #f1f5f9;
    color: #475569;
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.nh-domain-table__btn:hover {
    background: #8b5cf6;
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════
   DOMAIN PAGE — FAQ Accordion
   ═══════════════════════════════════════════════════════════════════ */
.nh-domain-faq {
    padding: 80px 0;
    background: #fff;
}

.nh-faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nh-faq-item {
    border: 1px solid #e8ecf3;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nh-faq-item:hover {
    border-color: #d4d8e3;
}

.nh-faq-item--open {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.06);
}

.nh-faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    gap: 16px;
    transition: color 0.2s;
}

.nh-faq-item__q:hover {
    color: #7c3aed;
}

.nh-faq-item__q i {
    font-size: 0.75rem;
    color: #64748b;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nh-faq-item--open .nh-faq-item__q i {
    transform: rotate(180deg);
    color: #8b5cf6;
}

.nh-faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.nh-faq-item--open .nh-faq-item__a {
    max-height: 300px;
    padding: 0 24px 20px;
}

.nh-faq-item__a p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   HOSTING PAGE — Hero + Pricing Cards
   ═══════════════════════════════════════════════════════════════════ */
.nh-hosting-hero {
    position: relative;
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #f0f7ff 0%, #f5f3ff 50%, #fdf2f8 100%);
    overflow: hidden;
}

.nh-hosting-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.nh-hosting-hero__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}

.nh-hosting-hero__shape--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #8b5cf6, transparent);
    top: -150px;
    right: -100px;
}

.nh-hosting-hero__shape--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #3b82f6, transparent);
    bottom: -100px;
    left: -80px;
}

.nh-hosting-hero__content {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.nh-hosting-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.18);
    border-radius: 50px;
    color: #7c3aed;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.nh-hosting-hero__content h1 {
    font-size: 2.6rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.nh-hosting-hero__content h1 span {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nh-hosting-hero__content p {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing Cards Grid */
.nh-hosting-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.nh-hplan {
    background: #fff;
    border-radius: 18px;
    padding: 0 0 28px;
    border: 1px solid #e8ecf3;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.nh-hplan:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.nh-hplan--featured {
    border-color: var(--plan-color, #8b5cf6);
    box-shadow: 0 8px 32px color-mix(in srgb, var(--plan-color, #8b5cf6), transparent 80%);
}

.nh-hplan--featured:hover {
    box-shadow: 0 20px 50px color-mix(in srgb, var(--plan-color, #8b5cf6), transparent 65%);
}

.nh-hplan__ribbon {
    position: absolute;
    top: 16px;
    right: -32px;
    padding: 4px 40px;
    background: var(--plan-color, #8b5cf6);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transform: rotate(45deg);
    z-index: 2;
}

.nh-hplan__head {
    padding: 28px 28px 24px;
    text-align: center;
    position: relative;
}

.nh-hplan__accent {
    height: 4px;
    background: var(--plan-color, #e2e8f0);
    border-radius: 0 0 4px 4px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.nh-hplan--featured .nh-hplan__accent {
    height: 4px;
    background: linear-gradient(90deg, var(--plan-color, #8b5cf6), color-mix(in srgb, var(--plan-color, #8b5cf6), #fff 30%));
}

.nh-hplan__head h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.nh-hplan__price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}

.nh-hplan__amount {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--plan-color, #0f172a);
    line-height: 1;
}

.nh-hplan__period {
    display: flex;
    flex-direction: column;
    padding-top: 6px;
}

.nh-hplan__period span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--plan-color, #64748b);
}

.nh-hplan__period small {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 500;
}

.nh-hplan__features {
    list-style: none;
    padding: 0 28px;
    margin: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 24px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.nh-hplan__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #475569;
}

.nh-hplan__features li i {
    color: var(--plan-color, #10b981);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.nh-hplan__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 28px;
    padding: 13px 24px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nh-hplan__btn:hover {
    background: var(--plan-color, #8b5cf6);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--plan-color, #8b5cf6), transparent 60%);
}

.nh-hplan--featured .nh-hplan__btn {
    background: var(--plan-color, #8b5cf6);
    color: #fff;
}

.nh-hplan--featured .nh-hplan__btn:hover {
    filter: brightness(1.1);
}

/* ═══════════════════════════════════════════════════════════════════
   HOSTING PAGE — Tech Logos Strip
   ═══════════════════════════════════════════════════════════════════ */
.nh-hosting-tech {
    padding: 32px 0;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
}

.nh-hosting-tech__label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.nh-hosting-tech__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.nh-hosting-tech__item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.2s;
}

.nh-hosting-tech__item:hover {
    color: #475569;
}

.nh-hosting-tech__item i {
    font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════════════════════
   HOSTING PAGE — "Neden NetHub?" Feature Grid
   ═══════════════════════════════════════════════════════════════════ */
.nh-hosting-why {
    padding: 80px 0;
    background: #f8fafc;
}

.nh-hosting-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nh-hw-card {
    padding: 32px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8ecf3;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nh-hw-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border-color: color-mix(in srgb, var(--hw-color, #8b5cf6), transparent 65%);
}

.nh-hw-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    background: color-mix(in srgb, var(--hw-color, #8b5cf6), transparent 88%);
    color: var(--hw-color, #8b5cf6);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.nh-hw-card:hover .nh-hw-card__icon {
    background: var(--hw-color, #8b5cf6);
    color: #fff;
    transform: scale(1.06);
}

.nh-hw-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.nh-hw-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   HOSTING PAGE — Dark Mid-CTA Banner
   ═══════════════════════════════════════════════════════════════════ */
.nh-hosting-cta-mid {
    padding: 0;
    background: #fff;
}

.nh-hosting-cta-mid__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 36px 44px;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.nh-hosting-cta-mid__glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent);
    border-radius: 50%;
    right: -80px;
    top: -80px;
    pointer-events: none;
}

.nh-hosting-cta-mid__content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.nh-hosting-cta-mid__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    background: rgba(16, 185, 129, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #34d399;
}

.nh-hosting-cta-mid__content h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.nh-hosting-cta-mid__content p {
    font-size: 0.88rem;
    color: #a5b4fc;
    margin: 0;
}

.nh-hosting-cta-mid__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.nh-hosting-cta-mid__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

/* ═══════════════════════════════════════════════════════════════════
   HOSTING PAGE — Zigzag Showcase
   ═══════════════════════════════════════════════════════════════════ */
.nh-hosting-showcase {
    padding: 80px 0;
    background: #fff;
}

.nh-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.nh-showcase:last-child {
    margin-bottom: 0;
}

.nh-showcase__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nh-showcase__img-wrap {
    width: 280px;
    height: 280px;
    border-radius: 32px;
    background: color-mix(in srgb, var(--sc-color, #8b5cf6), transparent 92%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.nh-showcase__img-wrap::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 36px;
    border: 2px dashed color-mix(in srgb, var(--sc-color, #8b5cf6), transparent 80%);
    animation: showcaseRotate 20s linear infinite;
}

@keyframes showcaseRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.nh-showcase__img-wrap i {
    font-size: 5rem;
    color: var(--sc-color, #8b5cf6);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.nh-showcase:hover .nh-showcase__img-wrap i {
    opacity: 1;
    transform: scale(1.1);
}

.nh-showcase__badge {
    display: inline-flex;
    padding: 6px 16px;
    background: color-mix(in srgb, var(--sc-color, #8b5cf6), transparent 90%);
    color: var(--sc-color, #8b5cf6);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.nh-showcase__text h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 14px;
    line-height: 1.3;
}

.nh-showcase__text h3 span {
    color: var(--sc-color, #8b5cf6);
}

.nh-showcase__text p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.nh-showcase__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nh-showcase__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
}

.nh-showcase__list li i {
    color: var(--sc-color, #10b981);
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════════════════════════
   HOSTING PAGE — Comparison Table
   ═══════════════════════════════════════════════════════════════════ */
.nh-hosting-compare {
    padding: 80px 0;
    background: #f8fafc;
}

.nh-hosting-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid #e8ecf3;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

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

.nh-hosting-table thead th {
    padding: 18px 20px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    border-bottom: 2px solid #f1f5f9;
    background: #fafbfc;
}

.nh-hosting-table thead th:first-child {
    text-align: left;
    padding-left: 28px;
}

.nh-hosting-table thead th.nh-hosting-table__featured {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: #fff;
}

.nh-hosting-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
}

.nh-hosting-table tbody tr:hover {
    background: #faf8ff;
}

.nh-hosting-table td {
    padding: 14px 20px;
    text-align: center;
    font-size: 0.88rem;
    color: #475569;
    vertical-align: middle;
}

.nh-hosting-table td:first-child {
    text-align: left;
    padding-left: 28px;
    color: #0f172a;
}

.nh-hosting-table td.nh-hosting-table__featured {
    background: rgba(139, 92, 246, 0.03);
}

.nh-check {
    color: #10b981;
}

.nh-times {
    color: #e2e8f0;
}

.nh-hosting-table__price-row td {
    padding-top: 20px;
    border-top: 2px solid #f1f5f9;
}

.nh-hosting-table__price {
    font-size: 1.3rem;
    font-weight: 900;
    color: #0f172a;
}

.nh-hosting-table__cta-row td {
    padding-bottom: 20px;
}

.nh-hosting-table__btn {
    display: inline-flex;
    padding: 10px 24px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nh-hosting-table__btn:hover {
    background: #8b5cf6;
    color: #fff;
}

.nh-hosting-table__btn--primary {
    background: #8b5cf6;
    color: #fff;
}

.nh-hosting-table__btn--primary:hover {
    background: #7c3aed;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════
   HOSTING PAGE — FAQ (reuses domain FAQ classes)
   ═══════════════════════════════════════════════════════════════════ */
.nh-hosting-faq {
    padding: 80px 0;
    background: #fff;
}

/* ═══════════════════════════════════════════════════════════════════
   HOSTING PAGE — Bottom CTA
   ═══════════════════════════════════════════════════════════════════ */
.nh-hosting-bottom-cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    overflow: hidden;
    text-align: center;
}

.nh-hosting-bottom-cta .nh-cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
}

.nh-hosting-bottom-cta .nh-cta-shape--1 {
    width: 400px;
    height: 400px;
    background: #8b5cf6;
    top: -100px;
    left: -100px;
    animation: domainOrbFloat 8s ease-in-out infinite;
}

.nh-hosting-bottom-cta .nh-cta-shape--2 {
    width: 300px;
    height: 300px;
    background: #3b82f6;
    bottom: -80px;
    right: -60px;
    animation: domainOrbFloat 6s ease-in-out infinite reverse;
}

.nh-hosting-bottom-cta .nh-cta-shape--3 {
    width: 150px;
    height: 150px;
    background: #ec4899;
    top: 40%;
    left: 60%;
    animation: domainOrbFloat 10s ease-in-out infinite;
}

.nh-hosting-bottom-cta__inner {
    position: relative;
    z-index: 1;
}

.nh-hosting-bottom-cta__inner h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.nh-hosting-bottom-cta__inner h2 span {
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nh-hosting-bottom-cta__inner p {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.nh-hosting-bottom-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.nh-btn-hero--glass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
    border-radius: 14px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.nh-btn-hero--glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════
   VDS PAGE — Dark Hero
   ═══════════════════════════════════════════════════════════════════ */
.nh-vds-hero {
    position: relative;
    padding: 80px 0 90px;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    overflow: hidden;
    text-align: center;
}

.nh-vds-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.nh-vds-hero__orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.nh-vds-hero__orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #10b981, transparent);
    top: -200px;
    right: -100px;
    animation: vdsOrbFloat 8s ease-in-out infinite;
}

.nh-vds-hero__orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #3b82f6, transparent);
    bottom: -150px;
    left: -100px;
    animation: vdsOrbFloat 6s ease-in-out infinite reverse;
}

.nh-vds-hero__orb--3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #8b5cf6, transparent);
    top: 30%;
    left: 50%;
    animation: vdsOrbFloat 10s ease-in-out infinite;
}

@keyframes vdsOrbFloat {

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

    50% {
        transform: translate(20px, -20px) scale(1.05);
    }
}

.nh-vds-hero__inner {
    position: relative;
    z-index: 1;
}

.nh-vds-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    color: #34d399;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.nh-vds-hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.nh-vds-hero p {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.nh-vds-hero__price-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 14px;
    margin-bottom: 32px;
}

.nh-vds-hero__from {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.nh-vds-hero__amount {
    font-size: 2rem;
    font-weight: 900;
    color: #34d399;
}

.nh-vds-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.nh-vds-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nh-vds-hero__btn--primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

.nh-vds-hero__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

.nh-vds-hero__btn--glass {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
    backdrop-filter: blur(8px);
}

.nh-vds-hero__btn--glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════
   VDS PAGE — Vertical Package Rows
   ═══════════════════════════════════════════════════════════════════ */
.nh-vds-packages {
    padding: 80px 0;
    background: #f8fafc;
}

.nh-vds-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.nh-vds-row {
    display: grid;
    grid-template-columns: 140px repeat(5, 1fr) 120px 140px;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
    position: relative;
}

.nh-vds-row:last-child {
    border-bottom: none;
}

.nh-vds-row:hover:not(.nh-vds-row--header) {
    background: #f8fafc;
}

/* Header row */
.nh-vds-row--header {
    background: #fafbfc;
    border-bottom: 2px solid #e8ecf3;
}

.nh-vds-row--header>div {
    padding: 14px 16px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Popular row highlight */
.nh-vds-row--popular {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.03), rgba(16, 185, 129, 0.06), rgba(16, 185, 129, 0.03));
    border-left: 3px solid #10b981;
}

.nh-vds-row__badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px 14px;
    background: #10b981;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    z-index: 2;
}

/* Plan name cell */
.nh-vds-row__name {
    padding: 16px 16px 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
}

.nh-vds-row__name i {
    color: #64748b;
    font-size: 0.8rem;
}

.nh-vds-row__name strong {
    color: #0f172a;
    font-weight: 800;
    font-size: 0.9rem;
}

/* Spec cells */
.nh-vds-row__spec {
    padding: 16px 12px;
    font-size: 0.84rem;
    color: #475569;
    text-align: center;
    font-weight: 500;
}

.nh-vds-row__spec-label {
    display: none;
}

/* Price cell */
.nh-vds-row__price {
    padding: 16px 12px;
    text-align: center;
}

.nh-vds-row__price-amount {
    font-size: 1.15rem;
    font-weight: 900;
    color: #0f172a;
}

.nh-vds-row--popular .nh-vds-row__price-amount {
    color: #059669;
}

.nh-vds-row__price-period {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 500;
}

/* Action cell */
.nh-vds-row__action {
    padding: 16px 16px 16px 8px;
    text-align: center;
}

.nh-vds-row__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nh-vds-row__btn:hover {
    background: #10b981;
    color: #fff;
    transform: translateY(-1px);
}

.nh-vds-row__btn--primary {
    background: #10b981;
    color: #fff;
}

.nh-vds-row__btn--primary:hover {
    background: #059669;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════
   VDS PAGE — Dark CTA Banner
   ═══════════════════════════════════════════════════════════════════ */
.nh-vds-dark-cta {
    padding: 0;
    margin-top: 0;
}

.nh-vds-dark-cta__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 36px 44px;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.nh-vds-dark-cta__glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12), transparent);
    border-radius: 50%;
    right: -80px;
    top: -80px;
    pointer-events: none;
}

.nh-vds-dark-cta__content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.nh-vds-dark-cta__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    background: rgba(16, 185, 129, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #34d399;
}

.nh-vds-dark-cta__content h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.nh-vds-dark-cta__content p {
    font-size: 0.88rem;
    color: #a5b4fc;
    margin: 0;
}

.nh-vds-dark-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.nh-vds-dark-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

/* ═══════════════════════════════════════════════════════════════════
   VDS PAGE — Features Grid
   ═══════════════════════════════════════════════════════════════════ */
.nh-vds-features {
    padding: 80px 0;
    background: #fff;
}

.nh-vds-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nh-vds-feat {
    padding: 28px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e8ecf3;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

.nh-vds-feat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    background: #fff;
    border-color: color-mix(in srgb, var(--vf-color, #10b981), transparent 65%);
}

.nh-vds-feat__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    background: color-mix(in srgb, var(--vf-color, #10b981), transparent 88%);
    color: var(--vf-color, #10b981);
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.nh-vds-feat:hover .nh-vds-feat__icon {
    background: var(--vf-color, #10b981);
    color: #fff;
    transform: scale(1.06);
}

.nh-vds-feat h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.nh-vds-feat p {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   VDS PAGE — Zigzag Showcase
   ═══════════════════════════════════════════════════════════════════ */
.nh-vds-showcases {
    padding: 80px 0 40px;
    background: #f8fafc;
}

.nh-vds-show {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 72px;
}

.nh-vds-show:last-child {
    margin-bottom: 0;
}

.nh-vds-show__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nh-vds-show__circle {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--vs-color, #10b981), transparent 92%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.nh-vds-show__circle::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px dashed color-mix(in srgb, var(--vs-color, #10b981), transparent 75%);
    animation: vdsCircleSpin 25s linear infinite;
}

@keyframes vdsCircleSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.nh-vds-show__circle i {
    font-size: 4.5rem;
    color: var(--vs-color, #10b981);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.nh-vds-show:hover .nh-vds-show__circle i {
    opacity: 1;
    transform: scale(1.08);
}

.nh-vds-show__tag {
    display: inline-flex;
    padding: 5px 14px;
    background: color-mix(in srgb, var(--vs-color, #10b981), transparent 90%);
    color: var(--vs-color, #10b981);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nh-vds-show__text h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 14px;
    line-height: 1.3;
}

.nh-vds-show__text p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 18px;
}

.nh-vds-show__text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nh-vds-show__text ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #475569;
    font-weight: 500;
}

.nh-vds-show__text ul li i {
    color: var(--vs-color, #10b981);
    font-size: 0.82rem;
}

/* ═══════════════════════════════════════════════════════════════════
   VDS PAGE — FAQ
   ═══════════════════════════════════════════════════════════════════ */
.nh-vds-faq {
    padding: 80px 0;
    background: #fff;
}

/* ═══════════════════════════════════════════════════════════════════
   VDS PAGE — Bottom CTA
   ═══════════════════════════════════════════════════════════════════ */
.nh-vds-bottom-cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    overflow: hidden;
    text-align: center;
}

.nh-vds-bottom-cta .nh-vds-cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}

.nh-vds-cta-shape--1 {
    width: 400px;
    height: 400px;
    background: #10b981;
    top: -100px;
    left: -100px;
    animation: vdsOrbFloat 8s ease-in-out infinite;
}

.nh-vds-cta-shape--2 {
    width: 300px;
    height: 300px;
    background: #3b82f6;
    bottom: -80px;
    right: -60px;
    animation: vdsOrbFloat 6s ease-in-out infinite reverse;
}

.nh-vds-cta-shape--3 {
    width: 150px;
    height: 150px;
    background: #8b5cf6;
    top: 40%;
    left: 60%;
    animation: vdsOrbFloat 10s ease-in-out infinite;
}

.nh-vds-bottom-cta__inner {
    position: relative;
    z-index: 1;
}

.nh-vds-bottom-cta__inner h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.nh-vds-bottom-cta__inner h2 span {
    background: linear-gradient(135deg, #34d399, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nh-vds-bottom-cta__inner p {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.nh-vds-bottom-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════
   VDS PAGE — Responsive
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .nh-vds-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nh-vds-show {
        gap: 40px;
    }

    .nh-vds-row {
        grid-template-columns: 120px repeat(5, 1fr) 100px 120px;
    }
}

@media (max-width: 768px) {
    .nh-vds-hero {
        padding: 48px 0 56px;
    }

    .nh-vds-hero h1 {
        font-size: 1.8rem;
    }

    .nh-vds-hero__amount {
        font-size: 1.6rem;
    }

    .nh-vds-packages {
        padding: 48px 0;
    }

    /* Switch rows to cards on mobile */
    .nh-vds-row--header {
        display: none;
    }

    .nh-vds-row {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 18px 16px;
        border-bottom: 1px solid #f1f5f9;
    }

    .nh-vds-row--popular {
        border-left: 3px solid #10b981;
    }

    .nh-vds-row__name {
        width: 100%;
        padding: 0 0 8px;
        border-bottom: 1px solid #f1f5f9;
        margin-bottom: 4px;
    }

    .nh-vds-row__spec {
        padding: 4px 0;
        text-align: left;
        flex: 1 1 40%;
        font-size: 0.82rem;
    }

    .nh-vds-row__spec-label {
        display: inline;
        color: #64748b;
        font-size: 0.68rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        margin-right: 6px;
    }

    .nh-vds-row__price {
        width: 100%;
        text-align: left;
        padding: 8px 0 4px;
        border-top: 1px solid #f1f5f9;
    }

    .nh-vds-row__action {
        width: 100%;
        padding: 4px 0 0;
        text-align: left;
    }

    .nh-vds-row__btn {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }

    .nh-vds-row__badge {
        display: none;
    }

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

    .nh-vds-dark-cta__box {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .nh-vds-dark-cta__content {
        flex-direction: column;
    }

    .nh-vds-show {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .nh-vds-show--left .nh-vds-show__visual {
        order: -1;
    }

    .nh-vds-show__circle {
        width: 180px;
        height: 180px;
    }

    .nh-vds-show__circle i {
        font-size: 3.2rem;
    }

    .nh-vds-show__text h3 {
        font-size: 1.25rem;
    }

    .nh-vds-bottom-cta__inner h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nh-vds-hero h1 {
        font-size: 1.4rem;
    }

    .nh-vds-hero__price-box {
        flex-direction: column;
        gap: 4px;
    }

    .nh-vds-row__spec {
        flex: 1 1 100%;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE — Hero
   ═══════════════════════════════════════════════════════════════════ */
.nh-contact-hero {
    position: relative;
    padding: 72px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    overflow: hidden;
    text-align: center;
}

.nh-contact-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.nh-contact-hero__orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.nh-contact-hero__orb--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #8b5cf6, transparent);
    top: -160px;
    right: -60px;
    animation: contactOrbFloat 8s ease-in-out infinite;
}

.nh-contact-hero__orb--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #3b82f6, transparent);
    bottom: -100px;
    left: -80px;
    animation: contactOrbFloat 6s ease-in-out infinite reverse;
}

@keyframes contactOrbFloat {

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

    50% {
        transform: translate(15px, -15px) scale(1.04);
    }
}

.nh-contact-hero__inner {
    position: relative;
    z-index: 1;
}

.nh-contact-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    color: #a78bfa;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.nh-contact-hero h1 {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.nh-contact-hero h1 span {
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nh-contact-hero p {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE — Quick Contact Cards
   ═══════════════════════════════════════════════════════════════════ */
.nh-contact-cards {
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.nh-contact-cards__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.nh-cc-card {
    background: #fff;
    border: 1px solid #e8ecf3;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.nh-cc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    border-color: color-mix(in srgb, var(--cc-color, #3b82f6), transparent 60%);
}

.nh-cc-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    background: color-mix(in srgb, var(--cc-color, #3b82f6), transparent 88%);
    color: var(--cc-color, #3b82f6);
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.nh-cc-card:hover .nh-cc-card__icon {
    background: var(--cc-color, #3b82f6);
    color: #fff;
    transform: scale(1.06);
}

.nh-cc-card h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.nh-cc-card p {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.nh-cc-card__link {
    font-size: 0.75rem;
    color: var(--cc-color, #3b82f6);
    font-weight: 700;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nh-cc-card__link i {
    font-size: 0.65rem;
    transition: transform 0.3s;
}

.nh-cc-card:hover .nh-cc-card__link i {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE — Form + Sidebar Split
   ═══════════════════════════════════════════════════════════════════ */
.nh-contact-main {
    padding: 60px 0 80px;
    background: #f8fafc;
}

.nh-contact-main__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 32px;
    align-items: start;
}

/* Form wrapper */
.nh-contact-form-wrap {
    background: #fff;
    border: 1px solid #e8ecf3;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.nh-contact-form-wrap__head h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.nh-contact-form-wrap__head h2 i {
    color: #8b5cf6;
    margin-right: 8px;
}

.nh-contact-form-wrap__head p {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 28px;
}

/* Alert messages */
.nh-contact-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.nh-contact-alert--success {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.nh-contact-alert--error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* Form fields */
.nh-contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.nh-contact-form__group {
    margin-bottom: 18px;
}

.nh-contact-form__group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.nh-contact-form__group label span {
    color: #ef4444;
}

.nh-contact-form__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.nh-contact-form__input-wrap i {
    position: absolute;
    left: 16px;
    color: #64748b;
    font-size: 0.82rem;
    pointer-events: none;
    z-index: 1;
}

.nh-contact-form__input-wrap input,
.nh-contact-form__input-wrap textarea {
    width: 100%;
    padding: 13px 16px 13px 42px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.88rem;
    color: #0f172a;
    background: #f8fafc;
    transition: all 0.2s ease;
    font-family: inherit;
    outline: none;
}

.nh-contact-form__input-wrap input:focus,
.nh-contact-form__input-wrap textarea:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    background: #fff;
}

.nh-contact-form__input-wrap--textarea {
    align-items: flex-start;
}

.nh-contact-form__input-wrap--textarea i {
    top: 16px;
}

.nh-contact-form__input-wrap textarea {
    resize: vertical;
    min-height: 120px;
}

.nh-contact-form__submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
    justify-content: center;
}

.nh-contact-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}

/* Sidebar */
.nh-contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nh-contact-sidebar__card {
    background: #fff;
    border: 1px solid #e8ecf3;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.nh-contact-sidebar__card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nh-contact-sidebar__card h3 i {
    color: #8b5cf6;
}

/* Working hours */
.nh-contact-hours {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nh-contact-hours__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.84rem;
}

.nh-contact-hours__row span {
    color: #64748b;
}

.nh-contact-hours__row strong {
    color: #0f172a;
    font-weight: 700;
}

.nh-contact-sidebar__note {
    margin-top: 14px;
    padding: 12px 14px;
    background: #eff6ff;
    border-radius: 10px;
    font-size: 0.78rem;
    color: #3b82f6;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Quick links */
.nh-contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nh-contact-links__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s;
    background: #f8fafc;
}

.nh-contact-links__item:hover {
    background: #eff6ff;
    color: #3b82f6;
    transform: translateX(4px);
}

.nh-contact-links__item i {
    width: 18px;
    text-align: center;
    color: #64748b;
    transition: color 0.2s;
}

.nh-contact-links__item:hover i {
    color: #3b82f6;
}

/* Dark promo card */
.nh-contact-sidebar__card--dark {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    border-color: transparent;
}

.nh-contact-sidebar__promo {
    text-align: center;
    padding: 10px 0;
}

.nh-contact-sidebar__promo i {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 12px;
}

.nh-contact-sidebar__promo h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.nh-contact-sidebar__promo p {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE — FAQ
   ═══════════════════════════════════════════════════════════════════ */
.nh-contact-faq {
    padding: 80px 0;
    background: #fff;
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE — Bottom CTA
   ═══════════════════════════════════════════════════════════════════ */
.nh-contact-bottom-cta {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    overflow: hidden;
    text-align: center;
}

.nh-contact-bottom-cta .nh-contact-cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}

.nh-contact-cta-shape--1 {
    width: 350px;
    height: 350px;
    background: #8b5cf6;
    top: -100px;
    right: -50px;
    animation: contactOrbFloat 8s ease-in-out infinite;
}

.nh-contact-cta-shape--2 {
    width: 250px;
    height: 250px;
    background: #3b82f6;
    bottom: -60px;
    left: -60px;
    animation: contactOrbFloat 6s ease-in-out infinite reverse;
}

.nh-contact-bottom-cta__inner {
    position: relative;
    z-index: 1;
}

.nh-contact-bottom-cta__inner h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
}

.nh-contact-bottom-cta__inner h2 span {
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nh-contact-bottom-cta__inner p {
    font-size: 1.02rem;
    color: #64748b;
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.nh-contact-bottom-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE — Responsive
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .nh-contact-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nh-contact-hero {
        padding: 48px 0 56px;
    }

    .nh-contact-hero h1 {
        font-size: 1.7rem;
    }

    .nh-contact-cards {
        margin-top: -28px;
    }

    .nh-contact-cards__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

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

    .nh-contact-form-wrap {
        padding: 24px;
    }

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

    .nh-contact-bottom-cta__inner h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .nh-contact-hero h1 {
        font-size: 1.3rem;
    }

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

    .nh-cc-card {
        padding: 20px 16px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG PAGE — Hero
   ═══════════════════════════════════════════════════════════════════ */
.nh-blog-hero {
    position: relative;
    padding: 72px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    overflow: hidden;
    text-align: center;
}

.nh-blog-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.nh-blog-hero__orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.nh-blog-hero__orb--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #f59e0b, transparent);
    top: -160px;
    right: -60px;
    animation: blogOrbFloat 8s ease-in-out infinite;
}

.nh-blog-hero__orb--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #3b82f6, transparent);
    bottom: -100px;
    left: -80px;
    animation: blogOrbFloat 6s ease-in-out infinite reverse;
}

@keyframes blogOrbFloat {

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

    50% {
        transform: translate(15px, -15px) scale(1.04);
    }
}

.nh-blog-hero__inner {
    position: relative;
    z-index: 1;
}

.nh-blog-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 50px;
    color: #fbbf24;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.nh-blog-hero h1 {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
}

.nh-blog-hero h1 span {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nh-blog-hero p {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 480px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG PAGE — Category Filter Bar
   ═══════════════════════════════════════════════════════════════════ */
.nh-blog-filters {
    padding: 0;
    margin-top: -24px;
    position: relative;
    z-index: 2;
}

.nh-blog-filter-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 14px 20px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8ecf3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.nh-blog-filter-tag {
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s;
    background: #f1f5f9;
}

.nh-blog-filter-tag:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.nh-blog-filter-tag--active {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
}

.nh-blog-filter-tag--active:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG PAGE — Card Grid
   ═══════════════════════════════════════════════════════════════════ */
.nh-blog-grid-section {
    padding: 48px 0 80px;
    background: #f8fafc;
}

.nh-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.nh-blog-card {
    background: #fff;
    border: 1px solid #e8ecf3;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nh-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Image */
.nh-blog-card__image-wrap {
    display: block;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.nh-blog-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nh-blog-card:hover .nh-blog-card__image-wrap img {
    transform: scale(1.06);
}

.nh-blog-card__placeholder {
    width: 100%;
    height: 100%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #cbd5e1;
}

.nh-blog-card__category {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 14px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
    z-index: 1;
}

/* Body */
.nh-blog-card__body {
    padding: 24px;
}

.nh-blog-card__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    font-size: 0.75rem;
    color: #64748b;
}

.nh-blog-card__meta i {
    margin-right: 4px;
}

.nh-blog-card__title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 10px;
}

.nh-blog-card__title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s;
}

.nh-blog-card__title a:hover {
    color: #f59e0b;
}

.nh-blog-card__excerpt {
    font-size: 0.86rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nh-blog-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #f59e0b;
    text-decoration: none;
    transition: gap 0.3s;
}

.nh-blog-card__read-more:hover {
    gap: 10px;
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG PAGE — Empty State
   ═══════════════════════════════════════════════════════════════════ */
.nh-blog-empty {
    text-align: center;
    padding: 80px 0;
}

.nh-blog-empty__icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #cbd5e1;
    margin: 0 auto 20px;
}

.nh-blog-empty h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.nh-blog-empty p {
    font-size: 0.9rem;
    color: #64748b;
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG PAGE — Pagination
   ═══════════════════════════════════════════════════════════════════ */
.nh-blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.nh-blog-pagination__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #475569;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 600;
    transition: all 0.2s;
}

.nh-blog-pagination__btn:hover {
    background: #f59e0b;
    color: #fff;
    border-color: #f59e0b;
}

.nh-blog-pagination__nums {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nh-blog-pagination__num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s;
    background: #fff;
    border: 1px solid #e2e8f0;
}

.nh-blog-pagination__num:hover {
    background: #fef3c7;
    color: #d97706;
    border-color: #fde68a;
}

.nh-blog-pagination__num--active {
    background: #f59e0b;
    color: #fff;
    border-color: #f59e0b;
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG PAGE — Newsletter CTA
   ═══════════════════════════════════════════════════════════════════ */
.nh-blog-cta {
    padding: 0 0 80px;
    background: #f8fafc;
}

.nh-blog-cta__box {
    position: relative;
    padding: 48px;
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
}

.nh-blog-cta__glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12), transparent);
    border-radius: 50%;
    right: -80px;
    top: -80px;
    pointer-events: none;
}

.nh-blog-cta__inner {
    position: relative;
    z-index: 1;
}

.nh-blog-cta__inner i {
    font-size: 2.2rem;
    color: #fbbf24;
    margin-bottom: 16px;
}

.nh-blog-cta__inner h3 {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}

.nh-blog-cta__inner p {
    font-size: 0.92rem;
    color: #64748b;
    max-width: 480px;
    margin: 0 auto 24px;
}

.nh-blog-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG DETAIL — Hero
   ═══════════════════════════════════════════════════════════════════ */
.nh-blogd-hero {
    position: relative;
    padding: 60px 0 72px;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    overflow: hidden;
    text-align: center;
}

.nh-blogd-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.nh-blogd-hero__orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.nh-blogd-hero__orb--1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #f59e0b, transparent);
    top: -140px;
    right: -40px;
}

.nh-blogd-hero__orb--2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #3b82f6, transparent);
    bottom: -80px;
    left: -60px;
}

.nh-blogd-hero__inner {
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.nh-blogd-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.78rem;
}

.nh-blogd-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.nh-blogd-breadcrumb a:hover {
    color: #fbbf24;
}

.nh-blogd-breadcrumb i {
    color: #475569;
    font-size: 0.6rem;
}

.nh-blogd-breadcrumb span {
    color: #e2e8f0;
}

.nh-blogd-hero__cat {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 50px;
    color: #fbbf24;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nh-blogd-hero h1 {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    max-width: 720px;
    margin: 0 auto 18px;
    line-height: 1.3;
}

.nh-blogd-hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 0.82rem;
    color: #64748b;
}

.nh-blogd-hero__meta i {
    margin-right: 6px;
    color: #64748b;
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG DETAIL — Featured Image
   ═══════════════════════════════════════════════════════════════════ */
.nh-blogd-image {
    padding: 0;
    margin-top: -32px;
    position: relative;
    z-index: 2;
}

.nh-blogd-image__wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    aspect-ratio: 21 / 9;
    max-width: 100%;
}

.nh-blogd-image__wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG DETAIL — Content + Sidebar
   ═══════════════════════════════════════════════════════════════════ */
.nh-blogd-content {
    padding: 48px 0 80px;
    background: #f8fafc;
}

.nh-blogd-content__grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}

/* Prose styling */
.nh-prose {
    background: #fff;
    border: 1px solid #e8ecf3;
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    line-height: 1.8;
    font-size: 0.95rem;
    color: #334155;
}

.nh-prose h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin: 32px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

.nh-prose h2:first-child {
    margin-top: 0;
}

.nh-prose h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 24px 0 12px;
}

.nh-prose p {
    margin: 0 0 16px;
}

.nh-prose ul,
.nh-prose ol {
    margin: 0 0 16px;
    padding-left: 24px;
}

.nh-prose li {
    margin-bottom: 8px;
}

.nh-prose blockquote {
    margin: 20px 0;
    padding: 16px 20px;
    border-left: 4px solid #f59e0b;
    background: #fffbeb;
    border-radius: 0 10px 10px 0;
}

.nh-prose blockquote p {
    margin: 0;
    color: #92400e;
}

.nh-prose img {
    max-width: 100%;
    border-radius: 12px;
    margin: 16px 0;
}

.nh-prose a {
    color: #f59e0b;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(245, 158, 11, 0.3);
    transition: text-decoration-color 0.2s;
}

.nh-prose a:hover {
    text-decoration-color: #f59e0b;
}

.nh-prose code {
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.88rem;
    color: #e11d48;
}

.nh-prose pre {
    background: #0f172a;
    color: #e2e8f0;
    padding: 16px 20px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 16px 0;
}

.nh-prose pre code {
    background: none;
    color: inherit;
    padding: 0;
}

/* Sidebar */
.nh-blogd-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nh-blogd-sidebar__card {
    background: #fff;
    border: 1px solid #e8ecf3;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.nh-blogd-sidebar__card h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nh-blogd-sidebar__card h4 i {
    color: #f59e0b;
}

/* Share */
.nh-blogd-share {
    display: flex;
    gap: 10px;
}

.nh-blogd-share__btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    background: color-mix(in srgb, var(--sh-color, #3b82f6), transparent 88%);
    color: var(--sh-color, #3b82f6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nh-blogd-share__btn:hover {
    background: var(--sh-color, #3b82f6);
    color: #fff;
    transform: scale(1.08);
}

/* Related */
.nh-blogd-related {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nh-blogd-related__item {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    padding: 10px;
    border-radius: 12px;
    transition: background 0.2s;
}

.nh-blogd-related__item:hover {
    background: #f8fafc;
}

.nh-blogd-related__item img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.nh-blogd-related__placeholder {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    flex-shrink: 0;
}

.nh-blogd-related__item strong {
    display: block;
    font-size: 0.84rem;
    color: #0f172a;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2px;
}

.nh-blogd-related__item span {
    font-size: 0.72rem;
    color: #64748b;
}

/* Dark promo card */
.nh-blogd-sidebar__card--dark {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    border-color: transparent;
}

.nh-blogd-sidebar__promo {
    text-align: center;
    padding: 10px 0;
}

.nh-blogd-sidebar__promo i {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 12px;
}

.nh-blogd-sidebar__promo h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    justify-content: center;
}

.nh-blogd-sidebar__promo p {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0 0 14px;
}

.nh-blogd-sidebar__promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: #f59e0b;
    color: #fff;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.nh-blogd-sidebar__promo-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG PAGES — Responsive
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .nh-blogd-content__grid {
        grid-template-columns: 1fr 280px;
    }
}

@media (max-width: 768px) {
    .nh-blog-hero {
        padding: 48px 0 56px;
    }

    .nh-blog-hero h1 {
        font-size: 1.7rem;
    }

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

    .nh-blog-card__image-wrap {
        height: 180px;
    }

    .nh-blog-cta__box {
        padding: 32px 24px;
    }

    .nh-blogd-hero {
        padding: 44px 0 52px;
    }

    .nh-blogd-hero h1 {
        font-size: 1.4rem;
    }

    .nh-blogd-hero__meta {
        flex-wrap: wrap;
        gap: 12px;
    }

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

    .nh-prose {
        padding: 24px;
    }

    .nh-blogd-image__wrap {
        aspect-ratio: 16 / 9;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .nh-blog-hero h1 {
        font-size: 1.3rem;
    }

    .nh-blogd-hero h1 {
        font-size: 1.2rem;
    }

    .nh-prose {
        padding: 18px;
        font-size: 0.9rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   404 PAGE — Premium Animated
   ═══════════════════════════════════════════════════════════════════ */
.nh-404 {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #0f172a 100%);
    overflow: hidden;
    text-align: center;
    padding: 60px 0;
}

.nh-404__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.nh-404__stars {
    position: absolute;
    inset: 0;
}

.nh-404__star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: nh404Twinkle ease-in-out infinite;
}

@keyframes nh404Twinkle {

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

    50% {
        opacity: 0.8;
        transform: scale(1);
    }
}

.nh-404__orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.nh-404__orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ef4444, transparent);
    top: -200px;
    right: -100px;
    animation: nh404OrbFloat 10s ease-in-out infinite;
}

.nh-404__orb--2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #8b5cf6, transparent);
    bottom: -120px;
    left: -80px;
    animation: nh404OrbFloat 8s ease-in-out infinite reverse;
}

.nh-404__orb--3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #3b82f6, transparent);
    top: 30%;
    left: 15%;
    animation: nh404OrbFloat 6s ease-in-out infinite 2s;
}

@keyframes nh404OrbFloat {

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

    50% {
        transform: translate(20px, -20px) scale(1.06);
    }
}

.nh-404__content {
    position: relative;
    z-index: 1;
}

/* Animated 404 number */
.nh-404__number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
}

.nh-404__digit {
    font-size: 7rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ef4444, #f97316, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    animation: nh404DigitPulse 3s ease-in-out infinite;
}

.nh-404__digit--zero {
    background: none;
    -webkit-text-fill-color: unset;
}

.nh-404__digit--zero i {
    font-size: 5.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: nh404GlobeSpin 8s linear infinite;
    display: inline-block;
}

@keyframes nh404DigitPulse {

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

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

@keyframes nh404GlobeSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.nh-404__content h1 {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
}

.nh-404__content h1 span {
    background: linear-gradient(135deg, #ef4444, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nh-404__content p {
    font-size: 1rem;
    color: #64748b;
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* Action buttons */
.nh-404__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Quick links */
.nh-404__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.nh-404__links-label {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
}

.nh-404__links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nh-404__links a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #f1f5f9;
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.nh-404__links a i {
    font-size: 0.7rem;
}

/* 404 Responsive */
@media (max-width: 768px) {
    .nh-404 {
        min-height: 70vh;
        padding: 40px 0;
    }

    .nh-404__digit {
        font-size: 4.5rem;
    }

    .nh-404__digit--zero i {
        font-size: 3.5rem;
    }

    .nh-404__content h1 {
        font-size: 1.4rem;
    }

    .nh-404__content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nh-404__digit {
        font-size: 3.5rem;
    }

    .nh-404__digit--zero i {
        font-size: 2.8rem;
    }

    .nh-404__content h1 {
        font-size: 1.2rem;
    }

    .nh-404__links {
        flex-direction: column;
        gap: 8px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   HOSTING PAGE — Responsive
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .nh-hosting-plans {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .nh-showcase {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nh-hosting-hero {
        padding: 40px 0 48px;
    }

    .nh-hosting-hero__content h1 {
        font-size: 1.7rem;
    }

    .nh-hosting-plans {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

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

    .nh-hosting-cta-mid__box {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .nh-hosting-cta-mid__content {
        flex-direction: column;
    }

    .nh-showcase {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .nh-showcase--left .nh-showcase__visual {
        order: -1;
    }

    .nh-showcase__img-wrap {
        width: 200px;
        height: 200px;
    }

    .nh-showcase__img-wrap i {
        font-size: 3.5rem;
    }

    .nh-showcase__text h3 {
        font-size: 1.3rem;
    }

    .nh-hosting-bottom-cta__inner h2 {
        font-size: 1.5rem;
    }

    .nh-hosting-tech__logos {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .nh-hosting-hero__content h1 {
        font-size: 1.4rem;
    }

    .nh-hosting-tech__item span {
        display: none;
    }

    .nh-hosting-tech__item i {
        font-size: 1.4rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   DOMAIN PAGE — Responsive
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .nh-domain-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nh-domain-hero {
        padding: 48px 0 40px;
    }

    .nh-domain-hero__content h1 {
        font-size: 1.8rem;
    }

    .nh-domain-hero__form {
        flex-direction: column;
    }

    .nh-domain-hero__submit {
        width: 100%;
        justify-content: center;
    }

    .nh-domain-hero__tlds {
        gap: 8px;
    }

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

    .nh-domain-transfer__box {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .nh-domain-transfer__content {
        flex-direction: column;
    }

    .nh-domain-result {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .nh-domain-result__action {
        width: 100%;
        justify-content: space-between;
    }

    .nh-domain-table td:nth-child(3),
    .nh-domain-table td:nth-child(4),
    .nh-domain-table th:nth-child(3),
    .nh-domain-table th:nth-child(4) {
        display: none;
    }
}

@media (max-width: 480px) {
    .nh-domain-hero__content h1 {
        font-size: 1.5rem;
    }

    .nh-tld-pill {
        padding: 8px 12px;
        font-size: 0.78rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .nh-container {
        padding: 0 20px;
    }

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

    .nh-footer__grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
    }

    .nh-topbar__left a:nth-child(n+3) {
        display: none;
    }

    .nh-header__link {
        font-size: 14px;
        padding: 8px 12px;
    }

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

    .ca-nav__menu {
        gap: 4px;
    }

    .ca-nav__link {
        padding: 10px 14px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .nh-container {
        padding: 0 16px;
    }

    /* Topbar — hide on mobile */
    .nh-topbar {
        display: none;
    }

    /* Header — shorter on mobile */
    .nh-header {
        height: 60px;
    }

    .nh-header__inner {
        height: 60px;
    }

    .nh-header__logo-img {
        height: 30px !important;
    }

    .nh-mobile-lang-btn {
        display: block;
    }

    .nh-header__nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px 16px;
        overflow-y: auto;
        transform: translateX(100%);
        opacity: 0;
        transition: all 0.35s var(--ease);
        z-index: 999;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
    }

    .nh-header__nav.open {
        transform: translateX(0);
        opacity: 1;
    }

    .nh-header__hamburger {
        display: none;
    }

    .nh-header__nav {
        display: none;
    }

    .nh-header__btn--outline {
        display: none;
    }

    .nh-header__btn--solid {
        display: none;
    }

    /* Hero */
    .nh-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .nh-hero__title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .nh-hero__subtitle {
        font-size: 1rem;
    }

    .nh-hero__stats {
        gap: 24px;
        flex-wrap: wrap;
    }

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

    .nh-hero__actions .nh-btn {
        width: 100%;
        justify-content: center;
    }

    /* Domain bar / search */
    .nh-domain-bar {
        padding: 16px 0;
    }

    .nh-domain-bar__inner {
        flex-direction: column;
        gap: 12px;
    }

    .nh-domain-search__box {
        padding: 24px 16px;
    }

    .nh-domain-search__form {
        flex-direction: column;
        border-radius: var(--radius);
    }

    .nh-domain-search__input {
        border-radius: var(--radius) var(--radius) 0 0;
    }

    .nh-domain-search__btn {
        border-radius: 0 0 var(--radius) var(--radius);
    }

    .nh-domain-search__tlds {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nh-domain-bar__tlds {
        justify-content: center;
        gap: 8px;
    }

    /* Features */
    .nh-features__grid {
        grid-template-columns: 1fr;
    }

    .nh-features__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Pricing */
    .nh-pricing__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .nh-pricing-card.featured {
        transform: none;
    }

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

    .nh-pricing__card {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
    }

    /* VPS */
    .nh-vps__grid {
        grid-template-columns: 1fr;
    }

    /* TLD Cards */
    .nh-tld-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Contact */
    .nh-contact__grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .nh-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .nh-footer__brand {
        grid-column: 1 / -1;
    }

    .nh-footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .nh-footer__legal,
    .nh-footer__payment {
        justify-content: center;
    }

    /* CTA */
    .nh-cta__box {
        padding: 40px 20px;
    }

    .nh-cta__content h2 {
        font-size: 1.5rem;
    }

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

    .nh-cta__btn {
        width: 100%;
        justify-content: center;
    }

    /* Section headers */
    .nh-section-header {
        margin-bottom: 32px;
    }

    .nh-section-header h2 {
        font-size: 1.5rem;
    }

    /* Services */
    .nh-svc-card {
        padding: 18px 16px;
        gap: 14px;
    }

    .nh-svc-card__meta {
        flex-direction: column;
        gap: 8px;
    }

    .nh-svc-card__body p {
        display: none;
    }

    /* Trust bar */
    .nh-trust-bar__inner {
        gap: 12px;
        padding: 14px 16px;
        margin-top: -12px;
    }

    .nh-trust-bar__label {
        font-size: 0.78rem;
    }

    .nh-trust-bar__divider {
        display: none;
    }

    /* Page hero */
    .nh-page-hero {
        padding: 100px 0 50px;
    }

    .nh-page-hero__title {
        font-size: 1.5rem;
    }

    /* Client area */
    .ca-nav__inner {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .ca-nav__menu {
        gap: 0;
        min-width: max-content;
    }

    .ca-nav__link {
        padding: 10px 14px;
        font-size: 12px;
        white-space: nowrap;
    }

    .ca-dash__grid {
        grid-template-columns: 1fr;
    }

    .ca-dash__main {
        grid-column: 1;
    }

    /* Reviews */
    .nh-reviews__grid {
        grid-template-columns: 1fr;
    }

    /* Stats */
    .nh-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Slider */
    .nh-slider__slide {
        flex-direction: column;
        height: auto;
        min-height: 280px;
        padding: 28px 20px;
        gap: 16px;
    }

    .nh-slider__track {
        height: auto;
    }

    .nh-slider__content {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .nh-slider__visual {
        flex: 0 0 auto;
        max-height: 180px;
    }

    .nh-slider__actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nh-container {
        padding: 0 12px;
    }

    .nh-hero {
        padding: 80px 0 50px;
    }

    .nh-hero__title {
        font-size: 1.5rem;
    }

    .nh-hero__subtitle {
        font-size: 0.9rem;
    }

    .nh-hero__stat-value {
        font-size: 1.1rem;
    }

    .nh-hero__stats {
        gap: 12px;
    }

    .nh-pricing-card {
        padding: 28px 18px;
    }

    .nh-feature-card {
        padding: 24px 16px;
    }

    .nh-tld-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .nh-tld-card {
        padding: 18px 12px;
    }

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

    .nh-slider__title {
        font-size: 1.3rem;
    }

    .nh-slider__visual {
        display: none;
    }

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

    .nh-stats__number {
        font-size: 1.8rem;
    }

    .nh-pricing__number {
        font-size: 2.2rem;
    }

    .nh-section-header h2 {
        font-size: 1.3rem;
    }

    .nh-cta__content h2 {
        font-size: 1.3rem;
    }

    .nh-cta__badges {
        gap: 10px;
    }

    .nh-page-hero {
        padding: 80px 0 40px;
    }

    .nh-page-hero__title {
        font-size: 1.3rem;
    }

    .nh-domain-search__tld {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .ca-nav__link {
        padding: 8px 10px;
        font-size: 11px;
    }

    .ca-nav__link i {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   TLD CARDS (Domain Page)
   ═══════════════════════════════════════════════════════════════════ */
.nh-tld-pricing {
    padding: 80px 0;
    background: var(--white);
}

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

.nh-tld-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.35s var(--ease);
    position: relative;
}

.nh-tld-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.nh-tld-card--featured {
    border: 2px solid var(--primary);
    box-shadow: 0 8px 30px rgba(103, 61, 230, 0.12);
}

.nh-tld-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.nh-tld-card__ext {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.nh-tld-card__desc {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.nh-tld-card__price {
    margin-bottom: 20px;
}

.nh-tld-card__amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.nh-tld-card__price span:not(.nh-tld-card__amount) {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 500;
}

.nh-tld-card__btn {
    display: inline-block;
    padding: 10px 28px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    color: var(--gray-700);
    background: var(--white);
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

.nh-tld-card__btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-ghost);
}

.nh-tld-card--featured .nh-tld-card__btn {
    border: none;
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-primary);
}

.nh-tld-card--featured .nh-tld-card__btn:hover {
    box-shadow: 0 8px 25px rgba(103, 61, 230, 0.4);
    transform: translateY(-1px);
    color: #fff;
}

/* 4-column pricing grid for VPS */
.nh-pricing__grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Page Hero — Small */
.nh-page-hero--sm {
    padding: 120px 0 60px;
}

@media (max-width: 1024px) {
    .nh-tld-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .nh-tld-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .nh-pricing__grid--4 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .nh-tld-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════ */
.mt-3 {
    margin-top: 24px;
}

.mb-3 {
    margin-bottom: 24px;
}

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

.text-muted {
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG STYLES
   ═══════════════════════════════════════════════════════════════════ */

.nh-blog-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0 60px;
}

.nh-blog-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.nh-blog-hero p {
    font-size: 1.15rem;
    opacity: 0.85;
}

/* Filter Bar */
.nh-blog-filters {
    padding: 24px 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.nh-blog-filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.nh-filter-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.2s;
}

.nh-filter-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.nh-filter-tag.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Blog Grid */
.nh-blog-grid-section {
    padding: 60px 0;
}

.nh-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.nh-blog-card {
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.nh-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-glow);
}

.nh-blog-card__image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.nh-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.nh-blog-card:hover .nh-blog-card__image img {
    transform: scale(1.05);
}

.nh-blog-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-ghost) 0%, var(--info-bg) 100%);
}

.nh-blog-card__image--placeholder i {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.4;
}

.nh-blog-card__content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.nh-blog-card__meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.82rem;
}

.nh-blog-card__category {
    background: var(--primary-ghost);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.78rem;
}

.nh-blog-card__date {
    color: var(--text-muted);
}

.nh-blog-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.nh-blog-card__title a {
    color: var(--text-primary);
    text-decoration: none;
}

.nh-blog-card__title a:hover {
    color: var(--primary);
}

.nh-blog-card__excerpt {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.nh-blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.nh-blog-card__link:hover {
    gap: 10px;
}

.nh-blog-card__link i {
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.nh-blog-card__link:hover i {
    transform: translateX(4px);
}

/* Blog Empty */
.nh-blog-empty {
    text-align: center;
    padding: 80px 0;
    color: var(--text-muted);
}

.nh-blog-empty i {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.3;
}

.nh-blog-empty h3 {
    margin-bottom: 8px;
    color: var(--text-primary);
}

/* Pagination */
.nh-blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
}

.nh-pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    background: var(--surface);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.2s;
}

.nh-pagination-btn:hover {
    background: var(--primary-ghost);
    border-color: var(--primary);
}

.nh-pagination-numbers {
    display: flex;
    gap: 4px;
}

.nh-pagination-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
}

.nh-pagination-num:hover {
    background: var(--primary-ghost);
    color: var(--primary);
}

.nh-pagination-num.active {
    background: var(--primary);
    color: #fff;
}

/* ─── Blog Detail ──────────────────────────────────────────────── */
.nh-blog-detail__hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 60px 0 48px;
}

.nh-blog-detail__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.nh-blog-detail__breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.nh-blog-detail__breadcrumb a:hover {
    text-decoration: underline;
}

.nh-blog-detail__breadcrumb i {
    font-size: 0.6rem;
}

.nh-blog-detail__title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.3;
    max-width: 800px;
}

.nh-blog-detail__meta {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    font-size: 0.92rem;
    opacity: 0.8;
}

.nh-blog-detail__meta i {
    margin-right: 4px;
}

.nh-blog-detail__image-wrap {
    padding: 32px 0 0;
}

.nh-blog-detail__image {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.nh-blog-detail__content-wrap {
    padding: 48px 0 80px;
}

.nh-blog-detail__content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
}

/* Prose (blog/KB content styling) */
.nh-prose {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.nh-prose h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 32px 0 16px;
    color: var(--text-primary);
}

.nh-prose h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 24px 0 12px;
    color: var(--text-primary);
}

.nh-prose p {
    margin-bottom: 16px;
}

.nh-prose ul,
.nh-prose ol {
    margin: 16px 0;
    padding-left: 24px;
}

.nh-prose li {
    margin-bottom: 8px;
}

.nh-prose code {
    background: var(--primary-ghost);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.9em;
    font-family: 'JetBrains Mono', monospace;
}

.nh-prose pre {
    background: var(--text-primary);
    color: #e5e7eb;
    padding: 20px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 20px 0;
    font-size: 0.88rem;
    line-height: 1.6;
}

.nh-prose pre code {
    background: none;
    color: inherit;
    padding: 0;
}

.nh-prose img {
    max-width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}

.nh-prose blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    margin: 20px 0;
    background: var(--primary-ghost);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--text-primary);
}

.nh-prose a {
    color: var(--primary);
    text-decoration: underline;
}

/* Blog Sidebar */
.nh-blog-sidebar-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}

.nh-blog-sidebar-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.nh-blog-share {
    display: flex;
    gap: 8px;
}

.nh-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.2s;
    color: #fff;
}

.nh-share-twitter {
    background: #000;
}

.nh-share-facebook {
    background: #1877f2;
}

.nh-share-linkedin {
    background: #0a66c2;
}

.nh-share-btn:hover {
    transform: scale(1.1);
}

.nh-blog-related {
    list-style: none;
    padding: 0;
}

.nh-blog-related li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.nh-blog-related li:last-child {
    border-bottom: none;
}

.nh-blog-related a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
}

.nh-blog-related a:hover {
    color: var(--primary);
}

.nh-blog-related span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════════════
   KNOWLEDGE BASE — Premium Styles
   ═══════════════════════════════════════════════════════════════════ */


/* KB Hero — Dark with orbs */
.nh-kb-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.nh-kb-hero--article {
    padding: 60px 0 40px;
    text-align: left;
}

.nh-kb-hero__orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
    pointer-events: none;
}

.nh-kb-hero__orb--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #f59e0b, transparent);
    top: -150px;
    right: -80px;
    animation: nhKbOrbFloat 8s ease-in-out infinite;
}

.nh-kb-hero__orb--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #8b5cf6, transparent);
    bottom: -100px;
    left: -60px;
    animation: nhKbOrbFloat 6s ease-in-out infinite reverse;
}

@keyframes nhKbOrbFloat {

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

    50% {
        transform: translate(15px, -15px);
    }
}

.nh-kb-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 50px;
    color: #fbbf24;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.nh-kb-hero h1 {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.2;
}

.nh-kb-hero h1 span {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nh-kb-hero p {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 540px;
    margin: 0 auto 28px;
}

.nh-kb-hero--article p {
    margin: 0 0 28px;
}

/* KB Hero Search */
.nh-kb-search {
    max-width: 600px;
    margin: 0 auto 20px;
}

.nh-kb-search__input-wrap {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 4px 4px 4px 18px;
    transition: all 0.3s ease;
}

.nh-kb-search__input-wrap:focus-within {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.08);
    background: rgba(255, 255, 255, 0.08);
}

.nh-kb-search__input-wrap i {
    color: #64748b;
    font-size: 0.9rem;
    margin-right: 12px;
}

.nh-kb-search__input-wrap input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.95rem;
    padding: 10px 0;
}

.nh-kb-search__input-wrap input::placeholder {
    color: #64748b;
}

.nh-kb-search__btn {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff;
    border: none;
    border-radius: 10px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nh-kb-search__btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

/* Popular tags */
.nh-kb-hero__tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nh-kb-hero__tags span {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
}

.nh-kb-hero__tags a {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nh-kb-hero__tags a:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

/* KB Breadcrumb */
.nh-kb-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 0.82rem;
}

.nh-kb-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.nh-kb-breadcrumb a:hover {
    color: #fbbf24;
}

.nh-kb-breadcrumb i {
    color: #475569;
    font-size: 0.6rem;
}

.nh-kb-breadcrumb span {
    color: #fbbf24;
}

/* KB Hero Category Badge */
.nh-kb-hero__cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(245, 158, 11, 0.12);
    border-radius: 50px;
    color: #fbbf24;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.nh-kb-hero__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    font-size: 0.82rem;
    color: #64748b;
}

.nh-kb-hero__meta i {
    margin-right: 5px;
}

/* KB Sections */
.nh-kb-section {
    padding: 80px 0;
}

.nh-kb-section--alt {
    background: #f8fafc;
}

.nh-kb-section__header {
    margin-bottom: 44px;
}

.nh-kb-section__header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.nh-kb-section__header h2 i {
    color: #f59e0b;
    font-size: 1.1rem;
}

.nh-kb-section__header p {
    font-size: 0.9rem;
    color: #64748b;
}

/* KB Category Grid */
.nh-kb-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.nh-kb-cat-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 28px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.nh-kb-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: #f59e0b;
}

.nh-kb-cat-card__icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(239, 68, 68, 0.06));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.nh-kb-cat-card__icon i {
    font-size: 1.2rem;
    color: #f59e0b;
}

.nh-kb-cat-card:hover .nh-kb-cat-card__icon {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.nh-kb-cat-card:hover .nh-kb-cat-card__icon i {
    color: #fff;
}

.nh-kb-cat-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.nh-kb-cat-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 18px;
}

.nh-kb-cat-card__count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}

.nh-kb-cat-card__count i {
    font-size: 0.7rem;
}

/* KB Popular Articles */
.nh-kb-popular-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.nh-kb-popular-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nh-kb-popular-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: #f59e0b;
}

.nh-kb-popular-item__rank {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
}

.nh-kb-popular-item__icon {
    width: 36px;
    height: 36px;
    background: rgba(245, 158, 11, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nh-kb-popular-item__icon i {
    font-size: 0.85rem;
    color: #f59e0b;
}

.nh-kb-popular-item__text {
    flex: 1;
    min-width: 0;
}

.nh-kb-popular-item__text h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nh-kb-popular-item__text span {
    font-size: 0.72rem;
    color: #64748b;
}

.nh-kb-popular-item__arrow {
    color: #cbd5e1;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nh-kb-popular-item:hover .nh-kb-popular-item__arrow {
    color: #f59e0b;
    transform: translateX(3px);
}

/* KB Search Results */
.nh-kb-empty {
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
}

.nh-kb-empty i {
    font-size: 2.5rem;
    color: #cbd5e1;
    margin-bottom: 16px;
    display: block;
}

.nh-kb-empty h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 8px;
}

.nh-kb-empty a {
    color: #f59e0b;
}

.nh-kb-results-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nh-kb-result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nh-kb-result-item:hover {
    border-color: #f59e0b;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.nh-kb-result-item__icon {
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nh-kb-result-item__icon i {
    color: #f59e0b;
    font-size: 0.9rem;
}

.nh-kb-result-item__text {
    flex: 1;
}

.nh-kb-result-item__text h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 3px;
}

.nh-kb-result-item__cat {
    font-size: 0.75rem;
    color: #64748b;
}

.nh-kb-result-item__arrow {
    color: #cbd5e1;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.nh-kb-result-item:hover .nh-kb-result-item__arrow {
    color: #f59e0b;
    transform: translateX(3px);
}

/* KB CTA */
.nh-kb-cta__card {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
}

.nh-kb-cta__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.nh-kb-cta__icon i {
    font-size: 1.4rem;
    color: #fff;
}

.nh-kb-cta__card h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.nh-kb-cta__card p {
    font-size: 0.9rem;
    color: #64748b;
    max-width: 400px;
    margin: 0 auto 24px;
}

.nh-kb-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* KB Article Layout */
.nh-kb-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 44px;
    align-items: start;
}


.nh-kb-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.nh-kb-sidebar__card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
}

.nh-kb-sidebar__card h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nh-kb-sidebar__card h4 i {
    color: #f59e0b;
    font-size: 0.85rem;
}

/* KB Voting */
.nh-kb-vote {
    display: flex;
    gap: 10px;
}

.nh-kb-vote__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nh-kb-vote__yes {
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.nh-kb-vote__yes:hover {
    background: #10b981;
    color: #fff;
}

.nh-kb-vote__no {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.nh-kb-vote__no:hover {
    background: #ef4444;
    color: #fff;
}

.nh-kb-vote__btn small {
    font-weight: 500;
    opacity: 0.7;
}

/* KB Related articles */
.nh-kb-related {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nh-kb-related li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 10px;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nh-kb-related li a i {
    color: #64748b;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.nh-kb-related li a:hover {
    background: rgba(245, 158, 11, 0.06);
    color: #f59e0b;
}

.nh-kb-related li a:hover i {
    color: #f59e0b;
}

/* KB Sidebar CTA */
.nh-kb-sidebar__cta {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    border: none;
    text-align: center;
}

.nh-kb-sidebar__cta h4 {
    color: #fff;
    justify-content: center;
}

.nh-kb-sidebar__cta p {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 16px;
}

.nh-kb-sidebar__cta-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.nh-kb-sidebar__cta-icon i {
    color: #fff;
    font-size: 1.1rem;
}

/* KB Responsive */
@media (max-width: 1024px) {
    .nh-kb-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .nh-kb-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .nh-kb-hero {
        padding: 60px 0 40px;
    }

    .nh-kb-hero h1 {
        font-size: 1.6rem;
    }

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

    .nh-kb-cta__card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .nh-kb-cat-grid {
        grid-template-columns: 1fr;
    }

    .nh-kb-hero h1 {
        font-size: 1.3rem;
    }

    .nh-kb-hero__tags {
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   CLIENT AREA — World-Class Dashboard & Panel Design
   ═══════════════════════════════════════════════════════════════════ */


/* ─── Topbar User Dropdown ───────────────────────────── */
.nh-topbar__user-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: rgba(255, 255, 255, 0.85);
    padding: 4px 6px;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    transition: color 0.2s;
    white-space: nowrap;
}

.nh-topbar__user-trigger:hover {
    color: #fff;
}

.nh-topbar__user-icon {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.nh-topbar__user-trigger:hover .nh-topbar__user-icon {
    color: #fff;
}

.nh-topbar__user-name {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nh-topbar__user-menu {
    width: 260px !important;
    padding: 0 !important;
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 14px !important;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.03) !important;
}

.nh-topbar__user-menu .nh-topbar__dropdown-item {
    color: #374151 !important;
    padding: 10px 16px;
    gap: 10px;
    font-size: 0.82rem;
    border-radius: 0;
    transition: all 0.15s;
}

.nh-topbar__user-menu .nh-topbar__dropdown-item:hover {
    background: #f3f4f6 !important;
    color: var(--primary) !important;
}

.nh-topbar__user-menu .nh-topbar__dropdown-item i {
    width: 16px;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

.nh-topbar__dropdown-item--danger {
    color: #ef4444 !important;
}

.nh-topbar__dropdown-item--danger:hover {
    background: #fef2f2 !important;
    color: #ef4444 !important;
}

.nh-topbar__user-menu-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f9fafb;
}

.nh-topbar__user-menu-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    flex-shrink: 0;
}

.nh-topbar__user-menu-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: #111827;
}

.nh-topbar__user-menu-email {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 1px;
}

.nh-topbar__user-menu-divider {
    height: 1px;
    background: #f0f0f0;
}

/* ─── Body ───────────────────────────────────────────── */
body.ca-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f5f6fa;
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
    font-size: 16px;
}

/* ─── Client Nav Bar ─────────────────────────────────── */
.ca-nav {
    background: #13151a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: sticky;
    top: 0;
    z-index: 998;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.ca-nav::-webkit-scrollbar {
    display: none;
}

.ca-nav__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 52px;
}

.ca-nav__items {
    display: flex;
    align-items: center;
    gap: 2px;
}

.ca-nav__item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
    position: relative;
}

.ca-nav__item:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
}

.ca-nav__item.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.ca-nav__item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.ca-nav__item i {
    font-size: 14px;
    opacity: 0.8;
}

.ca-nav__badge {
    background: var(--error);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    border-radius: 50%;
    padding: 0 4px;
}

.ca-nav__user {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.2s;
}

.ca-nav__user:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.ca-nav__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.ca-nav__username {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ─── Content Area ───────────────────────────────────── */
.ca-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 28px 32px 48px;
}

.ca-container {
    max-width: 100%;
}

/* ─── Hero Welcome Banner ────────────────────────────── */
.ca-hero {
    background: linear-gradient(135deg, #673de6 0%, #4f46e5 30%, #2563eb 65%, #0ea5e9 100%);
    color: #fff;
    padding: 28px 32px;
    border-radius: 16px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.ca-hero::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -15%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 65%);
    pointer-events: none;
}

.ca-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 65%);
    pointer-events: none;
}

.ca-hero__content {
    position: relative;
    z-index: 1;
}

.ca-hero__title {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.ca-hero__subtitle {
    font-size: 0.88rem;
    opacity: 0.8;
    font-weight: 400;
}

/* ─── Page Header ────────────────────────────────────── */
.ca-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.ca-page-header__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ca-page-header__title i {
    font-size: 1.1rem;
}

.ca-page-header__subtitle {
    font-size: 0.88rem;
    color: var(--text-dim);
    margin-top: 2px;
}

/* ─── Stats Grid ─────────────────────────────────────── */
.ca-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.ca-stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px 22px;
    border: 1px solid #e8ecf3;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.ca-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--stat-color, var(--primary));
    opacity: 0;
    transition: opacity 0.25s;
}

.ca-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.ca-stat-card:hover::before {
    opacity: 1;
}

.ca-stat-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.ca-stat-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.ca-stat-card__icon.cyan {
    background: rgba(103, 61, 230, 0.1);
    color: var(--primary);
}

.ca-stat-card__icon.amber {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.ca-stat-card__icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.ca-stat-card__icon.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.ca-stat-card__icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.ca-stat-card__value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.ca-stat-card__label {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 4px;
    font-weight: 500;
}

/* ─── Balance Card (Dashboard + Credits) ─────────────── */
.ca-balance-card {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 50%, #4c1d95 100%);
    border-radius: 16px;
    padding: 28px 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

.ca-balance-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 60%);
    pointer-events: none;
}

.ca-balance-card__label {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ca-balance-card__amount {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
}

.ca-balance-card__note {
    font-size: 0.78rem;
    opacity: 0.6;
    margin-top: 8px;
}

.ca-balance-card__actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

.ca-balance-card__btn {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ca-balance-card__btn--primary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ca-balance-card__btn--primary:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* ─── Quick Actions ──────────────────────────────────── */
.ca-quick-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.ca-quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid #e8ecf3;
    border-radius: 10px;
    color: var(--gray-700);
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.ca-quick-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(103, 61, 230, 0.04);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.ca-quick-btn--primary {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
}

.ca-quick-btn--primary:hover {
    background: var(--primary-dark) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(103, 61, 230, 0.25) !important;
}

.ca-quick-btn i {
    font-size: 0.85rem;
}

/* ─── Cards ──────────────────────────────────────────── */
.ca-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8ecf3;
    overflow: hidden;
    transition: box-shadow 0.25s;
}

.ca-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.ca-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid #f0f2f5;
    gap: 12px;
}

.ca-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.ca-card__title i {
    font-size: 0.85rem;
}

.ca-card__body {
    padding: 22px;
}

/* ─── Two Column Grid ────────────────────────────────── */
.ca-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.ca-grid-sidebar {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 20px;
}

/* ─── Tables ─────────────────────────────────────────── */
.ca-table-wrap {
    overflow-x: auto;
}

.ca-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.ca-table thead th {
    padding: 12px 18px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
    border-bottom: 1px solid #f0f2f5;
    background: #fafbfc;
    white-space: nowrap;
}

.ca-table tbody td {
    padding: 14px 18px;
    border-bottom: 1px solid #f7f8fa;
    vertical-align: middle;
    color: var(--gray-700);
}

.ca-table tbody tr {
    transition: background 0.15s;
}

.ca-table tbody tr:hover {
    background: #f8f9fc;
}

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

.td-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.td-link:hover {
    text-decoration: underline;
}

.td-dim {
    color: var(--text-dim);
    font-size: 0.82rem;
}

/* ─── Badges ─────────────────────────────────────────── */
.ca-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1.5;
}

.ca-badge--active,
.ca-badge--paid,
.ca-badge--completed {
    background: #ecfdf5;
    color: #059669;
}

.ca-badge--pending,
.ca-badge--draft {
    background: #fff7ed;
    color: #d97706;
}

.ca-badge--unpaid,
.ca-badge--overdue {
    background: #fef2f2;
    color: #dc2626;
}

.ca-badge--suspended,
.ca-badge--failed {
    background: #fef2f2;
    color: #dc2626;
}

.ca-badge--cancelled,
.ca-badge--refunded {
    background: #f3f4f6;
    color: #6b7280;
}

.ca-badge--open {
    background: #eff6ff;
    color: #2563eb;
}

.ca-badge--answered {
    background: #f0fdf4;
    color: #16a34a;
}

.ca-badge--customer_reply {
    background: #fef3c7;
    color: #b45309;
}

.ca-badge--in_progress {
    background: #ede9fe;
    color: #7c3aed;
}

.ca-badge--closed {
    background: #f3f4f6;
    color: #6b7280;
}

/* ─── Buttons ────────────────────────────────────────── */
.ca-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-family: inherit;
    white-space: nowrap;
}

.ca-btn--primary {
    background: var(--primary);
    color: #fff;
}

.ca-btn--primary:hover {
    background: var(--primary-dark);
    color: #fff;
    box-shadow: 0 4px 12px rgba(103, 61, 230, 0.25);
    transform: translateY(-1px);
}

.ca-btn--outline {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid #e0e3e9;
}

.ca-btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(103, 61, 230, 0.04);
}

.ca-btn--sm {
    padding: 6px 14px;
    font-size: 0.8rem;
}

.ca-btn--xs {
    padding: 4px 10px;
    font-size: 0.75rem;
}

/* ─── Tabs (Filter) ──────────────────────────────────── */
.ca-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    padding: 4px;
    background: #f0f2f5;
    border-radius: 10px;
    overflow-x: auto;
}

.ca-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 7px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.ca-tab:hover {
    color: var(--gray-900);
    background: rgba(255, 255, 255, 0.5);
}

.ca-tab.active {
    color: var(--gray-900);
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.ca-tab-count {
    background: #e5e7eb;
    color: #6b7280;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 50px;
    min-width: 18px;
    text-align: center;
}

.ca-tab.active .ca-tab-count {
    background: var(--primary);
    color: #fff;
}

/* ─── Service Cards Grid ─────────────────────────────── */
.ca-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 16px;
}

.ca-service-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8ecf3;
    padding: 20px;
    transition: all 0.25s;
}

.ca-service-card:hover {
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.ca-service-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.ca-service-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.ca-service-card__icon.hosting {
    background: rgba(103, 61, 230, 0.1);
    color: var(--primary);
}

.ca-service-card__icon.vps {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.ca-service-card__icon.domain {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.ca-service-card__icon.other {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.ca-service-card__name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--gray-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ca-service-card__domain {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ca-service-card__meta {
    display: flex;
    gap: 16px;
    padding-top: 14px;
    border-top: 1px solid #f0f2f5;
    flex-wrap: wrap;
    align-items: center;
}

.ca-service-card__meta span {
    font-size: 0.78rem;
    color: var(--text-dim);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ca-service-card__meta span i {
    font-size: 0.7rem;
    opacity: 0.6;
}

.ca-service-card__actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

/* ─── Alert ──────────────────────────────────────────── */
.ca-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.ca-alert--warning {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #b45309;
}

.ca-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.ca-alert--success {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    color: #059669;
}

/* ─── Empty State ────────────────────────────────────── */
.ca-empty {
    text-align: center;
    padding: 56px 24px;
    color: var(--text-dim);
}

.ca-empty i {
    font-size: 2rem;
    opacity: 0.2;
    display: block;
    margin-bottom: 12px;
}

.ca-empty h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.ca-empty p {
    font-size: 0.85rem;
    margin-bottom: 16px;
    color: var(--text-dim);
}

/* ─── Form Controls ──────────────────────────────────── */
.ca-form-group {
    margin-bottom: 18px;
}

.ca-form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.ca-input,
.ca-select,
.ca-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e0e3e9;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: all 0.2s;
}

.ca-input:focus,
.ca-select:focus,
.ca-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(103, 61, 230, 0.1);
}

.ca-input::placeholder,
.ca-textarea::placeholder {
    color: #c0c4cc;
}

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

.ca-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .ca-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ca-grid-2 {
        grid-template-columns: 1fr;
    }

    .ca-grid-sidebar {
        grid-template-columns: 1fr;
    }

    .ca-service-grid {
        grid-template-columns: 1fr;
    }

    .ca-content {
        padding: 20px 20px 40px;
    }
}

@media (max-width: 768px) {
    .ca-content {
        padding: 16px 16px 32px;
    }

    .ca-hero {
        padding: 22px 20px;
        border-radius: 12px;
    }

    .ca-hero__title {
        font-size: 1.15rem;
    }

    .ca-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .ca-stat-card {
        padding: 16px;
    }

    .ca-stat-card__value {
        font-size: 1.4rem;
    }

    .ca-page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .ca-quick-actions {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .ca-card__header {
        padding: 14px 16px;
    }

    .ca-table thead th,
    .ca-table tbody td {
        padding: 10px 14px;
        font-size: 0.82rem;
    }

    .ca-form-row {
        grid-template-columns: 1fr;
    }

    .ca-balance-card {
        padding: 22px 20px;
    }

    .ca-balance-card__amount {
        font-size: 2rem;
    }

    /* Nav bar scroll on mobile */
    .ca-nav__inner {
        padding: 0 12px;
    }

    .ca-nav__item {
        padding: 10px 10px;
        gap: 5px;
    }

    .ca-nav__item span {
        display: none;
    }

    .ca-nav__user {
        display: none;
    }

    .ca-nav__username {
        display: none;
    }

    /* Topbar user truncate */
    .nh-topbar__user-name {
        max-width: 80px;
    }
}

@media (max-width: 480px) {
    .ca-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .ca-stat-card {
        padding: 14px;
    }

    .ca-stat-card__icon {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .ca-stat-card__value {
        font-size: 1.2rem;
    }

    .ca-hero__title {
        font-size: 1.05rem;
    }

    .ca-content {
        padding: 12px 12px 24px;
    }

    .ca-balance-card__amount {
        font-size: 1.65rem;
    }

    .nh-topbar__user-name {
        display: none;
    }
}





/* ═══════════════════════════════════════════════════════════════════
   Auth Page — Premium Dark Glassmorphism Design
   ═══════════════════════════════════════════════════════════════════ */

/* Animated mesh gradient background */
@keyframes authGradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes authFloat {

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

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes authPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes authShimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.auth-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 24px;
    background: #0a0e1a;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(168, 85, 247, 0.06) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

/* Floating decorative orbs */
.auth-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: authFloat 8s ease-in-out infinite;
}

.auth-section::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: 10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.12), transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: authFloat 10s ease-in-out infinite 2s;
}

.auth-panel {
    display: flex;
    max-width: 1020px;
    width: 100%;
    background: rgba(15, 20, 35, 0.6);
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Left info panel */
.auth-panel__info {
    width: 400px;
    flex-shrink: 0;
    background:
        linear-gradient(160deg, #0f172a 0%, #1e1b4b 45%, #312e81 100%);
    color: #fff;
    padding: 52px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.auth-panel__info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -40%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent 60%);
    border-radius: 50%;
    animation: authPulse 6s ease-in-out infinite;
}

.auth-panel__info::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15), transparent 60%);
    border-radius: 50%;
    animation: authPulse 8s ease-in-out infinite 3s;
}

.auth-panel__info>* {
    position: relative;
    z-index: 1;
}

.auth-panel__info-logo {
    margin-bottom: 32px;
}

.auth-panel__info-logo img {
    max-height: 40px;
    width: auto;
    filter: brightness(1.1);
}

.auth-panel__info-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-panel__info-title {
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-panel__info-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
}

.auth-panel__features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.auth-panel__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.auth-panel__feature:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.auth-panel__feature i {
    color: #34d399;
    font-size: 0.8rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(52, 211, 153, 0.12);
}

/* Right form panel */
.auth-panel__form {
    flex: 1;
    padding: 52px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.97);
    position: relative;
}

.auth-panel__form-header {
    margin-bottom: 28px;
}

.auth-panel__form-header h2 {
    font-size: 1.55rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.auth-panel__form-header h2 i {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 6px;
}

.auth-panel__form-header p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* Form controls - premium dark hover inputs */
.auth-panel__form .ca-form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.auth-panel__form .ca-input,
.auth-panel__form .ca-select {
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.92rem;
    background: #f8fafc;
    transition: all 0.25s;
    color: #0f172a;
}

.auth-panel__form .ca-input:hover,
.auth-panel__form .ca-select:hover {
    border-color: #c7d2fe;
    background: #fff;
}

.auth-panel__form .ca-input:focus,
.auth-panel__form .ca-select:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.08);
    background: #fff;
}

/* Premium submit button */
.auth-panel__form .ca-btn--primary.ca-btn--block {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.auth-panel__form .ca-btn--primary.ca-btn--block::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    background-size: 200% 100%;
    animation: authShimmer 3s infinite;
}

.auth-panel__form .ca-btn--primary.ca-btn--block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Links */
.auth-panel__links {
    margin-top: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-panel__links p {
    font-size: 0.86rem;
    color: #64748b;
    margin: 0;
}

.auth-panel__links a {
    color: #6366f1;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.auth-panel__links a:hover {
    color: #4f46e5;
    text-decoration: underline;
}

/* Divider */
.auth-panel__divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: #94a3b8;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.auth-panel__divider::before,
.auth-panel__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

/* Security badge at bottom */
.auth-security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding: 10px 16px;
    border-radius: 10px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    font-size: 0.78rem;
    font-weight: 600;
    color: #15803d;
}

.auth-security-badge i {
    font-size: 0.72rem;
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
    .auth-section {
        padding: 32px 16px;
    }

    .auth-section::before,
    .auth-section::after {
        display: none;
    }

    .auth-panel {
        flex-direction: column;
        max-width: 480px;
        border-radius: 20px;
    }

    .auth-panel__info {
        width: 100%;
        padding: 32px 28px;
    }

    .auth-panel__info-title {
        font-size: 1.25rem;
    }

    .auth-panel__features {
        display: none;
    }

    .auth-panel__form {
        padding: 28px 24px;
    }

    .auth-panel__form-header h2 {
        font-size: 1.25rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   Registration Wizard — 2-Step Premium Design
   ═══════════════════════════════════════════════════════════════════ */

/* Wider panel for register */
.auth-panel--wide {
    max-width: 1100px;
}

/* Step progress bar */
.reg-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 28px;
    padding: 0 8px;
}

.reg-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #94a3b8;
    transition: all 0.3s;
    white-space: nowrap;
}

.reg-step__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    background: #f1f5f9;
    color: #94a3b8;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
    flex-shrink: 0;
}

.reg-step.active .reg-step__num {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border-color: #6366f1;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.reg-step.active {
    color: #0f172a;
}

.reg-step.done .reg-step__num {
    background: #10b981;
    color: #fff;
    border-color: #10b981;
}

.reg-step.done {
    color: #10b981;
}

.reg-steps__line {
    flex: 1;
    height: 2px;
    background: #e2e8f0;
    margin: 0 12px;
    position: relative;
    overflow: hidden;
}

.reg-steps__line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #10b981, #6366f1);
    transition: width 0.5s ease;
}

.reg-steps__line.filled .reg-steps__line-fill {
    width: 100%;
}

/* Wizard panels */
.reg-wizard {
    position: relative;
    overflow: hidden;
}

.reg-wizard__panel {
    display: none;
    animation: regSlideIn 0.4s ease;
}

.reg-wizard__panel.active {
    display: block;
}

@keyframes regSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

@keyframes regSlideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

/* Account type selector */
.reg-type-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 22px;
}

.reg-type-card {
    position: relative;
    padding: 20px;
    border-radius: 14px;
    border: 2px solid #e2e8f0;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.reg-type-card:hover {
    border-color: #c7d2fe;
    background: #fff;
}

.reg-type-card.selected {
    border-color: #6366f1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.04), rgba(139, 92, 246, 0.04));
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.08);
}

.reg-type-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.reg-type-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 12px;
    transition: all 0.3s;
}

.reg-type-card:first-child .reg-type-card__icon {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.reg-type-card:last-child .reg-type-card__icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.reg-type-card.selected .reg-type-card__icon {
    transform: scale(1.1);
}

.reg-type-card__title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.reg-type-card__desc {
    font-size: 0.76rem;
    color: #64748b;
    line-height: 1.4;
}

/* Conditional fields */
.reg-conditional {
    display: none;
    animation: regSlideIn 0.3s ease;
}

.reg-conditional.visible {
    display: block;
}

/* Section heading inside step 2 */
.reg-section-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 20px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reg-section-title i {
    color: #6366f1;
    font-size: 0.78rem;
}

/* Back button */
.reg-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.reg-back-btn:hover {
    color: #0f172a;
    background: #e2e8f0;
}

/* Button row */
.reg-btn-row {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.reg-btn-row .ca-btn--primary {
    flex: 1;
}

/* Country select with flag */
.reg-country-wrap {
    position: relative;
}

.reg-country-wrap .ca-select {
    padding-left: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-panel--wide {
        max-width: 480px;
    }

    .reg-type-cards {
        grid-template-columns: 1fr;
    }

    .reg-step span {
        display: none;
    }

    .reg-btn-row {
        flex-direction: column-reverse;
    }

    .reg-btn-row .ca-btn--primary {
        width: 100%;
    }
}