/* ============================================
   NzuHosting - Custom WHMCS Template
   Tanzania's #1 Choice for Web Hosting
   NO GRADIENTS - Clean Flat Design
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --blue-900: #0e1c28;
  --blue-800: #152736;
  --blue-700: #1a3247;
  --blue-600: #204056;
  --blue-500: #274961;
  --blue-400: #3a6585;
  --blue-300: #5a8aab;
  --blue-200: #8db5d1;
  --blue-100: #c8dde9;
  --blue-50: #e8f1f7;

  --red-700: #9e1830;
  --red-600: #C51E3A;
  --red-500: #d4273b;
  --red-400: #e04555;
  --red-300: #e8707d;
  --red-200: #f0a0a9;
  --red-100: #f8d0d4;
  --red-50: #fef0f1;

  --neutral-900: #111827;
  --neutral-800: #1f2937;
  --neutral-700: #374151;
  --neutral-600: #4b5563;
  --neutral-500: #6b7280;
  --neutral-400: #9ca3af;
  --neutral-300: #d1d5db;
  --neutral-200: #e5e7eb;
  --neutral-100: #f3f4f6;
  --neutral-50: #f9fafb;
  --white: #ffffff;

  --green-600: #059669;
  --green-500: #10b981;
  --green-100: #d1fae5;

  --amber-500: #E59612;
  --amber-100: #fef3c7;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --font-menu: 'Nunito', sans-serif;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-xl: 0 12px 40px rgba(0,0,0,0.14);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --max-width: 1200px;
  --header-height: 72px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-700);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--blue-600);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
  text-decoration: none;
  color: var(--blue-600);
  transition: color 0.2s;
}
a:hover { color: var(--red-500); }

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

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-red { color: var(--red-500); }
.text-blue { color: var(--blue-600); }
.text-muted { color: var(--neutral-500); }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--neutral-500);
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto 48px;
}

.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge--red {
  background: var(--red-50);
  color: var(--red-600);
}
.badge--blue {
  background: var(--blue-50);
  color: var(--blue-600);
}
.badge--green {
  background: var(--green-100);
  color: var(--green-600);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-menu);
  font-size: 0.9375rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
}

.btn--primary {
  background: var(--amber-500);
  color: var(--white);
  border-color: var(--amber-500);
}
.btn--primary:hover {
  background: #cf840f;
  border-color: #cf840f;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: var(--amber-500);
  color: var(--white);
  border-color: var(--amber-500);
}
.btn--secondary:hover {
  background: #cf840f;
  border-color: #cf840f;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--amber-500);
  border-color: var(--amber-500);
}
.btn--outline:hover {
  background: var(--amber-500);
  color: var(--white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--amber-500);
  border-color: var(--amber-500);
}
.btn--outline-dark:hover {
  background: var(--amber-500);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--amber-500);
  border-color: transparent;
  padding: 8px 16px;
}
.btn--ghost:hover {
  background: #fff7e8;
  color: var(--amber-500);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.0625rem;
}

.btn--sm {
  padding: 8px 20px;
  font-size: 0.8125rem;
}

.btn--block {
  width: 100%;
}

/* --- Top Bar --- */
.topbar {
  background: var(--blue-900);
  color: var(--blue-200);
  font-size: 0.8125rem;
  padding: 8px 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar__left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar__left a {
  color: var(--blue-200);
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar__left a:hover { color: var(--white); }
.topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar__right a {
  color: var(--blue-200);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-family: var(--font-menu);
}
.topbar__right a:hover { color: var(--white); }
.topbar__right .btn--sm {
  background: var(--red-500);
  color: var(--white);
  border: none;
  padding: 6px 18px;
  font-size: 0.8125rem;
}
.topbar__right .btn--sm:hover {
  background: var(--red-700);
  color: var(--white);
}

/* --- Header / Navbar --- */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--neutral-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header__logo img {
  max-height: 44px;
  max-width: 240px;
  width: auto;
}
.header__logo span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-600);
}
.header__logo span em {
  color: var(--red-500);
  font-style: normal;
}

.nav { display: flex; align-items: center; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__item { position: relative; }
.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-family: var(--font-menu);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--neutral-700);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav__link:hover,
.nav__link--active {
  color: var(--red-500);
  background: var(--red-50);
}
.nav__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 100;
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__item:hover .nav__link svg {
  transform: rotate(180deg);
}
.nav__dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--neutral-700);
  font-family: var(--font-menu);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.15s;
}
.nav__dropdown-link:hover {
  background: var(--blue-50);
  color: var(--blue-600);
}
.nav__dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-50);
  color: var(--blue-600);
  flex-shrink: 0;
}
.nav__dropdown-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--neutral-500);
  margin-top: 2px;
}

.nav__cta {
  margin-left: 16px;
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--blue-600);
  border-radius: 2px;
  transition: all 0.3s;
}

/* --- Hero Section --- */
.hero {
  background: var(--blue-600);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: var(--blue-500);
  border-radius: 50%;
  opacity: 0.3;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: var(--blue-700);
  border-radius: 50%;
  opacity: 0.3;
}
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--blue-100);
}
.hero h1 {
  color: var(--white);
  font-size: 3.25rem;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero p {
  font-size: 1.25rem;
  color: var(--blue-200);
  margin-bottom: 40px;
}

/* Domain Search Box */
.domain-search {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 8px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-xl);
  max-width: 640px;
  margin: 0 auto 24px;
}
.domain-search__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--neutral-800);
  background: transparent;
}
.domain-search__input::placeholder {
  color: var(--neutral-400);
}
.domain-search__btn {
  padding: 14px 32px;
  border-radius: var(--radius-md);
}

.domain-extensions {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.domain-ext {
  text-align: center;
  color: var(--blue-200);
}
.domain-ext__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  display: block;
  color: var(--white);
}
.domain-ext__price {
  font-size: 0.8125rem;
  display: block;
}

/* --- Legacy Homepage Styling (WP-like) --- */
.hero--legacy {
  background: #f9f9ff;
  color: var(--neutral-700);
  padding: 72px 0 56px;
}
.hero--legacy::before {
  top: 18%;
  right: -130px;
  width: 360px;
  height: 360px;
  background: #ece9fb;
  opacity: 0.8;
}
.hero--legacy::after {
  bottom: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: #ece9fb;
  opacity: 0.8;
}
.hero--legacy h1 {
  color: #1b2e5a;
  font-size: 4.2rem;
  line-height: 1.05;
  margin-bottom: 14px;
  text-transform: none;
}
.hero--legacy p {
  color: #6f7790;
  font-size: 1.22rem;
  margin-bottom: 28px;
}
.domain-search--legacy {
  max-width: 760px;
  border-radius: 20px;
  border: 1px solid #d7d7e8;
  padding: 10px;
  position: relative;
  z-index: 3;
}
.domain-search--legacy::before {
  content: '';
  width: 34px;
  height: 50px;
  border-radius: 20px;
  background: #f4a621;
  position: absolute;
  left: 10px;
  top: 10px;
}
.domain-search--legacy .domain-search__input {
  padding-left: 78px;
  background: #f7f2e7;
  border-radius: 14px;
}
.btn--legacy-accent {
  background: var(--amber-500);
  border-color: var(--amber-500);
  color: #fff;
}
.btn--legacy-accent:hover {
  background: #cf840f;
  border-color: #cf840f;
  color: #fff;
}
.domain-extensions--legacy {
  background: #fff;
  border: 1px solid #d7d7e8;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 16px 30px rgba(31,41,55,0.2);
  margin-top: -2px;
  padding: 14px 20px;
  max-width: 760px;
  position: relative;
  z-index: 3;
}
.domain-extensions--legacy .domain-ext {
  display: inline-flex;
  gap: 6px;
}
.domain-extensions--legacy .domain-ext__name {
  color: #d4273b;
  font-size: 1.05rem;
}
.domain-extensions--legacy .domain-ext__price {
  color: var(--amber-500);
  font-size: 1.05rem;
}
.hero-services-title {
  margin: 44px 0 16px;
  color: #1b2e5a;
  text-align: center;
  font-size: 3rem;
  position: relative;
  z-index: 3;
}
.service-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 3;
}
.service-pill {
  background: #d4273b;
  color: #fff;
  border-radius: 999px;
  padding: 12px 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}
.service-pill--active {
  background: #232530;
}
.service-pill:hover {
  color: #fff;
  opacity: 0.95;
}
.hero-legacy-art {
  position: absolute;
  right: -110px;
  top: 78px;
  width: 300px;
  opacity: 0.9;
  z-index: 1;
  pointer-events: none;
}

.legacy-intro {
  padding-top: 72px;
  padding-bottom: 72px;
}
.legacy-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}
.legacy-intro__kicker {
  color: var(--red-500);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.95rem;
}
.legacy-intro h2 {
  margin: 8px 0 18px;
  color: #1b2e5a;
  font-size: 3.1rem;
}
.legacy-intro p {
  color: #5d6785;
  font-size: 1.33rem;
  line-height: 1.6;
  margin-bottom: 22px;
}
.legacy-intro__image img {
  max-width: 460px;
  margin: 0 auto;
}

/* --- Homepage Reveal Motion --- */
.nz-reveal-onload,
.nz-reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(3px);
  transition:
    opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.78s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--nz-delay, 0ms);
  will-change: transform, opacity, filter;
}

.nz-reveal-onload.is-visible,
.nz-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.legacy-intro__image.nz-reveal {
  transform: translateX(34px) translateY(18px) scale(0.985);
}

.standards__image.nz-reveal {
  transform: translateX(-34px) translateY(18px) scale(0.985);
}

.included-item.nz-reveal {
  transform: translateY(18px) scale(0.98);
}

.feature-card.nz-reveal,
.testimonial-card.nz-reveal,
.pricing-card.nz-reveal {
  transform: translateY(22px) scale(0.985);
}

.stats__grid > div.nz-reveal {
  transform: translateY(26px) scale(0.97);
}

@media (prefers-reduced-motion: reduce) {
  .nz-reveal-onload,
  .nz-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.services-grid--three {
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
.service-card:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}
.service-card__icon--blue {
  background: var(--blue-50);
  color: var(--blue-600);
}
.service-card__icon--red {
  background: var(--red-50);
  color: var(--red-600);
}
.service-card__icon--green {
  background: var(--green-100);
  color: var(--green-600);
}
.service-card__icon--amber {
  background: var(--amber-100);
  color: var(--amber-500);
}
.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--neutral-500);
  margin-bottom: 20px;
}
.service-card__link {
  font-family: var(--font-menu);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--red-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card__link:hover {
  gap: 10px;
  color: var(--red-700);
}

/* --- Pricing Cards --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s ease;
}
.pricing-card:hover {
  border-color: var(--blue-400);
  box-shadow: var(--shadow-lg);
}
.pricing-card--featured {
  border-color: var(--red-600);
  box-shadow: var(--shadow-lg);
}
.pricing-card--inverse {
  background: var(--blue-700);
  border-color: var(--blue-700);
}
.pricing-card--inverse .pricing-card__header {
  border-bottom-color: rgba(255,255,255,0.15);
}
.pricing-card--inverse .pricing-card__name,
.pricing-card--inverse .pricing-card__price,
.pricing-card--inverse .pricing-card__currency {
  color: var(--amber-500);
}
.pricing-card--inverse .pricing-card__price span,
.pricing-card--inverse .pricing-card__period,
.pricing-card--inverse .pricing-card__target,
.pricing-card--inverse .pricing-card__features li {
  color: var(--blue-100);
}
.pricing-card--inverse .pricing-card__features li svg {
  color: var(--white);
}
.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber-500);
  color: var(--white);
  padding: 4px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-card__header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--neutral-200);
  margin-bottom: 24px;
}
.pricing-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--blue-600);
  margin-bottom: 4px;
}
.pricing-card__target {
  font-size: 0.8125rem;
  color: var(--neutral-500);
  margin-bottom: 16px;
}
.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--amber-500);
  line-height: 1;
}
.pricing-card__price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--amber-500);
}
.pricing-card__currency {
  font-size: 1.125rem;
  font-weight: 700;
  vertical-align: super;
}
.pricing-card__period {
  display: block;
  font-size: 0.8125rem;
  color: var(--amber-500);
  margin-top: 4px;
  font-weight: 400;
}

.pricing-card__features {
  margin-bottom: 28px;
}
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--neutral-600);
}
.pricing-card__features li svg {
  width: 18px;
  height: 18px;
  color: var(--green-600);
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-card__features li.disabled {
  color: var(--neutral-400);
  text-decoration: line-through;
}
.pricing-card__features li.disabled svg {
  color: var(--neutral-300);
}

/* --- Stats Section --- */
.stats {
  background: var(--blue-600);
  padding: 60px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}
.stat__label {
  font-size: 0.875rem;
  color: var(--blue-200);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-100);
  transition: all 0.2s;
}
.feature-card:hover {
  background: var(--neutral-50);
  border-color: var(--neutral-200);
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  background: var(--blue-50);
  color: var(--blue-600);
}
.feature-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--blue-800);
}
.feature-card p {
  font-size: 0.8125rem;
  color: var(--neutral-500);
  margin: 0;
}

/* --- CTA Section --- */
.cta {
  background: var(--blue-900);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);
  background: var(--blue-800);
  border-radius: 50%;
  opacity: 0.5;
}
.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta p {
  color: var(--blue-300);
  font-size: 1.125rem;
  margin-bottom: 32px;
}
.cta .btn {
  margin: 0 8px;
}

/* --- Domain Pricing Table --- */
.domain-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--neutral-200);
}
.domain-table thead th {
  background: var(--blue-600);
  color: var(--white);
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}
.domain-table tbody td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--neutral-100);
  font-size: 0.9375rem;
}
.domain-table tbody tr:last-child td {
  border-bottom: none;
}
.domain-table tbody tr:hover {
  background: var(--blue-50);
}
.domain-table .ext-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--blue-600);
  font-size: 1.0625rem;
}
.domain-table .ext-price {
  font-weight: 700;
  color: var(--amber-500);
}

.header .nav__cta {
  background: var(--red-500);
  border-color: var(--red-500);
  color: #fff;
}

.header .nav__cta:hover {
  background: var(--red-700);
  border-color: var(--red-700);
  color: #fff;
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--neutral-50);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}
.contact-info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--blue-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.contact-info-card h4 {
  font-size: 0.9375rem;
  margin-bottom: 4px;
}
.contact-info-card p {
  font-size: 0.875rem;
  color: var(--neutral-600);
  margin: 0;
}
.contact-info-card a {
  color: var(--red-600);
  font-weight: 600;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--neutral-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--neutral-800);
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(32,64,86,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* --- Footer --- */
.footer {
  background: var(--blue-900);
  color: var(--blue-200);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer__col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer__col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: var(--red-600);
  border-radius: 2px;
}
.footer__col ul li {
  margin-bottom: 10px;
}
.footer__col ul li a {
  color: var(--blue-300);
  font-size: 0.875rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--blue-300);
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
}
.footer__contact-item svg {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--red-500);
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--blue-800);
  color: var(--blue-300);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.footer__social a:hover {
  background: var(--red-600);
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid var(--blue-800);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}
.footer__bottom-links {
  display: flex;
  gap: 24px;
}
.footer__bottom-links a {
  color: var(--blue-400);
}
.footer__bottom-links a:hover { color: var(--white); }

/* --- About / Company Page --- */
.about-hero {
  background: var(--blue-600);
  padding: 80px 0 60px;
  text-align: center;
}
.about-hero h1 { color: var(--white); margin-bottom: 16px; }
.about-hero p { color: var(--blue-200); font-size: 1.125rem; max-width: 640px; margin: 0 auto; }

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-content h2 {
  margin-bottom: 16px;
}
.about-content p {
  color: var(--neutral-600);
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-100);
}
.value-card__icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.value-card h4 {
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.875rem;
  color: var(--neutral-500);
  margin: 0;
}

/* --- Page Header (inner pages) --- */
.page-header {
  background: var(--blue-600);
  padding: 60px 0 50px;
  text-align: center;
}
.page-header h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.page-header p {
  color: var(--blue-200);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}
.page-header .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.875rem;
}
.page-header .breadcrumb a { color: var(--blue-300); }
.page-header .breadcrumb span { color: var(--blue-200); }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.testimonial-card__stars {
  color: var(--amber-500);
  font-size: 1.125rem;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-style: italic;
  color: var(--neutral-600);
  margin-bottom: 20px;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--blue-600);
  font-size: 1rem;
}
.testimonial-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--blue-800);
}
.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--neutral-500);
}

/* --- Included Features Strip --- */
.included-strip {
  background: var(--neutral-50);
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
  padding: 40px 0;
}
.included-strip__inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.included-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--neutral-700);
}
.included-item svg {
  color: var(--green-600);
  width: 20px;
  height: 20px;
}

/* --- Standards Section --- */
.standards {
  background: var(--neutral-50);
}
.standards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.standards__image img {
  max-height: 520px;
  margin: 0 auto;
}
.standards__title {
  text-align: left;
  margin-bottom: 24px;
}
.standards-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
}
.standards-card + .standards-card {
  margin-top: 18px;
}
.standards-card--highlight {
  border-color: var(--red-100);
}
.standards-card h3 {
  margin-bottom: 10px;
  color: var(--blue-800);
}
.standards-card--highlight h3 {
  color: var(--red-600);
}
.standards-card p {
  margin: 0;
  color: var(--neutral-600);
}
.standards-card a {
  color: var(--red-600);
  font-weight: 700;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid--three { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .standards__grid { grid-template-columns: 1fr; gap: 30px; }
  .standards__content { max-width: 760px; margin: 0 auto; }
  .standards__title { text-align: center; }
  .hero--legacy h1 { font-size: 3.3rem; }
  .hero--legacy p { font-size: 1.35rem; }
  .hero-services-title { font-size: 2.3rem; }
  .legacy-intro__grid { grid-template-columns: 1fr; }
  .legacy-intro h2 { font-size: 2.3rem; }
  .legacy-intro p { font-size: 1.1rem; }
  .hero-legacy-art { width: 220px; right: -120px; top: 96px; opacity: 0.75; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  .hero h1 { font-size: 2.25rem; }
  .hero { padding: 60px 0 50px; }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 1105;
    min-height: 52px;
    padding: 0;
  }
  .topbar__inner {
    justify-content: center;
    min-height: 52px;
  }
  .topbar__right {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }
  .topbar__right a {
    justify-content: center;
    padding: 6px 12px;
  }

  .header {
    top: 52px;
    min-height: var(--header-height);
    height: auto;
  }
  .header__inner {
    min-height: var(--header-height);
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .header__logo img {
    max-height: 38px;
  }
  .hero--legacy {
    padding-top: 76px;
    overflow-x: clip;
  }
  .hero--legacy::before,
  .hero--legacy::after {
    display: none;
  }
  .legacy-intro,
  .section,
  .cta {
    overflow-x: clip;
  }
  .nz-reveal-onload,
  .nz-reveal {
    filter: none;
    transform: none;
  }

  .topbar__left { display: none; }

  .nav__toggle { display: flex; }
  .nav__list {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-lg);
    gap: 0;
  }
  .nav__list.active { display: flex; }
  .nav__link { width: 100%; padding: 12px 16px; }
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 16px;
    display: none;
  }
  .nav__item:hover .nav__dropdown,
  .nav__item.open .nav__dropdown {
    display: block;
  }
  .nav__cta {
    display: none;
    margin: 16px 0 0;
  }

  .services-grid { grid-template-columns: 1fr; }
  .services-grid--three { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .domain-search { flex-direction: column; }
  .domain-search__btn { width: 100%; }
  .domain-extensions { gap: 16px; }
  .domain-search--legacy .domain-search__input { padding-left: 18px; }
  .domain-search--legacy::before { display: none; }
  .domain-extensions--legacy { border-radius: 0 0 16px 16px; }
  .hero-services-title { font-size: 1.9rem; margin-top: 34px; }
  .service-pills { gap: 10px; }
  .service-pill { width: 100%; text-align: center; }
  .hero-legacy-art { display: none; }
  .legacy-intro { padding-top: 48px; padding-bottom: 48px; }
  .legacy-intro h2 { font-size: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .included-strip__inner { gap: 24px; }
  .standards-card { padding: 22px; }

  .section { padding: 60px 0; }
  .stats { padding: 40px 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }

  .cta .btn {
    display: flex;
    width: min(100%, 320px);
    margin: 0 auto 12px;
  }
  .cta .btn:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  .hero h1 { font-size: 1.75rem; }
  .hero--legacy h1 { font-size: 2.25rem; }
  .hero--legacy p { font-size: 1.05rem; }
  .container { padding: 0 16px; }
  .pricing-card { padding: 24px 20px; }
  .footer__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
}
