/* ============================================
   NetsaHost Premium Theme for WHLab
   Overlay stylesheet — loaded AFTER main.css
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- Design Tokens Override ---------- */
:root {
  --nh-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nh-white: #ffffff;
  --nh-off-white: #f8f9fb;
  --nh-gray-50: #f4f5f7;
  --nh-gray-100: #ebedf0;
  --nh-gray-200: #d1d5db;
  --nh-gray-300: #b0b7c3;
  --nh-gray-400: #8a94a6;
  --nh-gray-500: #6b7280;
  --nh-gray-600: #4b5563;
  --nh-gray-700: #374151;
  --nh-gray-800: #1f2937;
  --nh-gray-900: #111827;
  --nh-black: #0a0a0a;
  --nh-accent: #2563eb;
  --nh-accent-hover: #1d4ed8;
  --nh-accent-light: #dbeafe;
  --nh-green: #10b981;
  --nh-green-light: #d1fae5;
  --nh-radius-sm: 8px;
  --nh-radius-md: 12px;
  --nh-radius-lg: 16px;
  --nh-radius-xl: 24px;
  --nh-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --nh-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
  --nh-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  --nh-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1), 0 8px 24px rgba(0, 0, 0, 0.06);
  --nh-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Global Overrides ---------- */
body {
  font-family: var(--nh-font) !important;
  color: var(--nh-gray-800);
  background: var(--nh-white) !important;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--nh-font) !important;
  color: var(--nh-gray-900);
}

a {
  transition: all 0.2s var(--nh-ease);
}

/* ---------- Preloader Override ---------- */
.preloader {
  background-color: var(--nh-gray-900) !important;
}

.spinner {
  border-color: var(--nh-accent) !important;
  border-top-color: transparent !important;
}

/* ==========================================
   HEADER / NAVBAR REDESIGN
   ========================================== */
.header.bg--dark {
  background: var(--nh-gray-900) !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  transition: all 0.35s var(--nh-ease);
  border-bottom: 1px solid transparent;
}

.header.bg--dark.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--nh-gray-100);
  box-shadow: var(--nh-shadow-sm);
}

.header-bottom {
  padding: 0 !important;
}

.header-bottom-area {
  min-height: 72px;
  padding: 0 !important;
}

/* Logo */
.header .logo img {
  max-height: 38px;
  transition: all 0.3s var(--nh-ease);
}

/* Navigation Links */
.header .menu li>a {
  font-family: var(--nh-font) !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  padding: 24px 16px !important;
  transition: color 0.2s var(--nh-ease) !important;
  position: relative;
}

.header .menu li>a::after {
  content: '' !important;
  position: absolute !important;
  bottom: 20px !important;
  left: 16px !important;
  width: 0 !important;
  height: 2px !important;
  background: var(--nh-accent) !important;
  transition: width 0.2s var(--nh-ease) !important;
  border-radius: 2px !important;
  font-family: inherit !important;
}

.header .menu li>a:hover,
.header .menu li>a.active {
  color: var(--nh-white) !important;
}

.header .menu li>a:hover::after,
.header .menu li>a.active::after {
  width: calc(100% - 32px) !important;
}

/* Scrolled state link colors */
.header.bg--dark.scrolled .menu li>a {
  color: var(--nh-gray-500) !important;
}

.header.bg--dark.scrolled .menu li>a:hover,
.header.bg--dark.scrolled .menu li>a.active {
  color: var(--nh-gray-900) !important;
}

/* Sub-menu / Dropdown */
.header .menu .sub-menu {
  background: var(--nh-white) !important;
  border: 1px solid var(--nh-gray-100) !important;
  border-radius: var(--nh-radius-md) !important;
  box-shadow: var(--nh-shadow-lg) !important;
  padding: 8px !important;
  min-width: 220px !important;
  margin-top: 0 !important;
}

.header .menu .sub-menu li a {
  color: var(--nh-gray-600) !important;
  padding: 10px 16px !important;
  border-radius: var(--nh-radius-sm) !important;
  font-size: 0.88rem !important;
}

.header .menu .sub-menu li a:hover {
  background: var(--nh-gray-50) !important;
  color: var(--nh-gray-900) !important;
}

.header .menu .sub-menu li a::after {
  display: none !important;
}

/* Header buttons (Login / Dashboard / Logout) */
.header .menu-btn a,
.header .header-buttons a {
  font-family: var(--nh-font) !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
}

.header .btn--base-outline {
  border-radius: var(--nh-radius-sm) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: var(--nh-white) !important;
  padding: 6px 16px !important;
  transition: all 0.2s var(--nh-ease) !important;
}

.header .btn--base-outline:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.header.bg--dark.scrolled .btn--base-outline {
  border-color: var(--nh-gray-200) !important;
  color: var(--nh-gray-800) !important;
}

.header.bg--dark.scrolled .btn--base-outline:hover {
  background: var(--nh-gray-900) !important;
  color: var(--nh-white) !important;
  border-color: var(--nh-gray-900) !important;
}

.header.bg--dark.scrolled .text--white {
  color: var(--nh-gray-600) !important;
}

.header.bg--dark.scrolled .text--white:hover {
  color: var(--nh-gray-900) !important;
}

/* Language selector */
select.langSel {
  font-family: var(--nh-font) !important;
  border-radius: var(--nh-radius-sm) !important;
  font-size: 0.85rem !important;
  padding: 4px 8px !important;
}

/* Cart widget */
.header .cart-widget {
  color: rgba(255, 255, 255, 0.8);
}

.header.bg--dark.scrolled .cart-widget {
  color: var(--nh-gray-600);
}

/* Mobile trigger */
.header-trigger__icon {
  color: var(--nh-white) !important;
  font-size: 24px !important;
}

.header.bg--dark.scrolled .header-trigger__icon {
  color: var(--nh-gray-900) !important;
}

/* Spacer for fixed header */
body {
  padding-top: 72px;
}

/* ==========================================
   BREADCRUMB — Premium Professional Redesign
   ========================================== */
.nh-breadcrumb {
  position: relative;
  background: var(--nh-gray-900) !important;
  padding: 0 !important;
  margin-top: -1px;
  overflow: hidden;
  border-bottom: 1px solid var(--nh-gray-800);
}

/* Subtle radial glow */
.nh-breadcrumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 120px at 30% 50%, rgba(37,99,235,.10) 0%, transparent 70%);
  pointer-events: none;
}

/* Micro top accent line */
.nh-breadcrumb::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,.30), transparent);
}

.nh-breadcrumb-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 30px 0 28px;
}

/* Page title */
.nh-breadcrumb-title {
  font-family: var(--nh-font) !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: var(--nh-white) !important;
  margin: 0 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.02em;
}

/* Trail row */
.nh-breadcrumb-trail {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-family: var(--nh-font);
  font-size: 0.8rem;
  color: var(--nh-gray-400);
}

.nh-breadcrumb-trail a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--nh-gray-400);
  text-decoration: none;
  transition: color .2s var(--nh-ease);
  padding: 2px 0;
}
.nh-breadcrumb-trail a:hover {
  color: var(--nh-accent);
}

/* Home icon */
.nh-breadcrumb-home-icon {
  display: inline-flex;
  align-items: center;
  opacity: .55;
  transition: opacity .2s;
}
.nh-breadcrumb-trail a:hover .nh-breadcrumb-home-icon {
  opacity: 1;
}

/* Chevron separator */
.nh-breadcrumb-sep {
  display: inline-flex;
  align-items: center;
  color: var(--nh-gray-600);
  user-select: none;
}

/* Current page text */
.nh-breadcrumb-current {
  color: var(--nh-gray-200);
  font-weight: 500;
}

/* ---- Light variant ---- */
.nh-breadcrumb--light {
  background: var(--nh-off-white) !important;
  border-bottom: 1px solid var(--nh-gray-100);
}
.nh-breadcrumb--light::before {
  background: radial-gradient(ellipse 900px 120px at 30% 50%, rgba(37,99,235,.05) 0%, transparent 70%);
}
.nh-breadcrumb--light::after {
  background: linear-gradient(90deg, transparent, rgba(37,99,235,.15), transparent);
}
.nh-breadcrumb--light .nh-breadcrumb-title {
  color: var(--nh-gray-900) !important;
}
.nh-breadcrumb--light .nh-breadcrumb-trail {
  color: var(--nh-gray-500);
}
.nh-breadcrumb--light .nh-breadcrumb-trail a {
  color: var(--nh-gray-500);
}
.nh-breadcrumb--light .nh-breadcrumb-trail a:hover {
  color: var(--nh-accent);
}
.nh-breadcrumb--light .nh-breadcrumb-current {
  color: var(--nh-gray-700);
}

/* ---- Responsive ---- */
@media (max-width: 575px) {
  .nh-breadcrumb-inner {
    padding: 22px 0 20px;
  }
  .nh-breadcrumb-title {
    font-size: 1.15rem !important;
  }
}

/* ==========================================
   HERO SECTION (HOME PAGE ONLY)
   ========================================== */
.nh-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b0f19;
  margin-top: -72px;
  padding-top: 72px;
}

.nh-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.nh-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 25, 0.7) 0%, rgba(11, 15, 25, 0.85) 50%, rgba(11, 15, 25, 0.95) 100%);
}

.nh-particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Fade-in animation for staggered elements */
@keyframes nhFadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nh-fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: nhFadeInUp 0.7s var(--nh-ease) var(--delay, 0s) forwards;
}

@keyframes nhPulseRing {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.nh-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
  width: 100%;
}

.nh-hero-center {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}

/* Badge */
.nh-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.nh-hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--nh-green);
  border-radius: 50%;
  position: relative;
}

.nh-hero-badge-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--nh-green);
  animation: nhPulseRing 1.5s ease-out infinite;
}

/* Headline */
.nh-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem) !important;
  font-weight: 900 !important;
  color: var(--nh-white) !important;
  line-height: 1.15 !important;
  margin-bottom: 16px !important;
  letter-spacing: -1px;
}

.nh-hero h1 .nh-highlight {
  background: linear-gradient(135deg, #93c5fd, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nh-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== DOMAIN SEARCH BOX ===== */
.nh-domain-search-wrapper {
  position: relative;
  max-width: 640px;
  margin: 0 auto 32px;
}

.nh-search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 60px;
  padding: 6px 6px 6px 0;
  transition: all 0.35s ease;
  backdrop-filter: blur(12px);
}

.nh-search-box:focus-within {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 8px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.nh-search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s;
}

.nh-search-box:focus-within .nh-search-icon {
  color: rgba(255, 255, 255, 0.6);
}

.nh-search-input {
  flex: 1;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  color: #fff !important;
  font-size: 1.05rem;
  font-family: var(--nh-font);
  padding: 14px 0 !important;
  height: auto !important;
  min-width: 0;
}

.nh-search-input::placeholder {
  color: transparent !important;
}

/* Custom TLD Select */
.nh-tld-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.05rem;
  font-family: var(--nh-font);
  font-weight: 600;
  padding: 14px 35px 14px 10px;
  outline: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  margin-right: 10px;
}

.nh-tld-select option {
  color: #333;
  background: #fff;
  font-weight: 500;
}

/* Typing placeholder overlay */
.nh-typing-placeholder {
  position: absolute;
  left: 52px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--nh-font);
  display: flex;
  align-items: center;
  transition: opacity 0.25s;
}

@keyframes nhBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.nh-cursor {
  animation: nhBlink 1s step-end infinite;
  font-weight: 300;
  margin-left: 1px;
  color: rgba(255, 255, 255, 0.5);
}

/* Search Button */
.nh-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nh-accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--nh-font);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  min-width: 120px;
  position: relative;
  overflow: hidden;
}

.nh-search-btn:hover {
  background: var(--nh-accent-hover);
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.35);
}

.nh-search-btn:active {
  transform: scale(0.98);
}

.nh-btn-loader {
  display: none;
}

.nh-search-btn.loading .nh-btn-text {
  display: none;
}

.nh-search-btn.loading .nh-btn-loader {
  display: flex;
}

@keyframes nhSpin {
  to {
    transform: rotate(360deg);
  }
}

.nh-spinner {
  animation: nhSpin 0.7s linear infinite;
}

/* ===== FLOATING TLD BADGES ===== */
@keyframes nhFloat1 {

  0%,
  100% {
    transform: translate(0, 0) rotate(-6deg);
  }

  50% {
    transform: translate(6px, -10px) rotate(-3deg);
  }
}

@keyframes nhFloat2 {

  0%,
  100% {
    transform: translate(0, 0) rotate(5deg);
  }

  50% {
    transform: translate(-8px, -12px) rotate(8deg);
  }
}

@keyframes nhFloat3 {

  0%,
  100% {
    transform: translate(0, 0) rotate(3deg);
  }

  50% {
    transform: translate(10px, -8px) rotate(-2deg);
  }
}

@keyframes nhFloat4 {

  0%,
  100% {
    transform: translate(0, 0) rotate(-4deg);
  }

  50% {
    transform: translate(-6px, -14px) rotate(4deg);
  }
}

.nh-tld-float {
  position: absolute;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  border-radius: 20px;
  pointer-events: none;
  z-index: 0;
}

.nh-tld-1 {
  top: -18px;
  left: -30px;
  animation: nhFloat1 6s ease-in-out infinite;
}

.nh-tld-2 {
  top: -14px;
  right: -24px;
  animation: nhFloat2 7s ease-in-out infinite 0.5s;
}

.nh-tld-3 {
  bottom: -16px;
  left: 10%;
  animation: nhFloat3 5.5s ease-in-out infinite 1s;
}

.nh-tld-4 {
  bottom: -12px;
  right: 8%;
  animation: nhFloat4 6.5s ease-in-out infinite 1.5s;
}

/* ===== TLD PRICING ROW ===== */
.nh-tld-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.nh-tld-price {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.2px;
}

.nh-tld-price strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

/* ===== TRUST ROW ===== */
.nh-hero-trust-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.nh-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.nh-trust-item svg {
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}


.nh-trust-item svg {
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

/* Bootstrap row/col override for hero split — left gets slightly more space */
.nh-hero .row {
  width: 100%;
  margin: 0;
}

.nh-hero [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

/* Left column titles/subtitle align left (not center) */
.nh-hero .col-lg-7 {
  text-align: left;
}

.nh-hero .col-lg-7 .nh-hero-subtitle {
  margin-left: 0;
  margin-right: 0;
}

.nh-hero .col-lg-7 .nh-domain-search-wrapper {
  margin-left: 0;
  margin-right: 0;
}

.nh-hero .col-lg-7 .nh-tld-row {
  justify-content: flex-start;
}

.nh-hero .col-lg-7 .nh-hero-trust-row {
  justify-content: flex-start;
}

/* Right column — card fills the column space, top-aligned with left */
.nh-hero .col-lg-5 {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.nh-hero .col-lg-5 .host-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* Smaller card padding for hero */
.nh-hero .col-lg-5 .host-card--hero {
  padding: 22px 20px 20px;
}

.nh-hero .col-lg-5 .host-card--hero .host-card__head {
  margin-bottom: 12px;
}

.nh-hero .col-lg-5 .host-card--hero .host-card__name {
  font-size: 1.25rem;
}

.nh-hero .col-lg-5 .host-card--hero .host-card__desc {
  font-size: 0.82rem;
}

.nh-hero .col-lg-5 .host-card--hero .host-card__pricing {
  padding: 10px 0;
  margin-bottom: 10px;
}

.nh-hero .col-lg-5 .host-card--hero .host-card__amount {
  font-size: 1.6rem;
}

.nh-hero .col-lg-5 .host-card--hero .host-card__cta {
  padding: 10px 16px;
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.nh-hero .col-lg-5 .host-card--hero .host-card__feat {
  padding: 2px 0;
  font-size: 12px;
}

.nh-hero .col-lg-5 .host-card--hero .host-card__features {
  max-height: 185px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nh-hero .col-lg-5 .host-card--hero .host-card__features::-webkit-scrollbar {
  display: none;
}

.nh-hero .col-lg-5 .host-card--hero .host-card__divider {
  margin: 3px 0;
}

.nh-hero .col-lg-5 .host-card--popular {
  transform: none;
}

/* ===== FASTEST PRODUCT CARD ===== */
.nh-fastest-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: 36px 32px;
  width: 100%;
  max-width: 360px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--nh-ease);
}

.nh-fastest-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.nh-fastest-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.nh-fastest-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: #93c5fd;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.nh-fastest-label svg {
  color: #60a5fa;
}

.nh-fastest-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.nh-fastest-desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.nh-fastest-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.nh-fastest-feature svg {
  color: var(--nh-green);
  flex-shrink: 0;
}

.nh-fastest-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 24px;
}

.nh-fastest-currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  align-self: flex-start;
  margin-top: 4px;
}

.nh-fastest-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-family: var(--nh-font);
}

.nh-fastest-period {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  align-self: flex-end;
  margin-bottom: 6px;
  margin-left: 2px;
}

.nh-fastest-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 14px 24px;
  font-size: 0.95rem;
}

.nh-fastest-card--empty {
  text-align: center;
  padding: 48px 32px;
}

.nh-fastest-empty-text {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 992px) {
  .nh-hero .col-lg-7 {
    text-align: center;
    margin-bottom: 40px;
  }

  .nh-hero .col-lg-7 .nh-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .nh-hero .col-lg-7 .nh-domain-search-wrapper {
    margin-left: auto;
    margin-right: auto;
  }

  .nh-hero .col-lg-7 .nh-tld-row {
    justify-content: center;
  }

  .nh-hero .col-lg-7 .nh-hero-trust-row {
    justify-content: center;
  }

  .nh-hero .col-lg-5 {
    justify-content: center;
  }

  .nh-hero .col-lg-5 .host-card {
    max-width: 420px;
  }
}

.nh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--nh-font);
  border-radius: var(--nh-radius-sm);
  padding: 14px 32px;
  transition: all 0.2s var(--nh-ease);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.nh-btn-accent {
  background: var(--nh-accent);
  color: var(--nh-white) !important;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.25);
}

.nh-btn-accent:hover {
  background: var(--nh-accent-hover);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
  color: var(--nh-white) !important;
}

.nh-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: var(--nh-white) !important;
}

.nh-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: var(--nh-white) !important;
}

.nh-btn-primary {
  background: var(--nh-gray-900);
  color: var(--nh-white) !important;
  box-shadow: var(--nh-shadow-md);
}

.nh-btn-primary:hover {
  background: var(--nh-black);
  box-shadow: var(--nh-shadow-lg);
  transform: translateY(-2px);
  color: var(--nh-white) !important;
}

.nh-btn-outline {
  background: transparent;
  color: var(--nh-gray-900) !important;
  border: 1.5px solid var(--nh-gray-200);
}

.nh-btn-outline:hover {
  background: var(--nh-gray-900);
  color: var(--nh-white) !important;
  border-color: var(--nh-gray-900);
  transform: translateY(-2px);
}

.nh-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s var(--nh-ease);
}

.nh-btn:hover svg {
  transform: translateX(3px);
}

.nh-btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
  border-radius: var(--nh-radius-md);
}




/* ==========================================
   BRAND / TECHNOLOGY BAR
   ========================================== */
.nh-brand-bar {
  padding: 60px 0;
  background: var(--nh-off-white);
  border-bottom: 1px solid var(--nh-gray-100);
}

.nh-brand-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--nh-gray-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 32px;
}

.nh-brand-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.nh-brand-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--nh-gray-300);
  letter-spacing: -0.5px;
  transition: color 0.2s;
}

.nh-brand-logo:hover {
  color: var(--nh-gray-500);
}

/* ==========================================
   PRICING TABLES
   ========================================== */
.nh-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.nh-pricing-card {
  background: var(--nh-white);
  border: 1px solid var(--nh-gray-200);
  border-radius: var(--nh-radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s var(--nh-ease);
  display: flex;
  flex-direction: column;
}

.nh-pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--nh-shadow-lg);
  border-color: var(--nh-accent);
}

.nh-pricing-card.popular {
  border: 2px solid var(--nh-accent);
  position: relative;
  box-shadow: var(--nh-shadow-md);
}

.nh-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--nh-accent);
  color: var(--nh-white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nh-pricing-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--nh-off-white);
  border-radius: var(--nh-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nh-accent);
}

.nh-pricing-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--nh-gray-900);
  margin-bottom: 8px;
}

.nh-pricing-desc {
  font-size: 0.9rem;
  color: var(--nh-gray-500);
  margin-bottom: 24px;
}

.nh-pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--nh-gray-900);
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}

.nh-pricing-currency {
  font-size: 1.25rem;
  margin-top: 8px;
}

.nh-pricing-amount {
  line-height: 1;
}

.nh-pricing-period {
  font-size: 0.9rem;
  color: var(--nh-gray-500);
  font-weight: 400;
  margin-bottom: 32px;
}

.nh-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  text-align: left;
  flex: 1;
}

.nh-pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--nh-gray-100);
  font-size: 0.9rem;
  color: var(--nh-gray-700);
  display: flex;
  align-items: center;
  gap: 12px;
}

.nh-pricing-features li:last-child {
  border-bottom: none;
}

.nh-pricing-features li svg {
  color: var(--nh-green);
  flex-shrink: 0;
}

.nh-pricing-card .nh-btn {
  width: 100%;
}

/* Pricing card hover pop animation */
.nh-pricing-card.popular:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
}

.nh-pricing-card.popular .nh-btn-accent {
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.35);
}

/* ==========================================
   WHY CHOOSE US / FEATURES
   ========================================== */
.nh-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.nh-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.nh-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--nh-accent-light);
  color: var(--nh-accent);
  border-radius: var(--nh-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nh-feature-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.nh-feature-content p {
  font-size: 0.95rem;
  color: var(--nh-gray-600);
  line-height: 1.6;
}

/* ==========================================
   INFRASTRUCTURE & SECURITY GUARANTEE
   ========================================== */
.nh-guarantee-section {
  position: relative;
  background: #0b0f19;
  padding: 100px 0 80px;
  overflow: hidden;
}

.nh-guarantee-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.nh-guarantee-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: #93c5fd;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.nh-guarantee-highlight {
  background: linear-gradient(135deg, #93c5fd, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Stats Row --- */
.nh-guarantee-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 50px 0 60px;
}

.nh-guarantee-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--nh-radius-lg);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all 0.35s var(--nh-ease);
}

.nh-guarantee-stat:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.1);
}

.nh-guarantee-stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}

.nh-guarantee-stat-unit {
  font-size: 1.25rem;
  font-weight: 700;
  color: #60a5fa;
  letter-spacing: 0;
}

.nh-guarantee-stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nh-guarantee-stat-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

/* --- Security Feature Cards --- */
.nh-guarantee-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.nh-guarantee-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--nh-radius-lg);
  padding: 36px 28px;
  transition: all 0.35s var(--nh-ease);
  position: relative;
  overflow: hidden;
}

.nh-guarantee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--nh-accent), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.nh-guarantee-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.nh-guarantee-card:hover::before {
  opacity: 1;
}

.nh-guarantee-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(37, 99, 235, 0.12);
  color: #60a5fa;
  border-radius: var(--nh-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.35s var(--nh-ease);
}

.nh-guarantee-card-icon--firewall {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
}

.nh-guarantee-card-icon--malware {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
}

.nh-guarantee-card:hover .nh-guarantee-card-icon {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.15);
}

.nh-guarantee-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.nh-guarantee-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin-bottom: 18px;
}

.nh-guarantee-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--nh-green);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 5px 14px;
  border-radius: 100px;
}

/* --- CTA Banner --- */
.nh-guarantee-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(37, 99, 235, 0.06));
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--nh-radius-xl);
  padding: 40px 48px;
}

.nh-guarantee-cta-content h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.nh-guarantee-cta-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .nh-guarantee-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .nh-guarantee-cards {
    grid-template-columns: 1fr;
  }

  .nh-guarantee-cta {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
}

@media (max-width: 575px) {
  .nh-guarantee-stats {
    grid-template-columns: 1fr;
  }

  .nh-guarantee-section {
    padding: 60px 0 50px;
  }

  .nh-guarantee-stat-number {
    font-size: 2.2rem;
  }
}

/* ==========================================
   HOW IT WORKS / STEPS
   ========================================== */
.nh-steps-section {
  padding: 100px 0;
  background: var(--nh-white);
}

.nh-steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 50px;
  position: relative;
}

.nh-step {
  text-align: center;
  position: relative;
}

.nh-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--nh-accent);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.nh-step-connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 36px);
  width: calc(100% - 24px);
  height: 2px;
  background: repeating-linear-gradient(90deg,
      var(--nh-gray-200) 0,
      var(--nh-gray-200) 6px,
      transparent 6px,
      transparent 12px);
  z-index: 1;
}

.nh-step:last-child .nh-step-connector {
  display: none;
}

.nh-step h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--nh-gray-900);
  margin-bottom: 10px;
}

.nh-step p {
  font-size: 0.92rem;
  color: var(--nh-gray-500);
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .nh-steps-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nh-step-connector {
    display: none;
  }
}

/* ==========================================
   TLD PRICING TABLE
   ========================================== */
.nh-tld-pricing-section {
  padding: 100px 0;
  background: var(--nh-white);
}

.nh-tld-table {
  background: var(--nh-white);
  border: 1px solid var(--nh-gray-200);
  border-radius: var(--nh-radius-lg);
  overflow: hidden;
  margin-top: 40px;
}

.nh-tld-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 0;
  padding: 16px 28px;
  background: var(--nh-off-white);
  border-bottom: 1px solid var(--nh-gray-200);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--nh-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nh-tld-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 0;
  padding: 18px 28px;
  align-items: center;
  border-bottom: 1px solid var(--nh-gray-100);
  transition: background 0.2s;
}

.nh-tld-table-row:last-child {
  border-bottom: none;
}

.nh-tld-table-row:hover {
  background: var(--nh-off-white);
}

.nh-tld-table-col {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nh-tld-table-col--action {
  justify-content: flex-end;
}

.nh-tld-ext {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--nh-gray-900);
}

.nh-tld-price-val {
  font-weight: 700;
  color: var(--nh-gray-900);
  font-size: 0.95rem;
}

.nh-tld-period {
  font-size: 0.8rem;
  color: var(--nh-gray-400);
  font-weight: 400;
}

@media (max-width: 768px) {
  .nh-tld-table-header {
    display: none;
  }

  .nh-tld-table-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 20px;
  }

  .nh-tld-table-col--ext {
    grid-column: 1 / -1;
  }

  .nh-tld-table-col--action {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .nh-tld-table-col::before {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--nh-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
  }
}

/* ==========================================
   FOOTER STYLING
   ========================================== */
.nh-footer {
  background: var(--nh-gray-900);
  color: var(--nh-gray-400);
  padding: 80px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nh-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.nh-footer-brand {
  max-width: 300px;
}

.nh-footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.nh-footer-title {
  color: var(--nh-white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.nh-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nh-footer-links li {
  margin-bottom: 12px;
}

.nh-footer-links a {
  color: var(--nh-gray-400);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nh-footer-links a:hover {
  color: var(--nh-accent);
}

.nh-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.nh-footer-social {
  display: flex;
  gap: 16px;
}

.nh-footer-social a {
  color: var(--nh-gray-400);
  transition: color 0.2s;
}

.nh-footer-social a:hover {
  color: var(--nh-white);
}

@media (max-width: 991px) {
  .nh-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .nh-footer-grid {
    grid-template-columns: 1fr;
  }

  .nh-footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ==========================================
   SECTION STYLING SYSTEM
   ========================================== */
.nh-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--nh-accent);
  margin-bottom: 16px;
}

.nh-section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--nh-accent);
  border-radius: 2px;
}

.nh-section-title {
  font-size: clamp(2rem, 4vw, 2.75rem) !important;
  font-weight: 800 !important;
  color: var(--nh-gray-900) !important;
  line-height: 1.2 !important;
  margin-bottom: 16px !important;
}

.nh-section-subtitle {
  font-size: 1.1rem;
  color: var(--nh-gray-500);
  max-width: 600px;
  line-height: 1.7;
}

.nh-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.nh-section-header .nh-section-subtitle {
  margin: 0 auto;
}

/* ==========================================
   SERVICE CARDS REDESIGN
   ========================================== */
.nh-services-section {
  padding: 100px 0 !important;
  background: var(--nh-white) !important;
}

.nh-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.nh-service-card {
  background: var(--nh-white);
  border: 1px solid var(--nh-gray-100);
  border-radius: var(--nh-radius-lg);
  padding: 32px 28px;
  transition: all 0.35s var(--nh-ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.nh-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--nh-accent), #60a5fa);
  opacity: 0;
  transition: opacity 0.35s var(--nh-ease);
}

.nh-service-card:hover {
  border-color: var(--nh-gray-200);
  box-shadow: var(--nh-shadow-lg);
  transform: translateY(-4px);
}

.nh-service-card:hover::before {
  opacity: 1;
}

.nh-service-icon {
  width: 52px;
  height: 52px;
  background: var(--nh-gray-50);
  border-radius: var(--nh-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--nh-gray-600);
  transition: all 0.35s var(--nh-ease);
}

.nh-service-card:hover .nh-service-icon {
  background: var(--nh-accent);
  color: var(--nh-white);
}

.nh-service-card h5 {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--nh-gray-900) !important;
  margin-bottom: 10px !important;
}

.nh-service-card p {
  font-size: 0.9rem;
  color: var(--nh-gray-500);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.nh-service-card .nh-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ==========================================
   DOMAIN SEARCH REDESIGN
   ========================================== */
.nh-domain-section {
  padding: 80px 0 !important;
  background: var(--nh-off-white) !important;
  position: relative;
  overflow: hidden;
}

.nh-domain-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(37, 99, 235, 0.04) 0%, transparent 60%);
}

.nh-domain-inner {
  position: relative;
  z-index: 1;
}

.nh-domain-search {
  max-width: 700px;
  margin: 0 auto;
}

/* ==========================================
   FAQ SECTION REDESIGN
   ========================================== */
.nh-faq-section {
  padding: 100px 0 !important;
  background: var(--nh-white) !important;
}

.nh-faq-grid {
  max-width: 760px;
  margin: 0 auto;
}

.nh-faq-item {
  border: 1px solid var(--nh-gray-100);
  border-radius: var(--nh-radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s var(--nh-ease);
}

.nh-faq-item:hover {
  border-color: var(--nh-gray-200);
}

.nh-faq-item.active {
  border-color: var(--nh-gray-200);
  box-shadow: var(--nh-shadow-sm);
}

.nh-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--nh-gray-800);
  text-align: left;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: var(--nh-font);
  transition: all 0.2s var(--nh-ease);
}

.nh-faq-question:hover {
  color: var(--nh-gray-900);
}

.nh-faq-icon {
  width: 28px;
  height: 28px;
  background: var(--nh-gray-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s var(--nh-ease);
  font-size: 16px;
  color: var(--nh-gray-500);
}

.nh-faq-item.active .nh-faq-icon {
  background: var(--nh-gray-900);
  color: var(--nh-white);
  transform: rotate(45deg);
}

.nh-faq-answer {
  display: none;
}

.nh-faq-answer p {
  padding: 0 24px 20px !important;
  font-size: 0.93rem;
  color: var(--nh-gray-500);
  line-height: 1.7;
}

/* ==========================================
   BLOG / ANNOUNCEMENTS REDESIGN
   ========================================== */
.nh-blog-section {
  padding: 100px 0 !important;
  background: var(--nh-off-white) !important;
}

.nh-blog-card {
  background: var(--nh-white);
  border: 1px solid var(--nh-gray-100);
  border-radius: var(--nh-radius-lg);
  padding: 32px;
  transition: all 0.35s var(--nh-ease);
  margin-bottom: 24px;
}

.nh-blog-card:hover {
  box-shadow: var(--nh-shadow-lg);
  transform: translateY(-4px);
}

.nh-blog-card:last-child {
  margin-bottom: 0;
}

.nh-blog-card h3 {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
}

.nh-blog-card h3 a {
  color: var(--nh-gray-900) !important;
}

.nh-blog-card h3 a:hover {
  color: var(--nh-accent) !important;
}

.nh-blog-card article {
  border-left: 3px solid var(--nh-accent) !important;
  padding-left: 16px;
  color: var(--nh-gray-500);
  line-height: 1.7;
}

/* ==========================================
   FOOTER REDESIGN
   ========================================== */
footer.footer.bg-dark-two {
  padding: 60px 0 0 !important;
  background: var(--nh-black) !important;
}

.footer .footer-content {
  padding-bottom: 40px;
}

.footer .logo img {
  max-height: 40px;
  margin-bottom: 0 !important;
}

.footer-text {
  font-size: 0.9rem !important;
  color: var(--nh-gray-500) !important;
  line-height: 1.7 !important;
  max-width: 500px !important;
  margin-top: 16px !important;
}

.footer .footer-links a.anchor-decoration.text--base {
  color: var(--nh-gray-400) !important;
  font-size: 0.9rem !important;
  transition: all 0.2s var(--nh-ease) !important;
}

.footer .footer-links a.anchor-decoration.text--base:hover {
  color: var(--nh-white) !important;
}

.footer p {
  color: var(--nh-gray-500) !important;
  font-size: 0.85rem;
}

/* ==========================================
   SUBSCRIBE WIDGET REDESIGN
   ========================================== */
.subscribe .subscribe-btn {
  background: var(--nh-accent) !important;
  border-color: var(--nh-accent) !important;
  border-radius: var(--nh-radius-sm) !important;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3) !important;
}

.subscribe .subscribe-btn:hover {
  background: var(--nh-accent-hover) !important;
  border-color: var(--nh-accent-hover) !important;
}

.subscribe-box {
  border-radius: var(--nh-radius-lg) !important;
  box-shadow: var(--nh-shadow-xl) !important;
  border: 1px solid var(--nh-gray-100) !important;
}

/* ==========================================
   GLOBAL CARD OVERRIDES
   ========================================== */
.card.custom--card {
  border: 1px solid var(--nh-gray-100) !important;
  border-radius: var(--nh-radius-lg) !important;
  box-shadow: var(--nh-shadow-sm) !important;
  overflow: hidden;
}

.card-header.bg-dark-two {
  background: var(--nh-gray-900) !important;
  font-weight: 700 !important;
  font-family: var(--nh-font) !important;
  border-bottom: none !important;
  padding: 16px 20px !important;
}

/* Button overrides */
.btn.btn--base {
  background-color: var(--nh-accent) !important;
  border-color: var(--nh-accent) !important;
  border-radius: var(--nh-radius-sm) !important;
  font-family: var(--nh-font) !important;
  font-weight: 600 !important;
  transition: all 0.2s var(--nh-ease) !important;
}

.btn.btn--base:hover {
  background-color: var(--nh-accent-hover) !important;
  border-color: var(--nh-accent-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important;
}

/* Form Controls */
.form--control {
  border-radius: var(--nh-radius-sm) !important;
  font-family: var(--nh-font) !important;
  border: 1px solid var(--nh-gray-200) !important;
  transition: all 0.2s var(--nh-ease) !important;
}

.form--control:focus {
  border-color: var(--nh-accent) !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
}

/* ==========================================
   STATISTICS SECTION
   ========================================== */
.nh-stats-section {
  padding: 80px 0;
  background: var(--nh-gray-900);
  position: relative;
  overflow: hidden;
}

.nh-stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 60%);
}

.nh-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.nh-stat-item {
  text-align: center;
}

.nh-stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #93c5fd, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nh-stat-label {
  font-size: 0.9rem;
  color: var(--nh-gray-400);
  font-weight: 500;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.nh-testimonials-section {
  padding: 100px 0;
  background: var(--nh-off-white);
}

.nh-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.nh-testimonial-card {
  background: var(--nh-white);
  border: 1px solid var(--nh-gray-100);
  border-radius: var(--nh-radius-lg);
  padding: 32px;
  transition: all 0.35s var(--nh-ease);
}

.nh-testimonial-card:hover {
  box-shadow: var(--nh-shadow-lg);
  transform: translateY(-4px);
}

.nh-testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.nh-testimonial-stars i {
  color: #fbbf24;
  font-size: 16px;
}

.nh-testimonial-text {
  font-size: 0.95rem;
  color: var(--nh-gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

.nh-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--nh-gray-100);
}

.nh-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nh-white);
  font-weight: 700;
  font-size: 0.9rem;
}

.nh-testimonial-name {
  font-weight: 700;
  color: var(--nh-gray-900);
  font-size: 0.95rem;
}

.nh-testimonial-role {
  font-size: 0.8rem;
  color: var(--nh-gray-400);
  margin-top: 2px;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.nh-cta-section {
  padding: 100px 0;
  background: var(--nh-gray-900);
  position: relative;
  overflow: hidden;
}

.nh-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(37, 99, 235, 0.12) 0%, transparent 60%);
}

.nh-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.nh-cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem) !important;
  font-weight: 900 !important;
  color: var(--nh-white) !important;
  margin-bottom: 16px !important;
  letter-spacing: -1px;
}

.nh-cta-content p {
  font-size: 1.1rem;
  color: var(--nh-gray-400);
  margin-bottom: 36px;
  line-height: 1.7;
}

.nh-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.nh-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--nh-ease);
}

.nh-animate.nh-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */
@media (max-width: 1024px) {
  .nh-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .nh-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }

  .header-bottom-area {
    min-height: 60px;
  }

  .nh-hero {
    margin-top: -60px;
    padding-top: 60px;
    min-height: auto;
  }

  .nh-hero-content {
    padding: 48px 0 40px;
  }

  .nh-hero h1 {
    font-size: 1.75rem !important;
    letter-spacing: -0.5px;
  }

  .nh-hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  /* Domain search mobile */
  .nh-search-box {
    flex-direction: column;
    border-radius: 16px;
    padding: 8px;
    gap: 8px;
  }

  .nh-search-icon {
    display: none;
  }

  .nh-typing-placeholder {
    left: 16px;
  }

  .nh-search-input {
    width: 100%;
    text-align: center;
    padding: 14px 16px !important;
    font-size: 1rem;
  }

  .nh-search-btn {
    width: 100%;
    border-radius: 12px;
    padding: 14px 24px;
  }

  .nh-tld-float {
    display: none;
  }

  .nh-tld-row {
    gap: 16px;
  }

  .nh-tld-price {
    font-size: 0.75rem;
  }

  .nh-hero-trust-row {
    gap: 16px;
  }

  .nh-trust-item {
    font-size: 0.78rem;
  }

  .nh-floating-badge {
    display: none;
  }

  .nh-services-section,
  .nh-faq-section,
  .nh-blog-section,
  .nh-testimonials-section {
    padding: 72px 0 !important;
  }

  .nh-services-grid {
    grid-template-columns: 1fr;
  }

  .nh-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .nh-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .nh-brand-logos {
    gap: 24px;
  }

  /* Mobile navigation */
  .header .menu {
    background: var(--nh-white) !important;
  }

  .header .menu li>a {
    color: var(--nh-gray-700) !important;
    padding: 12px 16px !important;
    border-bottom: 1px solid var(--nh-gray-100);
  }

  .header .menu li>a::after {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .nh-hero h1 {
    font-size: 1.5rem !important;
  }

  .nh-tld-row {
    gap: 12px;
  }

  .nh-hero-trust-row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .nh-server-metrics {
    grid-template-columns: 1fr;
  }

  .nh-stats-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ---------- Product Box Pricing Cards ---------- */
.product-box {
  background: #ffffff;
  border: 1px solid #e8ecf0;
  border-radius: 12px;
  padding: 30px;
  max-width: 380px;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.product-box:hover {
  border-color: #d0d5dd;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.product-box .product-header h4 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 8px;
  line-height: 1.4;
}

.product-box .product-header h4 b {
  font-weight: 700;
}

.product-box .product-header p {
  font-size: 14px;
  color: #767676;
  line-height: 1.6;
  margin: 0;
}

.product-box .product-price {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 20px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #eef0f4;
}

.product-box .product-price .term {
  font-size: 14px;
  font-weight: 400;
  color: #767676;
}

.product-box .product-order {
  margin: 20px 0;
}

.product-box .product-order .button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  border: none;
}

.product-box .product-order .button-secondary {
  background: #1a73e8;
  color: #fff;
}

.product-box .product-order .button-secondary:hover {
  background: #1557b0;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.product-order .icon-shopping-cart::before {
  content: "\01F6D2";
  font-size: 14px;
}

.product-box .product-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-box .product-features ul li {
  padding: 6px 0;
  font-size: 14px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-box .product-features ul li strong {
  font-weight: 700;
  color: #1a1a2e;
}

.product-box .product-features .icon-check::before {
  content: "\2713";
  font-weight: bold;
  font-size: 14px;
}

@media (max-width: 768px) {
  .product-box {
    max-width: 100%;
    padding: 24px;
  }

  .product-box .product-price {
    font-size: 28px;
  }
}

/* ---------- Yegara-style Gradient Elements ---------- */
.gradientdividerblue {
  height: 2px;
  background: linear-gradient(90deg, #1a73e8, #8ab4f8, transparent);
  border-radius: 2px;
}

.gradientdivideryellow {
  height: 2px;
  background: linear-gradient(90deg, #ffe400, #f5b700, transparent);
  border-radius: 2px;
}

.gradientblobtop {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 228, 0, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.gradientblobbottom {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(43, 125, 218, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.product-box {
  position: relative;
  z-index: 1;
}

/* ============================================
   PREMIUM HOSTING CARDS — PROFESSIONAL DESIGN
   ============================================ */

/* ----- Section Layout ----- */
.section-hosting {
  padding: 80px 0 100px;
  position: relative;
  background: #f8faff;
}

.host-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.host-badge {
  display: inline-block;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  color: #4f46e5;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.host-title {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px;
  line-height: 1.2;
}

.host-title-accent {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.host-subtitle {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* ----- Grid ----- */
.host-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: stretch;
}

/* ----- Card Base ----- */
.host-card {
  position: relative;
  width: calc(33.333% - 19px);
  min-width: 310px;
  max-width: 368px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e9edf4;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.host-card:hover {
  border-color: #c7d2fe;
  box-shadow: 0 20px 60px rgba(79, 70, 229, 0.08), 0 8px 24px rgba(79, 70, 229, 0.06);
  transform: translateY(-6px);
}

/* Dark variant for hero / dark backgrounds */
.host-card--hero {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.host-card--hero .host-card__name {
  color: #fff;
}

.host-card--hero .host-card__type {
  color: #93c5fd;
}

.host-card--hero .host-card__desc {
  color: rgba(255, 255, 255, 0.55);
}

.host-card--hero .host-card__pricing {
  border-top-color: rgba(255, 255, 255, 0.10);
  border-bottom-color: rgba(255, 255, 255, 0.10);
}

.host-card--hero .host-card__currency {
  color: rgba(255, 255, 255, 0.5);
}

.host-card--hero .host-card__amount {
  color: #fff;
}

.host-card--hero .host-card__period {
  color: rgba(255, 255, 255, 0.4);
}

.host-card--hero .host-card__setup {
  color: rgba(255, 255, 255, 0.3);
}

.host-card--hero .host-card__feat {
  color: rgba(255, 255, 255, 0.6);
}

.host-card--hero .host-card__feat strong {
  color: rgba(255, 255, 255, 0.9);
}

.host-card--hero .host-card__divider {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.10), transparent);
}

/* ----- Popular Card ----- */
.host-card--popular {
  border: 2px solid #4f46e5;
  box-shadow: 0 12px 40px rgba(79, 70, 229, 0.10);
  transform: scale(1.04);
  z-index: 2;
}

.host-card--popular:hover {
  border-color: #4338ca;
  box-shadow: 0 24px 64px rgba(79, 70, 229, 0.15);
  transform: scale(1.04) translateY(-6px);
}

.host-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* ----- Card Head ----- */
.host-card__head {
  text-align: center;
  margin-bottom: 20px;
}

.host-card__panel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 16px;
}

.host-card__panel--da {
  background: #1e293b;
  color: #f8fafc;
}

.host-card__panel--cpanel {
  background: #fff3ed;
  color: #ea580c;
}

.host-card__panel--plesk {
  background: #ecfdf5;
  color: #059669;
}

.host-card__name {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px;
  letter-spacing: -0.3px;
}

.host-card__type {
  font-size: 13px;
  font-weight: 600;
  color: #4f46e5;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}

.host-card__desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* ----- Pricing ----- */
.host-card__pricing {
  text-align: center;
  padding: 20px 0;
  margin-bottom: 20px;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.host-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.host-card__currency {
  font-size: 20px;
  font-weight: 600;
  color: #64748b;
}

.host-card__amount {
  font-size: 44px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -2px;
  line-height: 1;
}

.host-card__period {
  font-size: 14px;
  color: #94a3b8;
  margin-top: 4px;
}

.host-card__setup {
  font-size: 12px;
  color: #cbd5e1;
  margin-top: 3px;
}

.host-card--popular .host-card__amount {
  color: #4f46e5;
}

/* ----- CTA Button ----- */
.host-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: #0f172a;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border: none;
  cursor: pointer;
  margin-bottom: 20px;
}

.host-card__cta:hover {
  background: #1e293b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.20);
}

.host-card--popular .host-card__cta {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.host-card--popular .host-card__cta:hover {
  background: linear-gradient(135deg, #4338ca, #6d28d9);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.35);
}

.host-card__cta svg {
  transition: transform 0.3s ease;
}

.host-card__cta:hover svg {
  transform: translateX(4px);
}

/* ----- Features ----- */
.host-card__features {
  flex: 1;
}

.host-card__featgroup {
  padding: 3px 0;
}

.host-card__feat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-size: 14px;
  color: #475569;
}

.host-card__feat strong {
  font-weight: 700;
  color: #0f172a;
}

.host-card__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.host-card__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
  margin: 8px 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .host-card {
    width: calc(50% - 14px);
    min-width: 290px;
  }

  .host-card--popular {
    transform: scale(1.03);
  }

  .host-card--popular:hover {
    transform: scale(1.03) translateY(-6px);
  }
}

@media (max-width: 720px) {
  .section-hosting {
    padding: 60px 0 70px;
  }

  .host-title {
    font-size: 28px;
  }

  .host-card {
    width: 100%;
    max-width: 380px;
    min-width: 0;
  }

  .host-card--popular {
    transform: none;
  }

  .host-card--popular:hover {
    transform: translateY(-6px);
  }

  .host-card__amount {
    font-size: 38px;
  }
}

gap: 32px;
justify-content: center;
align-items: stretch;
padding: 20px 0 60px;
}


.ns-plan-card {
  position: relative;
  width: calc(33.333% - 22px);
  min-width: 310px;
  max-width: 370px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ns-plan-card:hover {
  transform: translateY(-8px);
}

.ns-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  opacity: 0.15;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.ns-plan-card:hover .ns-card-glow {
  opacity: 0.35;
}

.ns-popular .ns-card-glow {
  background: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
  opacity: 0.25;
}

.ns-popular:hover .ns-card-glow {
  opacity: 0.5;
}

.ns-card-inner {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ns-plan-card:hover .ns-card-inner {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.10), 0 4px 16px rgba(0, 0, 0, 0.06);
}

.ns-popular {
  transform: scale(1.04);
}

.ns-popular:hover {
  transform: scale(1.04) translateY(-8px);
}

.ns-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: linear-gradient(135deg, #f5af19, #f12711);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(241, 39, 17, 0.3);
  white-space: nowrap;
}

.ns-card-top {
  text-align: center;
  margin-bottom: 20px;
}

.ns-cp-badge {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.ns-plan-name {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 4px;
  letter-spacing: -0.3px;
}

.ns-plan-category {
  font-size: 13px;
  font-weight: 600;
  color: #667eea;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 8px;
}

.ns-plan-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
  margin: 0;
}

/* Price Block */
.ns-price-block {
  text-align: center;
  padding: 20px 0;
  margin-bottom: 16px;
  border-top: 1px solid #f0f2f5;
  border-bottom: 1px solid #f0f2f5;
}

.ns-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.ns-currency {
  font-size: 20px;
  font-weight: 600;
  color: #555;
}

.ns-amount {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -1.5px;
  line-height: 1;
}

.ns-period {
  font-size: 14px;
  color: #999;
  margin-top: 4px;
}

.ns-setup-fee {
  font-size: 12px;
  color: #bbb;
  margin-top: 4px;
}

/* Order Button */
.ns-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  cursor: pointer;
  margin-bottom: 20px;
}

.ns-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.35);
  color: #fff;
}

.ns-popular .ns-order-btn {
  background: linear-gradient(135deg, #f5af19, #f12711);
}

.ns-popular .ns-order-btn:hover {
  box-shadow: 0 8px 24px rgba(241, 39, 17, 0.35);
}

.ns-arrow {
  transition: transform 0.3s ease;
}

.ns-order-btn:hover .ns-arrow {
  transform: translateX(4px);
}

/* Features */
.ns-features {
  flex: 1;
}

.ns-feat-section {
  padding: 4px 0;
}

.ns-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: #444;
}

.ns-feat-item strong {
  font-weight: 700;
  color: #1a1a2e;
}

.ns-feat-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8f5e9;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: #43a047;
  flex-shrink: 0;
}

.ns-feat-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e0e4ec, transparent);
  margin: 8px 0;
}

/* Section Header */
.section-header.text-center {
  text-align: center;
  margin-bottom: 40px;
}

.ns-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea15, #764ba215);
  color: #667eea;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ns-section-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 12px;
}

.ns-gradient-text {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ns-section-desc {
  font-size: 16px;
  color: #888;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   DOMAIN PICKER — PRODUCT CONFIGURE PAGE
   ============================================ */

.domainArea {
  margin-bottom: 24px;
}

.domainArea>h3 {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
}

.domainArea .card {
  border: 1px solid #e9edf4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.domainArea .card-header.bg-dark-two {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: #f8fafc !important;
  border-bottom: 1px solid #e9edf4;
  font-weight: 600;
  font-size: 15px;
  color: #0f172a;
}

.domainArea .card-header input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #4f46e5;
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
}

.domainArea .card-header label {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  margin: 0;
}

.domainArea .card-body {
  padding: 20px;
  background: #fff;
}

/* Input Group */
.domainArea .input-group {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.domainArea .input-group:focus-within {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.domainArea .input-group-text {
  background: #f1f5f9;
  border: none;
  color: #64748b;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px;
}

.domainArea .form--control {
  border: none !important;
  border-radius: 0 !important;
  padding: 10px 14px;
  font-size: 15px;
  height: 46px;
  background: #fff;
  box-shadow: none !important;
}

.domainArea .form--control:focus {
  border: none !important;
  box-shadow: none !important;
}

.domainArea select.form--control {
  border: none !important;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 14px center;
  padding: 10px 38px 10px 14px;
  font-size: 15px;
  font-weight: 600;
  height: 46px;
  cursor: pointer;
  color: #0f172a;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
}

.domainArea select.form--control:hover {
  background-color: #f8fafc;
}

.domainArea select.form--control option {
  font-weight: 500;
  padding: 10px;
  background: #fff;
  color: #0f172a;
}

.domainArea select.form--control option:hover,
.domainArea select.form--control option:checked {
  background: #eef2ff;
  color: #4f46e5;
}

/* For existing domain extension input, keep standard */
.domainArea .card-body .extension:not(select) {
  border: none !important;
  background: #fff;
  padding: 10px 14px;
  font-size: 15px;
  height: 46px;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.domainArea .btn.btn--base {
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 10px 10px 0 !important;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 24px;
  background: #4f46e5 !important;
  border-color: #4f46e5 !important;
  color: #fff !important;
  transition: all 0.25s ease;
}

.domainArea .btn.btn--base:hover {
  background: #4338ca !important;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3) !important;
  transform: translateY(-1px);
}

/* Domain Availability Display */
.domainArea .showAvailability {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.domain-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.domain-row:hover {
  border-color: #c7d2fe;
  background: #f1f5f9;
}

.domain-row>span:first-child {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}

.domain-row .text-end {
  display: flex;
  align-items: center;
  gap: 12px;
}

.domain-row .text--info.fw-bold {
  color: #ef4444 !important;
  font-size: 14px;
  font-weight: 700;
}

.domain-row .fw-bold {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.domain-row .btn.btn--sm.btn--base {
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px !important;
  height: auto;
  background: #4f46e5 !important;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.domain-row .btn.btn--sm.btn--base:hover {
  background: #4338ca !important;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
  transform: translateY(-1px);
}

.domain-row .btn.btn--sm.btn--base-outline {
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px !important;
  height: auto;
  border: 2px solid #4f46e5;
  color: #4f46e5 !important;
  background: transparent !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.domain-row .btn.btn--sm.btn--base-outline:hover {
  background: #4f46e5 !important;
  color: #fff !important;
}

/* Availability message area */
.domainArea .availability {
  margin-top: 16px;
}

.domainArea .availability h3 {
  font-size: 20px;
  font-weight: 700;
}

.domainArea .availability .text--base {
  color: #10b981 !important;
}

.domainArea .availability .text--danger {
  color: #ef4444 !important;
}

/* HideElement and transitions */
.hideElement {
  transition: all 0.3s ease;
}

/* Domain search loading */
.domainArea .availability h5 {
  font-size: 16px;
  color: #64748b;
  font-weight: 600;
}

/* Error messages */
.domainArea .availability .text--danger {
  color: #ef4444 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .domainArea .row.g-2>div {
    margin-bottom: 8px;
  }

  .domainArea .btn.btn--base {
    border-radius: 10px !important;
    width: 100%;
  }

  .domain-row {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .domain-row .text-end {
    width: 100%;
    justify-content: space-between;
  }
}

/* ============================================
   PRODUCT CONFIGURE FORM — AFTER DOMAIN PICKER
   ============================================ */

/* Main form card */
.col-md-12.hideElement .card,
.col-md-12 .card {
  border: 1px solid #e9edf4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.col-md-12.hideElement .card .card-header,
.col-md-12 .card .card-header {
  background: #f8fafc;
  border-bottom: 1px solid #e9edf4;
  padding: 16px 20px;
}

.col-md-12.hideElement .card .card-header h5,
.col-md-12 .card .card-header h5 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.col-md-12.hideElement .card .card-body,
.col-md-12 .card .card-body {
  padding: 20px;
}

/* Product description */
.col-md-12.hideElement .fs-12 {
  font-size: 14px !important;
  line-height: 1.7;
  color: #475569;
}

/* Form labels */
.col-md-12.hideElement .form-group label,
.col-md-12 .form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
  display: block;
}

/* Select dropdowns */
.col-md-12.hideElement select.form--control,
.col-md-12 select.form--control,
.col-md-12.hideElement input.form--control,
.col-md-12 input.form--control {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 15px;
  height: 46px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.col-md-12.hideElement select.form--control:focus,
.col-md-12 select.form--control:focus,
.col-md-12.hideElement input.form--control:focus,
.col-md-12 input.form--control:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
  outline: none;
}

/* Order Summary Sidebar */
.col-lg-4 .card {
  border: 1px solid #e9edf4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 20px;
}

.col-lg-4 .card .card-header {
  color: #fff;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
}

.col-lg-4 .card .card-body {
  padding: 20px;
  background: #fff;
}

.col-lg-4 .card .card-body b {
  font-size: 15px;
  color: #0f172a;
}

.col-lg-4 .card .card-body .fst-italic {
  font-size: 13px;
  color: #64748b;
}

.col-lg-4 .card .d-flex.justify-content-between {
  padding: 8px 0;
  font-size: 14px;
  color: #475569;
}

.col-lg-4 .card .d-flex.justify-content-between span:last-child {
  font-weight: 600;
  color: #0f172a;
}

.col-lg-4 .card .calculatePrice {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid #e2e8f0;
}

.col-lg-4 .card .calculatePrice .d-flex {
  padding: 6px 0;
}

.col-lg-4 .card .border-top.mt-2.pt-4 {
  padding-top: 16px !important;
  margin-top: 12px !important;
  border-top: 1px solid #e2e8f0 !important;
}

.col-lg-4 .card .border-top.mt-2.pt-4 h5 {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}

.col-lg-4 .card .border-top.mt-2.pt-4 .finalAmount {
  color: #4f46e5;
}

/* Configurable options display */
.configurablePrice .d-flex {
  padding: 4px 0;
  font-size: 13px;
  color: #64748b;
}

.configurablePrice .d-flex span:last-child {
  font-weight: 600;
  color: #0f172a;
}

/* Continue button */
.btn.bg--base.btn-lg.text-white.w-100 {
  background: #4f46e5 !important;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #fff !important;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.bg--base.btn-lg.text-white.w-100:hover {
  background: #4338ca !important;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.3);
  transform: translateY(-2px);
}

/* Configure Server section */
.col-md-12.mt-5 h5.text-center {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

/* Section header for "Product Configure" */
.col-md-12.form-group h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.col-md-12.form-group p.mt-1 {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

/* ==========================================
   PREMIUM FASTEST CARD — Hero Section
   Inspired by the user's premium card design
   ========================================== */

.nh-premium-card {
  position: relative;
  width: 340px;
  background: linear-gradient(145deg, #fffef0 0%, #f8f9ff 100%);
  border-radius: 20px;
  padding: 35px 30px 25px 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nh-premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Corner ribbon */
.nh-premium-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  overflow: hidden;
  pointer-events: none;
}

.nh-premium-ribbon span {
  position: absolute;
  top: 18px;
  right: -28px;
  width: 140px;
  background: #facc15;
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding: 6px 0;
  transform: rotate(45deg);
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  z-index: 2;
}

/* Title */
.nh-premium-title {
  font-size: 26px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 20px;
}

.nh-premium-title-highlight {
  font-weight: 800;
  color: #1e293b;
}

/* Features list */
.nh-premium-features {
  list-style: none;
  margin: 0 0 25px 0;
  padding: 0;
}

.nh-premium-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #475569;
}

.nh-premium-icon {
  font-size: 14px;
  flex-shrink: 0;
}

.nh-premium-icon--check {
  color: #22c55e;
  font-weight: bold;
}

.nh-premium-icon--bolt {
  color: #eab308;
}

.nh-premium-bold {
  font-weight: 700;
  color: #334155;
}

.nh-premium-badge {
  background: #facc15;
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nh-premium-cpanel {
  color: #f97316;
  font-weight: 700;
  font-style: italic;
  font-size: 15px;
}

/* Price */
.nh-premium-pricing {
  margin-bottom: 20px;
}

.nh-premium-price {
  font-size: 42px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1;
}

.nh-premium-currency {
  font-size: 16px;
  font-weight: 600;
  color: #64748b;
  margin-left: 4px;
}

.nh-premium-period {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
}

/* Divider */
.nh-premium-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
  margin-bottom: 20px;
}

/* Button */
.nh-premium-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 0;
  background: #facc15;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(250, 204, 21, 0.3);
  text-decoration: none;
}

.nh-premium-btn:hover {
  background: #eab308;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250, 204, 21, 0.4);
  color: #1a1a1a !important;
}

.nh-premium-btn-cart {
  font-size: 16px;
}

.nh-premium-btn-line {
  width: 1px;
  height: 16px;
  background: rgba(0,0,0,0.2);
}

.nh-premium-btn-icons {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 16px;
}

/* Empty state */
.nh-premium-card--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
}

.nh-premium-empty-text {
  color: rgba(0,0,0,0.3);
  font-size: 0.9rem;
  margin-top: 120px;
}

/* Hero column sizing */
.col-lg-5 .nh-premium-card {
  width: 100%;
  max-width: 340px;
}

@media (max-width: 992px) {
  .col-lg-5 .nh-premium-card {
    max-width: 340px;
  }
}

/* ==========================================
   USER LIST TABLES — Card Style Wrapper
   Applied to table inside section-full
   without changing any existing colors
   ========================================== */

.bg--light.section-full .table {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02);
}

.bg--light.section-full .table thead tr th:first-child {
  border-radius: 0;
}

.bg--light.section-full .table thead tr th:last-child {
  border-radius: 0;
}

/* Add subtle top border-radius to header */
.bg--light.section-full .table thead tr:first-child th:first-child {
  border-top-left-radius: 12px;
}

.bg--light.section-full .table thead tr:first-child th:last-child {
  border-top-right-radius: 12px;
}

/* Row hover effect */
.bg--light.section-full .table tbody tr:hover {
  background: hsl(var(--base)/0.03);
}

/* Pagination spacing inside section-full */
.bg--light.section-full .mt-5 {
  margin-top: 1.5rem !important;
}

/* Responsive: keep table background consistent */
@media (max-width: 767px) {
  .bg--light.section-full .table--responsive--md tbody tr td {
    background-color: hsl(var(--white));
  }
}

@media (max-width: 991px) {
  .bg--light.section-full .table--responsive--lg tbody tr td {
    background-color: hsl(var(--white));
  }
}

/* ==========================================
   USER LIST TABLES — Bigger & Bolder Text
   ========================================== */

.bg--light.section-full .table {
  font-size: 16px;
}

.bg--light.section-full .table thead tr th {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.bg--light.section-full .table tbody tr td {
  font-size: 16px;
  font-weight: 600;
}

.bg--light.section-full .table tbody tr td a:not(.badge) {
  font-weight: 700;
}

.bg--light.section-full .table .fw-bold,
.bg--light.section-full .table strong {
  font-weight: 800 !important;
}