/* =====================================================================
   SETUP RESELLER — PREMIUM HOSTING HOMEPAGE
   Pure CSS3. No frameworks.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. FONT FACE — GD Boing Bold (display face, used sparingly)
   --------------------------------------------------------------------- */
@font-face {
  font-family: 'GD Boing';
  src: url('assets/fonts/GD-Boing-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------------------------------------------------
   2. RESET
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { min-height: 100vh; overflow-x: hidden; width: 100%; }
img, svg { display: block; max-width: 100%; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input { outline: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------------------------------------------------------------------
   3. DESIGN TOKENS
   --------------------------------------------------------------------- */
:root {
  /* Brand palette */
  --c-primary: #4F46E5;
  --c-primary-dark: #4338CA;
  --c-secondary: #6366F1;
  --c-accent: #06B6D4;
  --c-accent-light: #22D3EE;
  --c-success: #10B981;
  --c-warning: #F59E0B;
  --c-danger: #EF4444;

  /* Neutrals */
  --c-ink: #111827;
  --c-gray: #6B7280;
  --c-gray-light: #9CA3AF;
  --c-border: #E5E7EB;
  --c-bg: #FFFFFF;
  --c-bg-light: #F9FAFB;
  --c-bg-card: #FFFFFF;

  /* Console / dark band */
  --c-navy-950: #0B0F19;
  --c-navy-900: #13182B;
  --c-navy-800: #1E1B4B;
  --c-navy-700: #312E81;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #4F46E5 0%, #6366F1 50%, #06B6D4 100%);
  --grad-primary-flat: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
  --grad-accent: linear-gradient(135deg, #06B6D4 0%, #22D3EE 100%);
  --grad-text: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
  --grad-dark: linear-gradient(180deg, #13182B 0%, #0B0F19 100%);

  /* Typography */
  --font-display: 'GD Boing', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(17,24,39,0.05);
  --shadow-md: 0 4px 16px rgba(17,24,39,0.06), 0 1px 3px rgba(17,24,39,0.04);
  --shadow-lg: 0 12px 32px rgba(79,70,229,0.10), 0 2px 8px rgba(17,24,39,0.04);
  --shadow-xl: 0 24px 64px rgba(79,70,229,0.16), 0 4px 16px rgba(17,24,39,0.06);
  --shadow-glow: 0 0 0 1px rgba(79,70,229,0.08), 0 8px 32px rgba(79,70,229,0.18);

  /* Radii */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;

  /* Spacing scale */
  --space-section: 120px;
  --space-section-mobile: 64px;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Container */
  --container-max: 1280px;

  color-scheme: light;
}

/* ---------------------------------------------------------------------
   DARK MODE TOKENS
   --------------------------------------------------------------------- */
body.dark-mode {
  --c-ink: #F3F4F6;
  --c-gray: #9CA3AF;
  --c-gray-light: #6B7280;
  --c-border: #27293D;
  --c-bg: #0B0F19;
  --c-bg-light: #11152200;
  --c-bg-light: #121728;
  --c-bg-card: #161B2E;
  --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 32px rgba(79,70,229,0.25), 0 2px 8px rgba(0,0,0,0.3);
  color-scheme: dark;
}

/* ---------------------------------------------------------------------
   4. BASE TYPOGRAPHY
   --------------------------------------------------------------------- */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-bg);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  transition: background 0.4s var(--ease-out-expo), color 0.4s var(--ease-out-expo);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}

p { color: var(--c-gray); }

.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------------------------------------------------------------------
   5. LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow { max-width: 820px; }

.section { padding: var(--space-section) 0; }
.section-light { background: var(--c-bg-light); }
.section-dark {
  background: var(--grad-dark);
  padding: var(--space-section) 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--c-primary);
  color: #fff;
  padding: 14px 22px;
  z-index: 9999;
  border-radius: 0 0 10px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2.5px solid var(--c-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background-image: radial-gradient(circle at 1px 1px, rgba(79,70,229,0.04) 1px, transparent 0);
  background-size: 32px 32px;
}

/* ---------------------------------------------------------------------
   6. SECTION HEAD
   --------------------------------------------------------------------- */
.section-head {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-primary);
  background: rgba(79,70,229,0.08);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.section-eyebrow-light { color: var(--c-accent-light); background: rgba(34,211,238,0.12); }
.section-title {
  font-size: clamp(28px, 3.4vw, 44px);
  margin-bottom: 18px;
}
.section-title-light { color: #fff; }
.section-desc { font-size: 18px; color: var(--c-gray); }
.section-desc-light { color: #B4B6D6; }

/* =====================================================================
   7. BUTTONS
   ===================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease-out-expo), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
  isolation: isolate;
}
.btn i { font-size: 0.85em; }
.btn:active { transform: scale(0.96); }

.btn-primary {
  background: var(--grad-primary-flat);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid var(--c-border);
}
.btn-outline:hover {
  border-color: var(--c-primary);
  background: rgba(79,70,229,0.05);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border: 1.5px solid transparent;
}
.btn-ghost:hover { background: var(--c-bg-light); }

.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-block { width: 100%; }

/* Ripple effect */
.ripple { }
.ripple .ripple-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(2.6); opacity: 0; }
}

/* =====================================================================
   8. HEADER / NAVIGATION
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
body.dark-mode .site-header { background: rgba(11,15,25,0.78); }
.site-header.scrolled {
  border-bottom-color: var(--c-border);
  box-shadow: 0 4px 24px rgba(17,24,39,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark { display: flex; }
.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.logo-text-light { color: #fff; }
.logo-text-accent { color: var(--c-primary); }
body.dark-mode .logo-text-accent { color: var(--c-accent-light); }

/* Main nav */
.main-nav { flex: 1; display: flex; justify-content: center; min-width: 0; }
.nav-list { display: flex; align-items: center; gap: 0; flex-wrap: nowrap; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink);
  border-radius: var(--radius-full);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.nav-link:hover { background: var(--c-bg-light); color: var(--c-primary); }
.nav-caret { font-size: 10px; transition: transform 0.25s ease; }
.nav-item.has-mega:hover .nav-caret { transform: rotate(180deg); }

/* Mega menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 620px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out-expo), transform 0.25s var(--ease-out-expo), visibility 0.25s;
  z-index: 10;
}
.nav-item.has-mega:hover .mega-menu,
.nav-item.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.mega-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius-md);
  transition: background 0.2s ease;
}
.mega-item:hover { background: var(--c-bg-light); }
.mega-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--mi-bg);
  color: var(--mi-fg);
  font-size: 17px;
}
.mega-item strong { display: block; font-size: 14.5px; font-weight: 600; color: var(--c-ink); }
.mega-item small { font-size: 12.5px; color: var(--c-gray); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  color: var(--c-ink);
  transition: background 0.2s ease;
}
.icon-btn:hover { background: var(--c-bg-light); }
.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  background: var(--c-danger);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-area-btn { display: inline-flex; padding: 11px 18px; font-size: 14px; }
.header-cta { padding: 11px 20px; font-size: 14px; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out-expo), opacity 0.3s ease;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-bg);
  z-index: 999;
  padding: 24px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out-expo);
  overflow-y: auto;
  display: none;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.mobile-nav-list a {
  display: block;
  padding: 14px 4px;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid var(--c-border);
}
.mobile-drawer-actions { display: flex; flex-direction: column; gap: 12px; }

/* =====================================================================
   9. HERO SECTION
   ===================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 88px;
  padding-bottom: 0;
}
.hero-bg-shapes { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.shape-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #6366F1, transparent 70%);
  top: -180px; right: -120px;
  animation: floatShape 14s ease-in-out infinite;
}
.shape-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #06B6D4, transparent 70%);
  bottom: -160px; left: -100px;
  animation: floatShape 18s ease-in-out infinite reverse;
}
.shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #4F46E5, transparent 70%);
  top: 40%; left: 50%;
  opacity: 0.18;
  animation: floatShape 22s ease-in-out infinite;
}
@keyframes floatShape {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px,-30px) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 100px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--c-primary);
  background: rgba(79,70,229,0.08);
  border: 1px solid rgba(79,70,229,0.15);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 26px;
}
.eyebrow i { color: var(--c-warning); }

.hero-heading {
  font-size: clamp(36px, 4.6vw, 60px);
  margin-bottom: 22px;
  color: var(--c-ink);
}

.hero-desc {
  font-size: 19px;
  color: var(--c-gray);
  max-width: 520px;
  margin-bottom: 34px;
  line-height: 1.65;
}

.hero-cta-row { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }

/* Domain search box */
.domain-search-box {
  display: flex;
  gap: 10px;
  background: var(--c-bg-card);
  border: 1.5px solid var(--c-border);
  padding: 8px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  max-width: 560px;
  margin-bottom: 18px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.domain-search-box:focus-within {
  border-color: var(--c-primary);
  box-shadow: var(--shadow-glow);
}
.domain-search-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
}
.domain-search-field i { color: var(--c-gray-light); }
.domain-search-field input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 0;
  font-size: 15px;
  color: var(--c-ink);
}
.domain-search-field input::placeholder { color: var(--c-gray-light); }
.domain-search-btn { flex-shrink: 0; }

.tld-chip-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.tld-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 8px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink);
  background: var(--c-bg-card);
  transition: border-color 0.2s ease, transform 0.2s var(--ease-spring), box-shadow 0.2s ease;
}
.tld-chip small { font-weight: 500; color: var(--c-gray); font-size: 11.5px; }
.tld-chip:hover {
  border-color: var(--c-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.tld-chip.active { border-color: var(--c-primary); background: rgba(79,70,229,0.06); }

.domain-search-result {
  font-size: 14.5px;
  font-weight: 500;
  min-height: 22px;
}
.domain-search-result.available { color: var(--c-success); }
.domain-search-result.taken { color: var(--c-danger); }

/* ---- Hero visual / control deck ---- */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.control-deck { position: relative; width: 100%; max-width: 480px; }
.server-illustration { width: 100%; height: auto; }

.float-slow { animation: floatY 6s ease-in-out infinite; }
.float-medium { animation: floatY 5s ease-in-out infinite; animation-delay: 0.5s; }
.float-fast { animation: floatY 4s ease-in-out infinite; animation-delay: 1s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.rotate-slow { transform-origin: 240px 290px; animation: rotateSlow 40s linear infinite; }
@keyframes rotateSlow { to { transform: rotate(360deg); } }

.pulse-unit { animation: unitGlow 3s ease-in-out infinite; animation-delay: var(--d); }
@keyframes unitGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.18); }
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  animation: floatY 6s ease-in-out infinite;
  z-index: 2;
}
body.dark-mode .float-card { background: rgba(22,27,46,0.85); border-color: rgba(255,255,255,0.08); }
.float-card strong { display: block; font-size: 17px; font-weight: 700; color: var(--c-ink); font-family: var(--font-mono); }
.float-card small { font-size: 11.5px; color: var(--c-gray); white-space: nowrap; }
.float-card-icon {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.float-card-icon.success { background: rgba(16,185,129,0.12); color: var(--c-success); }
.float-card-icon.accent { background: rgba(6,182,212,0.12); color: var(--c-accent); }
.float-card-icon.primary { background: rgba(79,70,229,0.12); color: var(--c-primary); }

.float-card-uptime { top: 4%; left: -8%; animation-delay: 0s; }
.float-card-speed { top: 38%; right: -10%; animation-delay: 1.5s; }
.float-card-servers { bottom: 6%; left: -6%; animation-delay: 0.8s; }

.ping-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--c-success);
  position: relative;
  margin-left: 4px;
}
.ping-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--c-success);
  animation: pingExpand 1.8s ease-out infinite;
}
@keyframes pingExpand {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.8); opacity: 0; }
}

/* Trusted strip */
.trusted-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--c-border);
  padding: 28px 0;
  background: rgba(249,250,251,0.6);
}
.trusted-strip-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trusted-label { font-size: 13px; color: var(--c-gray-light); font-weight: 500; flex-shrink: 0; }
.trusted-logos { display: flex; gap: 36px; flex-wrap: wrap; }
.trusted-logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px; color: var(--c-gray-light);
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}
.trusted-logo:hover { color: var(--c-primary); }

/* =====================================================================
   10. STATS SECTION
   ===================================================================== */
.stats-section {
  position: relative;
  z-index: 1;
  padding: 64px 0;
  background: var(--c-bg);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius-lg);
  background: var(--c-bg-light);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.stat-label { font-size: 14.5px; color: var(--c-gray); font-weight: 500; }

/* =====================================================================
   11. DOMAIN / TLD PRICING
   ===================================================================== */
.tld-pricing-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.tld-card {
  background: var(--c-bg-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: left;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.tld-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79,70,229,0.3);
}
.tld-card-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.tld-ext { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--c-ink); }
.tld-badge {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em;
  background: rgba(79,70,229,0.1); color: var(--c-primary);
  padding: 3px 9px; border-radius: var(--radius-full);
}
.tld-badge-hot { background: rgba(245,158,11,0.12); color: var(--c-warning); }
.tld-price { font-family: var(--font-mono); font-size: 14px; color: var(--c-gray); margin-bottom: 18px; }
.tld-price span { font-size: 22px; font-weight: 700; color: var(--c-ink); }

/* =====================================================================
   12. CATEGORY GRID (Hosting Categories)
   ===================================================================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.category-card {
  background: var(--c-bg-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease, border-color 0.35s ease;
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.category-icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px;
  background: var(--ci-bg); color: var(--ci-fg);
  margin-bottom: 20px;
  transition: transform 0.35s var(--ease-spring);
}
.category-card:hover .category-icon { transform: scale(1.1) rotate(-6deg); }
.category-card h3 { font-size: 19px; margin-bottom: 10px; }
.category-card p { font-size: 14.5px; line-height: 1.6; margin-bottom: 18px; min-height: 66px; }
.category-link {
  font-size: 14px; font-weight: 600; color: var(--c-primary);
  display: inline-flex; align-items: center; gap: 7px;
}
.category-link i { font-size: 11px; transition: transform 0.25s ease; }
.category-card:hover .category-link i { transform: translateX(4px); }

/* =====================================================================
   13. PRICING SECTION
   ===================================================================== */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
}
.toggle-label { font-size: 15px; font-weight: 600; color: var(--c-gray); }
.toggle-save {
  font-size: 11px; font-weight: 700;
  background: rgba(16,185,129,0.12); color: var(--c-success);
  padding: 3px 9px; border-radius: var(--radius-full);
  margin-left: 6px;
}
.toggle-switch {
  position: relative;
  width: 54px; height: 30px;
  background: var(--c-border);
  border-radius: var(--radius-full);
  transition: background 0.3s ease;
  flex-shrink: 0;
}
.toggle-switch[aria-checked="true"] { background: var(--c-primary); }
.toggle-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 24px; height: 24px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-spring);
}
.toggle-switch[aria-checked="true"] .toggle-knob { transform: translateX(24px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  background: var(--c-bg-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card-featured {
  background: var(--c-navy-800);
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: scale(1.04);
}
.pricing-card-featured:hover { transform: scale(1.04) translateY(-6px); }
.pricing-card-featured .plan-name,
.pricing-card-featured .price-amount,
.pricing-card-featured .price-currency,
.pricing-card-featured .price-period { color: #fff; }
.pricing-card-featured .plan-desc { color: #B4B6D6; }
.pricing-card-featured .plan-features li { color: #E0E1F5; }
.pricing-card-featured .plan-features li i { color: var(--c-accent-light); }

.plan-ribbon {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-accent);
  color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
}
.plan-name { font-size: 22px; margin-bottom: 6px; }
.plan-desc { font-size: 14px; color: var(--c-gray); margin-bottom: 24px; }
.plan-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 28px; }
.price-currency { font-size: 22px; font-weight: 700; color: var(--c-ink); }
.price-amount {
  font-family: var(--font-display);
  font-size: 46px; font-weight: 700; color: var(--c-ink);
  transition: opacity 0.2s ease;
}
.price-period { font-size: 15px; color: var(--c-gray); margin-left: 4px; }
.plan-features { display: flex; flex-direction: column; gap: 13px; margin-bottom: 32px; flex: 1; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--c-ink); }
.plan-features li i { color: var(--c-success); font-size: 13px; }

/* =====================================================================
   14. FEATURE BENTO GRID
   ===================================================================== */
.feature-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 22px;
}
.bento-item {
  background: var(--c-bg-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
}
.bento-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bento-large { grid-column: span 2; }
.bento-item h3 { font-size: 19px; margin: 18px 0 10px; }
.bento-item p { font-size: 14.5px; line-height: 1.6; }
.mini-chart { margin-top: auto; padding-top: 16px; }
.margin-bar { margin-top: auto; padding-top: 20px; }
.margin-bar-track {
  width: 100%; height: 10px;
  background: var(--c-border);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 10px;
}
.margin-bar-fill {
  display: block; height: 100%;
  width: 0%;
  background: var(--grad-primary-flat);
  border-radius: var(--radius-full);
  transition: width 1.4s var(--ease-out-expo);
}
.margin-bar-label { font-size: 13px; font-weight: 600; color: var(--c-primary); }

/* =====================================================================
   15. DATA CENTERS / SECURITY (DARK SECTION)
   ===================================================================== */
.section-head-light .section-eyebrow { margin-bottom: 20px; }
.dc-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 64px;
}
.dc-map-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.dc-map { width: 100%; height: auto; }
.map-ping { animation: mapPing 2.4s ease-in-out infinite; animation-delay: var(--pd, 0s); }
@keyframes mapPing {
  0%, 100% { opacity: 0.5; r: 5; }
  50% { opacity: 1; r: 8; }
}
.dc-list { display: flex; flex-direction: column; gap: 22px; }
.dc-list-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: background 0.25s ease, transform 0.25s ease;
}
.dc-list-item:hover { background: rgba(255,255,255,0.07); transform: translateX(4px); }
.dc-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(34,211,238,0.14); color: var(--c-accent-light);
  border-radius: 11px; font-size: 15px;
}
.dc-list-item strong { color: #fff; font-size: 15.5px; display: block; margin-bottom: 4px; }
.dc-list-item p { color: #9A9CC4; font-size: 13.5px; }

.security-badges {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.security-badge {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 26px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.3s var(--ease-spring), background 0.3s ease;
}
.security-badge:hover { transform: translateY(-5px); background: rgba(255,255,255,0.08); }
.security-badge i { font-size: 24px; color: var(--c-accent-light); }
.security-badge span { font-size: 13.5px; font-weight: 600; color: #E0E1F5; }

/* =====================================================================
   16. MIGRATION + BUILDER (SPLIT FEATURE)
   ===================================================================== */
.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 100px;
}
.split-feature:last-child { margin-bottom: 0; }
.split-feature.reverse .split-feature-text { order: 2; }
.split-feature.reverse .split-feature-visual { order: 1; }
.split-feature-text .section-title { text-align: left; margin-top: 4px; }
.split-feature-text .section-eyebrow { margin-bottom: 16px; }
.split-feature-text .section-desc { margin-bottom: 26px; }

.checklist { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.checklist li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--c-ink); font-weight: 500; }
.checklist li i { color: var(--c-success); font-size: 16px; }

.split-feature-visual { display: flex; justify-content: center; }

.migration-card {
  width: 100%; max-width: 380px;
  background: var(--c-bg-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.migration-step {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  font-size: 14.5px; font-weight: 500;
  color: var(--c-gray-light);
}
.migration-step i { width: 22px; text-align: center; font-size: 16px; }
.migration-step.done { color: var(--c-ink); }
.migration-step.done i { color: var(--c-success); }
.migration-step.active { color: var(--c-ink); }
.migration-step.active i { color: var(--c-primary); }
.migration-progress {
  height: 5px;
  background: var(--c-border);
  border-radius: var(--radius-full);
  margin: 4px 0 4px 36px;
  overflow: hidden;
}
.migration-progress-fill {
  display: block; height: 100%; width: 62%;
  background: var(--grad-primary-flat);
  border-radius: var(--radius-full);
  animation: progressGrow 2.4s var(--ease-out-expo) infinite alternate;
}
@keyframes progressGrow { from { width: 50%; } to { width: 72%; } }

.builder-card {
  width: 100%; max-width: 380px;
  background: var(--c-bg-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow-lg);
}
.builder-toolbar { display: flex; gap: 7px; margin-bottom: 18px; padding: 0 4px; }
.builder-toolbar .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--dc); }
.builder-block { border-radius: var(--radius-md); margin-bottom: 12px; }
.builder-block-img {
  height: 130px;
  background: linear-gradient(135deg, #EEF2FF, #ECFEFF);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-primary); font-size: 30px;
}
.builder-block-text { height: 14px; background: var(--c-border); width: 100%; }
.builder-block-text.short { width: 60%; }
.builder-block-btn {
  margin-top: 18px;
  background: var(--grad-primary-flat);
  color: #fff; text-align: center;
  padding: 12px; font-weight: 600; font-size: 14px;
}

/* =====================================================================
   17. APPS MARQUEE + CONTROL PANELS
   ===================================================================== */
.apps-marquee {
  overflow: hidden;
  margin-bottom: 56px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.apps-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.apps-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.app-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  background: var(--c-bg-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-full);
  font-size: 14.5px; font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.app-pill i { color: var(--c-primary); font-size: 16px; }

.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.panel-card {
  text-align: center;
  background: var(--c-bg-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}
.panel-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.panel-card i { font-size: 30px; color: var(--c-primary); margin-bottom: 16px; }
.panel-card h3 { font-size: 18px; margin-bottom: 8px; }
.panel-card p { font-size: 14px; }

/* =====================================================================
   18. TESTIMONIALS CAROUSEL
   ===================================================================== */
.testimonial-carousel { position: relative; max-width: 760px; margin: 0 auto; overflow: hidden; border-radius: var(--radius-xl); }
.testimonial-track {
  display: flex;
  transition: transform 0.5s var(--ease-out-expo);
}
.testimonial-card {
  flex: 0 0 100%;
  background: var(--c-bg-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.testimonial-stars { color: var(--c-warning); font-size: 15px; margin-bottom: 20px; display: flex; gap: 4px; justify-content: center; }
.testimonial-quote { font-size: 19px; line-height: 1.6; color: var(--c-ink); font-weight: 500; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--av);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14.5px; }
.testimonial-author small { font-size: 13px; color: var(--c-gray); }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 32px; }
.carousel-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-ink);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.carousel-btn:hover { background: var(--c-bg-light); border-color: var(--c-primary); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  transition: background 0.25s ease, width 0.25s ease;
}
.carousel-dot.active { background: var(--c-primary); width: 24px; border-radius: var(--radius-full); }

/* =====================================================================
   19. PARTNERS
   ===================================================================== */
.partners-label { text-align: center; font-size: 14px; color: var(--c-gray-light); font-weight: 500; margin-bottom: 36px; }
.partners-row {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.partner-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 700; color: var(--c-gray-light);
  transition: color 0.25s ease, transform 0.25s ease;
}
.partner-logo i { font-size: 22px; }
.partner-logo:hover { color: var(--c-ink); transform: translateY(-2px); }

/* =====================================================================
   20. BLOG
   ===================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--c-bg-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-image {
  height: 160px;
  background: linear-gradient(135deg, var(--bg1), var(--bg2));
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: rgba(255,255,255,0.9);
}
.blog-card-body { padding: 26px; }
.blog-tag {
  display: inline-block;
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--c-primary); background: rgba(79,70,229,0.08);
  padding: 4px 11px; border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.blog-card-body h3 { font-size: 17.5px; line-height: 1.35; margin-bottom: 10px; }
.blog-card-body p { font-size: 14px; margin-bottom: 18px; line-height: 1.6; }
.blog-read-more { font-size: 14px; font-weight: 600; color: var(--c-primary); display: inline-flex; align-items: center; gap: 7px; }
.blog-read-more i { font-size: 11px; transition: transform 0.25s ease; }
.blog-card:hover .blog-read-more i { transform: translateX(4px); }

/* =====================================================================
   21. FAQ ACCORDION
   ===================================================================== */
.accordion { display: flex; flex-direction: column; gap: 14px; }
.accordion-item {
  background: var(--c-bg-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  text-align: left;
  font-size: 16px; font-weight: 600; color: var(--c-ink);
}
.accordion-trigger i { transition: transform 0.3s var(--ease-out-expo); color: var(--c-gray); flex-shrink: 0; }
.accordion-trigger[aria-expanded="true"] i { transform: rotate(180deg); color: var(--c-primary); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
}
.accordion-panel p { padding: 0 26px 24px; font-size: 14.5px; line-height: 1.65; }

/* =====================================================================
   22. NEWSLETTER
   ===================================================================== */
.newsletter-section { padding: 100px 0; position: relative; overflow: hidden; }
.newsletter-inner {
  position: relative;
  background: var(--grad-primary);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  border-radius: var(--radius-xl);
  padding: 72px 40px;
  text-align: center;
  overflow: hidden;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.newsletter-shapes { position: absolute; inset: 0; }
.n-shape { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.1); }
.n-shape-1 { width: 280px; height: 280px; top: -120px; right: -60px; }
.n-shape-2 { width: 200px; height: 200px; bottom: -100px; left: -40px; }
.newsletter-inner h2 {
  position: relative; z-index: 1;
  font-size: clamp(26px, 3vw, 36px); color: #fff; margin-bottom: 14px;
}
.newsletter-inner > p {
  position: relative; z-index: 1;
  color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 32px;
}
.newsletter-form {
  position: relative; z-index: 1;
  display: flex; gap: 12px; justify-content: center;
  max-width: 460px; margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  border: none;
  font-size: 15px;
  background: rgba(255,255,255,0.95);
}
.newsletter-form .btn-primary { background: var(--c-navy-950); flex-shrink: 0; }
.newsletter-success { position: relative; z-index: 1; color: #fff; font-size: 14px; font-weight: 600; margin-top: 16px; min-height: 20px; }

/* =====================================================================
   23. FOOTER
   ===================================================================== */
.site-footer {
  background: var(--c-navy-950);
  padding: 80px 0 0;
  position: relative;
  z-index: 1;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { padding-right: 20px; }
.footer-tagline { color: #9A9CC4; font-size: 14px; line-height: 1.65; margin: 18px 0 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: #C7C9E8; font-size: 14px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s var(--ease-spring);
}
.footer-social a:hover { background: var(--grad-primary-flat); color: #fff; transform: translateY(-3px); }

.footer-col h4 { color: #fff; font-size: 14.5px; font-weight: 700; margin-bottom: 20px; letter-spacing: 0.01em; }
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a { color: #9A9CC4; font-size: 14px; transition: color 0.2s ease; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { color: #71739C; font-size: 13.5px; }
.payment-icons { display: flex; gap: 16px; color: #71739C; font-size: 22px; }
.payment-icons i { transition: color 0.2s ease; }
.payment-icons i:hover { color: #C7C9E8; }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-primary-flat);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-spring), visibility 0.3s;
  z-index: 500;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px) scale(1.05); }

/* =====================================================================
   24. SCROLL ANIMATIONS (data-animate)
   ===================================================================== */
[data-animate] { opacity: 0; will-change: transform, opacity; }
[data-animate].in-view { opacity: 1; }

[data-animate="fade-up"] { transform: translateY(36px); transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo); }
[data-animate="fade-up"].in-view { transform: translateY(0); }

[data-animate="fade-left"] { transform: translateX(48px); transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo); }
[data-animate="fade-left"].in-view { transform: translateX(0); }

[data-animate="fade-right"] { transform: translateX(-48px); transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo); }
[data-animate="fade-right"].in-view { transform: translateX(0); }

[data-animate="zoom"] { transform: scale(0.92); transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo); }
[data-animate="zoom"].in-view { transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1 !important; transform: none !important; }
}

/* =====================================================================
   25. RESPONSIVE BREAKPOINTS
   ===================================================================== */

/* ---- Large desktop refinement (1600px+) ---- */
@media (min-width: 1600px) {
  :root { --container-max: 1400px; }
  .hero-heading { font-size: 64px; }
}

/* ---- Standard desktop / laptop (1366px - 1440px) handled by default ---- */

/* ---- 1280px and down: tighten grids slightly ---- */
@media (max-width: 1280px) {
  .container { padding: 0 28px; }
  .tld-pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Laptop / small desktop (1240px) ---- */
@media (max-width: 1240px) {
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-drawer { display: block; }
  .client-area-btn { display: none; }

  .hero-inner { grid-template-columns: 1fr; gap: 64px; padding-bottom: 70px; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .hero-content { text-align: left; }

  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-bento { grid-template-columns: repeat(2, 1fr); }
  .bento-large { grid-column: span 2; }
  .dc-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; padding-right: 0; margin-bottom: 12px; }
}

/* ---- Tablet (900px) ---- */
@media (max-width: 900px) {
  :root { --space-section: 88px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tld-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pricing-card-featured { transform: scale(1); order: -1; }
  .pricing-card-featured:hover { transform: translateY(-6px); }
  .panel-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .split-feature { grid-template-columns: 1fr; gap: 40px; margin-bottom: 72px; }
  .split-feature.reverse .split-feature-text { order: 1; }
  .split-feature.reverse .split-feature-visual { order: 2; }
  .split-feature-text .section-title,
  .split-feature-text .section-desc { text-align: left; }
  .security-badges { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

/* ---- Mobile (640px) ---- */
@media (max-width: 640px) {
  :root { --space-section: 64px; }
  .container { padding: 0 20px; }

  .header-inner { height: 68px; }
  .mobile-drawer { top: 68px; }
  .header-actions { gap: 4px; }
  .icon-btn { width: 36px; height: 36px; font-size: 14px; }
  .header-cta { display: none; }
  .cart-btn { display: none; }

  .hero { padding-top: 0; }
  .hero-inner { padding-top: 32px; padding-bottom: 56px; gap: 48px; }
  .hero-visual { padding-top: 12px; }
  .hero-heading { font-size: clamp(30px, 9vw, 38px); }
  .hero-desc { font-size: 16.5px; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; }
  .domain-search-box { flex-direction: column; border-radius: var(--radius-lg); }
  .domain-search-btn { width: 100%; }
  .tld-chip-row { gap: 8px; }
  .control-deck { max-width: 320px; }
  .float-card { padding: 10px 14px; gap: 8px; }
  .float-card strong { font-size: 14px; }
  .float-card small { font-size: 10px; }
  .float-card-icon { width: 32px; height: 32px; font-size: 13px; }
  .float-card-uptime { left: -4%; top: 0; }
  .float-card-speed { right: -6%; }
  .float-card-servers { left: -4%; bottom: 2%; }

  .trusted-strip-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .trusted-logos { gap: 20px; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-card { padding: 22px 10px; }

  .tld-pricing-grid { grid-template-columns: 1fr 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .feature-bento { grid-template-columns: 1fr; }
  .bento-large { grid-column: span 1; }

  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-4px); }

  .dc-list-item { padding: 14px 16px; }
  .security-badges { grid-template-columns: repeat(2, 1fr); }

  .testimonial-card { padding: 32px 24px; }
  .testimonial-quote { font-size: 16.5px; }

  .partners-row { gap: 26px; }

  .newsletter-inner { padding: 48px 24px; }
  .newsletter-form { flex-direction: column; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .back-to-top { bottom: 18px; right: 18px; width: 44px; height: 44px; }

  .apps-track { animation-duration: 22s; }
}

/* ---- Small mobile (380px) ---- */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .hero-heading { font-size: 28px; }
  .logo-text { font-size: 17px; }
  .tld-pricing-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .security-badges { grid-template-columns: 1fr 1fr; }
  .control-deck { max-width: 260px; }
}
