:root {
  --bg: #f4f7fc;
  --bg-white: #ffffff;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-soft: #eef2f9;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --text: #0f172a;
  --text-muted: #64748b;
  --brand: #059980;
  --primary: #059980;
  --primary-hover: #047a66;
  --primary-soft: rgba(5, 153, 128, 0.08);
  --accent: #059980;
  --accent-soft: rgba(5, 153, 128, 0.12);
  --success: #059980;
  --danger: #dc2626;
  --gradient: linear-gradient(135deg, #047a66 0%, #059980 55%, #06b894 100%);
  --gradient-warm: linear-gradient(135deg, #047a66 0%, #059980 100%);
  --footer-bg: linear-gradient(90deg, #1d283a, #222f44 45.83%, #2b3b55);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow: 0 12px 40px -12px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 48px -16px rgba(15, 23, 42, 0.18);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --mono: "JetBrains Mono", monospace;
  --header-top-h: 40px;
  --header-h: 76px;
  --header-total: calc(var(--header-top-h) + var(--header-h));
  --container: min(1180px, 92vw);
  --surface: var(--bg-white);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 50% at 10% -5%, rgba(5, 153, 128, 0.06), transparent),
    radial-gradient(ellipse 50% 40% at 95% 10%, rgba(5, 153, 128, 0.04), transparent),
    linear-gradient(180deg, var(--bg-white) 0%, var(--bg) 40%, var(--bg) 100%);
  pointer-events: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-white);
}

.header-wrap {
  position: relative;
}

.header-top {
  height: var(--header-top-h);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  height: 100%;
  min-height: var(--header-top-h);
}

.header-top-locale {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
}

.locale-prefs-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: min(22rem, 100%);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.35rem 0.65rem;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
}

.locale-prefs-trigger:hover,
.locale-prefs-trigger[aria-expanded="true"] {
  border-color: var(--primary);
  color: var(--primary);
}

.locale-prefs-trigger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
}

.locale-prefs-icon {
  color: var(--primary);
  font-size: 0.85em;
  flex-shrink: 0;
}

.locale-prefs-summary {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.locale-prefs-chevron {
  font-size: 0.65em;
  opacity: 0.65;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.locale-prefs-trigger[aria-expanded="true"] .locale-prefs-chevron {
  transform: rotate(180deg);
}

.locale-prefs-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.locale-prefs-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.locale-prefs-panel {
  position: fixed;
  z-index: 1210;
  background: var(--bg-white);
  border: 1px solid var(--border);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.22s ease, visibility 0.2s;
}

.locale-prefs-panel.open {
  opacity: 1;
  visibility: visible;
}

.locale-prefs-panel-inner {
  padding: 1.15rem 1.25rem 1.25rem;
}

.locale-prefs-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.locale-prefs-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.locale-prefs-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.locale-prefs-close:hover {
  background: var(--primary-soft);
  color: var(--primary);
}

.locale-prefs-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.locale-prefs-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.locale-prefs-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.locale-prefs-select {
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
  width: 100%;
}

.locale-prefs-select:focus {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
}

.locale-prefs-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

body.locale-prefs-open {
  overflow: hidden;
}

@media (min-width: 769px) {
  .locale-prefs-panel {
    top: calc(var(--header-top-h) + 0.35rem);
    right: max(1rem, calc((100vw - 1180px) / 2 + 1rem));
    width: min(320px, calc(100vw - 2rem));
    border-radius: 12px;
    transform: translateY(-8px);
  }

  .locale-prefs-panel.open {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .locale-prefs-panel {
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
  }

  .locale-prefs-panel.open {
    transform: translateY(0);
  }

  .locale-prefs-trigger {
    width: 100%;
    max-width: none;
    justify-content: center;
  }
}

.header-top-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-top-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}

.header-top-links a i {
  font-size: 0.85em;
  color: var(--primary);
  opacity: 0.88;
}

.header-top-links a:hover i {
  opacity: 1;
}

.header-top-links a:hover {
  color: var(--primary);
}

.header {
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
  flex-shrink: 0;
}

.logo img {
  height: 36px;
  width: auto;
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-accent {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links > li > a:not(.btn) {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-links > li > a:not(.btn):hover {
  color: var(--primary);
  background: var(--primary-soft);
}

.nav-links a.nav-active:not(.btn) {
  color: var(--primary);
  background: var(--primary-soft);
}

.nav-links a.btn.nav-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.currency-switch {
  display: inline-flex;
  align-items: center;
}

.lang-select,
.country-select,
.currency-select {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.3rem 0.45rem;
  cursor: pointer;
  max-width: 100%;
}

.lang-select:focus,
.country-select:focus,
.currency-select:focus {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
}

.header-top-locale .country-select {
  max-width: 10rem;
}

.header-top-locale .currency-select {
  font-family: var(--font);
  max-width: 6.75rem;
  min-width: 4.75rem;
}

.header-top-locale .lang-select {
  max-width: 8.5rem;
}

.nav-cta .btn {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  z-index: 110;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav dropdown (Hosting menu) */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.6;
}

.nav-dropdown-trigger:hover,
.nav-dropdown.open .nav-dropdown-trigger {
  color: var(--primary);
  background: var(--primary-soft);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 340px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
  list-style: none;
  margin: 0;
}

.nav-dropdown.open .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mega menu items (buyu.host style) */
.nav-mega-item {
  border-bottom: 1px solid var(--border);
}

.nav-mega-item:last-child {
  border-bottom: none;
}

.nav-mega-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  transition: background 0.15s;
}

.nav-mega-link:hover {
  background: var(--bg-soft);
}

.nav-mega-content {
  flex: 1;
  min-width: 0;
}

.nav-mega-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.nav-mega-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.nav-mega-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  border-radius: 12px;
  color: var(--primary);
}

.nav-mega-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-dropdown.is-active > .nav-dropdown-trigger {
  color: var(--primary);
  background: var(--primary-soft);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 14px rgba(5, 153, 128, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(5, 153, 128, 0.4);
}

.btn-outline {
  background: var(--bg-white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary-soft);
}

/* Hero */
.hero {
  padding: 2.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: var(--primary-soft);
  border: 1px solid rgba(5, 153, 128, 0.15);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--text);
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.trust-line strong {
  color: var(--success);
  font-weight: 700;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.hero-stats div {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.hero-stats span {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Domain card */
.domain-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.domain-card h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.domain-card-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.domain-card-sub a {
  color: var(--primary);
  font-weight: 600;
}

.domain-input-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.domain-input-wrap input {
  flex: 1;
  min-width: 140px;
  padding: 0.85rem 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.95rem;
}

.domain-input-wrap input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
  background: var(--bg-white);
}

.domain-input-wrap select {
  padding: 0.85rem 0.75rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font);
  font-weight: 600;
  cursor: pointer;
}

.domain-result {
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.domain-result.available {
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.25);
  color: var(--success);
}

.domain-result.unavailable {
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: var(--danger);
}

.domain-result.loading {
  background: var(--primary-soft);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.tld-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.tld-prices li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.5rem 0.75rem;
  background: var(--bg-soft);
  border-radius: 8px;
  min-width: 5rem;
}

.tld-prices span {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}

.tld-prices strong {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Section head */
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.section-head p {
  color: var(--text-muted);
  max-width: 42rem;
  margin-inline: auto;
}

/* Billing toggle */
.billing-toggle {
  display: inline-flex;
  margin-top: 1.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
}

.billing-toggle button {
  padding: 0.5rem 1.25rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}

.billing-toggle button.active {
  background: var(--bg-white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.save-tag {
  font-size: 0.68rem;
  background: rgba(5, 150, 105, 0.15);
  color: var(--success);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
  font-weight: 800;
}

/* Plans */
.plans {
  padding: 4rem 0 5rem;
  background: var(--bg-white);
  border-block: 1px solid var(--border);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.plan-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(5, 153, 128, 0.25);
}

.plan-card.featured {
  border-color: var(--primary);
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.plan-card.featured:hover {
  transform: scale(1.02) translateY(-6px);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-warm);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.plan-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.plan-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}

.plan-price {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.plan-price .currency {
  font-size: 0.9rem;
  color: var(--text-muted);
  vertical-align: top;
  font-weight: 600;
}

.plan-price .amount {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.plan-price .period {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.plan-features {
  flex: 1;
  margin-bottom: 1.5rem;
}

.plan-features li {
  padding: 0.45rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 800;
}

/* Features */
.features {
  padding: 5rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(5, 153, 128, 0.2);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: var(--primary-soft);
  border-radius: 12px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Company resources / support */
.company-resources {
  padding: 4.5rem 0 5rem;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}

.company-resources .section-head--center {
  text-align: center;
  margin-bottom: 2.5rem;
}

.company-resources .section-head--center h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.company-resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.company-resource {
  text-align: center;
  padding: 0 0.5rem;
}

.company-resource__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  margin-bottom: 1.25rem;
}

.company-resource__icon img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.company-resource h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
  color: var(--text);
}

.company-resource p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 16rem;
  margin-inline: auto;
}

/* Compare */
.compare {
  padding: 2rem 0 4rem;
}

.compare-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(5, 153, 128, 0.06), rgba(5, 153, 128, 0.03));
  border: 1px solid rgba(5, 153, 128, 0.15);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
}

.compare-box h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.compare-box p {
  color: var(--text-muted);
  max-width: 36rem;
}

/* FAQ (domains, hosting, contact pages) */
.faq {
  padding: 5rem 0;
}

.faq-list {
  max-width: 720px;
  margin-inline: auto;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 400;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact */
.contact {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.contact > div > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.contact-info li {
  padding: 0.5rem 0;
  color: var(--text-muted);
}

.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.85rem 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-white);
}

.form-feedback {
  text-align: center;
  font-size: 0.9rem;
  padding: 0.5rem;
  border-radius: 8px;
}

.form-feedback.success {
  background: rgba(5, 150, 105, 0.1);
  color: var(--success);
}

.form-feedback.error {
  background: rgba(220, 38, 38, 0.08);
  color: var(--danger);
}

/* Footer — see footer.css (loaded via layout.js) */

/* Inner pages: header is in document flow (sticky); no extra offset needed */
.page-hosting main {
  padding-top: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .plans-grid,
  .features-grid,
  .company-resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-card.featured {
    transform: none;
  }

  .plan-card.featured:hover {
    transform: translateY(-6px);
  }

  .nav-toggle {
    display: flex;
  }

  .header {
    backdrop-filter: none;
    background: var(--bg-white);
  }

  .nav-links {
    position: fixed;
    top: var(--header-nav-top, var(--header-total));
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.2rem;
    transform: translateY(-6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
    box-shadow: var(--shadow-lg);
    max-height: calc(100dvh - var(--header-nav-top, var(--header-total)));
    overflow-y: auto;
    z-index: 105;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links > li > a:not(.btn),
  .nav-dropdown-trigger {
    width: 100%;
    text-align: left;
    justify-content: flex-start;
  }

  .nav-links .btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.25rem;
  }

  .nav-cta {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
  }

  .nav-dropdown-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    display: none;
    min-width: 0;
    margin: 0.25rem 0 0.5rem;
    border-radius: var(--radius);
    background: var(--bg-soft);
  }

  .nav-dropdown.open .nav-dropdown-panel {
    display: block;
  }

  .nav-mega-link {
    padding: 0.75rem 1rem;
  }

  .nav-mega-icon {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-top-h: auto;
    --header-h: 64px;
  }

  .header-top-inner {
    flex-wrap: wrap;
    padding: 0.4rem 0;
    min-height: 0;
  }

  .header-top-links {
    flex: 1 1 100%;
    justify-content: center;
    gap: 0.85rem;
    font-size: 0.75rem;
  }

  .header-top-locale {
    flex: 1 1 100%;
    justify-content: center;
  }

  .locale-prefs-trigger {
    width: 100%;
    max-width: 20rem;
  }

  .logo img {
    height: 30px;
  }

  .hero {
    padding: 1.5rem 0 3rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .plans-grid,
  .features-grid,
  .company-resources-grid {
    grid-template-columns: 1fr;
  }

  .company-resources-grid {
    gap: 2rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.25rem;
  }

  .domain-input-wrap {
    flex-direction: column;
  }

  .domain-input-wrap .btn {
    width: 100%;
  }

  .plan-card.featured {
    transform: none;
  }

  .section-head {
    text-align: center;
  }

  .compare-box {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem 1.25rem;
  }

  .contact-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .contact-cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .header-top-links a:nth-child(2),
  .header-top-links a:nth-child(3) {
    display: none;
  }

  .header-top-locale {
    width: 100%;
  }

  .locale-prefs-trigger {
    max-width: none;
  }

  .container {
    width: min(1180px, 94vw);
  }
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .header,
body.nav-open .header-top {
  background: var(--bg-white);
  backdrop-filter: none;
}

/* WhatsApp floating action button */
.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  line-height: 1;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.whatsapp-fab:hover {
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
  filter: brightness(1.05);
}

.whatsapp-fab:focus-visible {
  outline: 3px solid #059980;
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .whatsapp-fab {
    right: 1rem;
    bottom: 1rem;
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.65rem;
  }
}
