/* ============================================================
   ALFA HOSTING — MAIN STYLESHEET  v3.0
   Color Palette:
     Hero BG:       #B8D9F0  (soft pastel sky blue)
     Brand Orange:  #f5893a  (whois.com logo flame — exact)
     Brand Yellow:  #fcca54  (whois.com "WHO" text — exact)
     Logo Gray:     #5d5d5d  (whois.com secondary text — exact)
   ============================================================ */

/* ---- 1. CSS Variables ---- */
:root {
  /* ── Sky Blue Palette (primary backgrounds) ── */
  --sky:        #B8D9F0;   /* MAIN hero / section background */
  --sky-dark:   #9bcde8;   /* Darker sky for borders/dividers */
  --sky-deeper: #7ab8e0;   /* Even deeper sky */
  --sky-light:  #cee6f5;   /* Slightly lighter sky */
  --sky-50:     #e0f1fb;   /* Very light sky tint */
  --sky-25:     #f0f8fd;   /* Near-white with sky hint */
  --sky-10:     #f7fbfe;   /* Almost white */

  /* Sky text colors (dark navy family for readability on sky bg) */
  --sky-heading: #0c2d4a;  /* Dark navy — main headings on sky */
  --sky-body:    #2c4a60;  /* Dark blue-gray — body on sky */
  --sky-muted:   #5a7a92;  /* Muted blue-gray — secondary on sky */

  /* ── Brand Orange (whois.com exact #f5893a) ── */
  --orange-700: #c96a1e;
  --orange-600: #f5893a;   /* PRIMARY — exact whois.com flame */
  --orange-500: #f7a05a;
  --orange-400: #f9b87a;
  --orange-300: #fcd0a8;
  --orange-100: #fef0e0;
  --orange-50:  #fff8f2;

  /* ── Brand Yellow (whois.com exact #fcca54) ── */
  --yellow:      #fcca54;
  --yellow-dark: #e8b83a;
  --yellow-light:#fde68a;
  --orange-alt:  #f58c40;
  --brand-gray:  #5d5d5d;   /* whois.com logo exact gray */

  /* ── Neutral Grays ── */
  --white:     #ffffff;
  --gray-50:   #fafafa;
  --gray-100:  #f5f5f5;
  --gray-150:  #efefef;
  --gray-200:  #e8e8e8;
  --gray-300:  #d4d4d4;
  --gray-400:  #a3a3a3;
  --gray-500:  #737373;
  --gray-600:  #5d5d5d;
  --gray-700:  #404040;
  --gray-800:  #262626;
  --gray-900:  #171717;

  /* ── Status Colors ── */
  --green-500: #10b981;
  --green-400: #34d399;
  --red-500:   #ef4444;
  --amber-500: #f59e0b;

  /* ── Typography ── */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono:   'JetBrains Mono', 'Fira Code', Consolas, monospace;

  /* ── Layout ── */
  --navbar-height: 68px;
  --container-max: 1280px;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm:     0 1px 3px rgba(12,45,74,.08);
  --shadow-md:     0 4px 16px rgba(12,45,74,.1);
  --shadow-lg:     0 10px 32px rgba(12,45,74,.13);
  --shadow-xl:     0 20px 50px rgba(12,45,74,.16);
  --shadow-orange: 0 8px 24px rgba(245,137,58,.35);
  --shadow-sky:    0 8px 24px rgba(184,217,240,.5);
  --shadow-card:   0 2px 12px rgba(12,45,74,.08);

  /* ── Transitions ── */
  --transition:      220ms cubic-bezier(.4,0,.2,1);
  --transition-slow: 380ms cubic-bezier(.4,0,.2,1);
}

/* ---- 2. CSS Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-family);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
h1,h2,h3,h4,h5,h6 { line-height: 1.2; font-weight: 700; }

/* ---- 3. Container / Layout ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 100px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.text-white  { color: var(--white); }

/* ---- 4. Typography ---- */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,137,58,.12);
  color: var(--orange-700);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid rgba(245,137,58,.3);
}
/* On sky-blue backgrounds — darker text, slightly transparent orange bg */
.section-badge.sky {
  background: rgba(255,255,255,.55);
  color: var(--orange-700);
  border-color: rgba(245,137,58,.35);
}
/* Kept for backward compat — same as .sky now */
.section-badge.light {
  background: rgba(255,255,255,.55);
  color: var(--orange-700);
  border-color: rgba(245,137,58,.35);
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  color: var(--gray-900);
}
/* On sky bg */
.section-title.sky   { color: var(--sky-heading); }
.section-title.light { color: var(--sky-heading); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 640px;
  line-height: 1.7;
}
.section-subtitle.sky   { color: var(--sky-body); }
.section-subtitle.light { color: var(--sky-body); }

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ---- 5. Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  line-height: 1;
}
.btn-primary {
  background: var(--orange-600);
  color: var(--white);
  border-color: var(--orange-600);
}
.btn-primary:hover {
  background: var(--orange-700);
  border-color: var(--orange-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-orange);
}
.btn-outline {
  background: rgba(255,255,255,.9);
  color: var(--orange-700);
  border-color: var(--orange-600);
}
.btn-outline:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn-outline-blue,
.btn-outline-orange {
  background: transparent;
  color: var(--orange-600);
  border-color: var(--orange-600);
}
.btn-outline-blue:hover,
.btn-outline-orange:hover {
  background: var(--orange-600);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-white {
  background: var(--white);
  color: var(--orange-700);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--orange-50);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn-sky {
  background: rgba(255,255,255,.85);
  color: var(--sky-heading);
  border-color: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
}
.btn-sky:hover {
  background: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost { color: var(--orange-600); padding: 11px 16px; }
.btn-ghost:hover { background: var(--orange-50); border-radius: var(--radius-md); }
.btn-lg  { padding: 15px 32px; font-size: 1rem; }
.btn-sm  { padding: 8px 18px; font-size: .825rem; }
.btn-icon { width: 42px; height: 42px; padding: 0; justify-content: center; }

/* ============================================================
   NAVBAR — White, clean, orange accents (matches whois.com)
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(12,45,74,.08);
}
.navbar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Logo ── */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-svg-icon { width: 42px; height: 42px; flex-shrink: 0; }
.logo-text-group { display: flex; flex-direction: column; line-height: 1.1; }
.logo-alfa {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--orange-600);
  letter-spacing: -.03em;
}
.logo-hosting {
  font-size: .58rem;
  font-weight: 700;
  color: var(--brand-gray);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-top: 1px;
}
/* On sky-blue backgrounds — logo stays the same (orange/gray reads well on sky) */
.logo-sky .logo-alfa    { color: var(--orange-600); }
.logo-sky .logo-hosting { color: var(--sky-body); }

/* ── Nav items ── */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  margin-left: 16px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  color: var(--gray-700);
  font-size: .875rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
}
.nav-link:hover, .nav-link.active {
  color: var(--orange-600);
  background: var(--orange-50);
}
.nav-link svg { width: 13px; height: 13px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* ── Dropdown ── */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 10px;
  min-width: 230px;
  box-shadow: 0 8px 32px rgba(12,45,74,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: var(--gray-700);
  font-size: .86rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.dropdown-item:hover { background: var(--orange-50); color: var(--orange-600); }
.dropdown-item .di-icon {
  width: 32px; height: 32px;
  background: var(--orange-100);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; flex-shrink: 0; color: var(--orange-600);
  transition: var(--transition);
}
.dropdown-item:hover .di-icon { background: var(--orange-600); color: var(--white); }
.dropdown-item .di-text { display: flex; flex-direction: column; gap: 1px; }
.dropdown-item .di-label { font-weight: 600; color: var(--gray-800); font-size: .84rem; }
.dropdown-item .di-desc  { font-size: .73rem; color: var(--gray-400); }
.dropdown-item:hover .di-label { color: var(--orange-600); }

/* ── Mega menu ── */
.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -100px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  width: 580px;
  box-shadow: 0 8px 32px rgba(12,45,74,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 6px;
}
.nav-item:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }

/* ── Navbar actions ── */
.navbar-actions {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: auto;
}
.btn-nav-outline {
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-size: .85rem; font-weight: 600;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-300);
  transition: var(--transition);
  display: inline-flex; align-items: center;
}
.btn-nav-outline:hover {
  color: var(--orange-600);
  border-color: var(--orange-600);
  background: var(--orange-50);
}
.btn-nav-primary {
  padding: 8px 20px;
  border-radius: var(--radius-md);
  font-size: .85rem; font-weight: 700;
  background: var(--orange-600);
  color: var(--white);
  transition: var(--transition);
  display: inline-flex; align-items: center;
  border: 2px solid var(--orange-600);
}
.btn-nav-primary:hover {
  background: var(--orange-700);
  border-color: var(--orange-700);
  box-shadow: var(--shadow-orange);
  transform: translateY(-1px);
}

/* ── Hamburger ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  cursor: pointer; margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--gray-700); border-radius: 2px; transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Mobile nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--navbar-height); left: 0; right: 0;
  background: var(--white);
  border-top: 3px solid var(--sky);
  padding: 16px 24px 24px;
  z-index: 999;
  max-height: calc(100vh - var(--navbar-height));
  overflow-y: auto;
  transform: translateY(-20px); opacity: 0;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(12,45,74,.1);
}
.mobile-nav.open { display: block; transform: translateY(0); opacity: 1; }
.mobile-nav-item { border-bottom: 1px solid var(--gray-100); }
.mobile-nav-link {
  display: block; padding: 14px 0;
  color: var(--gray-700); font-size: .95rem; font-weight: 600;
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--orange-600); }
.mobile-nav-actions { display: flex; gap: 12px; margin-top: 20px; }
.mobile-nav-actions a { flex: 1; text-align: center; padding: 12px; border-radius: var(--radius-md); font-weight: 700; font-size: .9rem; }
.mobile-btn-outline { border: 1.5px solid var(--gray-300); color: var(--gray-700); }
.mobile-btn-primary { background: var(--orange-600); color: var(--white); }

/* ============================================================
   HERO SECTIONS — #B8D9F0 Sky Blue Background
   ============================================================ */
.hero {
  background: linear-gradient(155deg, var(--sky-light) 0%, var(--sky) 45%, var(--sky-dark) 100%);
  padding: calc(var(--navbar-height) + 80px) 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 40%, rgba(245,137,58,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--white));
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
}

/* Hero text — dark on sky */
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--sky-heading);
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title span { color: var(--orange-600); }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--sky-body);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 24px; margin-top: 36px; flex-wrap: wrap; }
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  color: var(--sky-body);
  font-size: .85rem; font-weight: 500;
}
.hero-badge i { color: var(--green-500); }

/* Inner page hero */
.hero-page {
  background: linear-gradient(145deg, var(--sky-light) 0%, var(--sky) 60%, var(--sky-dark) 100%);
  padding: calc(var(--navbar-height) + 48px) 0 60px;
  position: relative;
}
.hero-page::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gray-50));
}
.hero-page .container { position: relative; z-index: 1; }
.hero-page .section-title { color: var(--sky-heading); }
.hero-page .section-subtitle { color: var(--sky-body); }

/* Subtle dot-grid overlay on sky */
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(12,45,74,.1) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* ---- Breadcrumb (on sky bg) ---- */
.breadcrumb { display: flex; align-items: center; gap: 6px; margin-bottom: 24px; }
.breadcrumb a { font-size: .82rem; color: var(--sky-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--orange-600); }
.breadcrumb span { font-size: .82rem; color: var(--sky-dark); }
.breadcrumb .current { color: var(--sky-heading); font-weight: 600; }

/* ---- Domain Search (on sky bg) ---- */
.domain-search-form {
  display: flex;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 40px rgba(12,45,74,.15);
  transition: box-shadow var(--transition);
}
.domain-search-form:focus-within {
  box-shadow: 0 8px 40px rgba(12,45,74,.2), 0 0 0 3px rgba(245,137,58,.2);
}
.domain-search-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 20px;
  font-size: 1rem;
  color: var(--gray-800);
  min-width: 0;
}
.domain-search-form input::placeholder { color: var(--gray-400); }
.domain-search-btn {
  background: var(--orange-600);
  color: var(--white);
  border: none;
  padding: 0 28px;
  font-weight: 700; font-size: .95rem;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.domain-search-btn:hover { background: var(--orange-700); }

/* TLD pills on sky bg */
.tld-pill {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,.7);
  border: 1.5px solid rgba(255,255,255,.9);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  cursor: pointer; transition: var(--transition); min-width: 70px;
  backdrop-filter: blur(4px);
}
.tld-pill:hover { background: var(--white); border-color: var(--orange-400); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.tld-pill .tld-name  { font-weight: 700; color: var(--sky-heading); font-size: .85rem; }
.tld-pill .tld-price { font-size: .72rem; color: var(--orange-700); margin-top: 2px; font-weight: 600; }

/* ---- Stats ---- */
.stats-section { background: var(--white); padding: 56px 0; border-bottom: 1px solid var(--gray-200); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item { text-align: center; padding: 24px; border-right: 1px solid var(--gray-200); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 2.5rem; font-weight: 900; color: var(--gray-900); letter-spacing: -.04em; line-height: 1; margin-bottom: 6px; }
.stat-number .stat-suffix { color: var(--orange-600); }
.stat-label  { font-size: .875rem; color: var(--gray-500); font-weight: 500; }

/* ---- Feature Cards ---- */
.features-section { background: var(--sky-25); }
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--sky-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--sky-50), var(--orange-100));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--orange-600); margin-bottom: 20px;
}
.feature-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--gray-900); }
.feature-desc  { font-size: .9rem; color: var(--gray-500); line-height: 1.65; }

/* ---- Pricing ---- */
.pricing-section { background: var(--white); }
.pricing-toggle {
  display: flex; align-items: center;
  background: var(--sky-25);
  border: 1px solid var(--sky-50);
  border-radius: var(--radius-full);
  padding: 5px; width: fit-content; margin: 0 auto 48px;
}
.pricing-toggle-label {
  font-size: .9rem; font-weight: 600; color: var(--gray-500);
  padding: 8px 20px; border-radius: var(--radius-full);
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
  border: none; background: none;
}
.pricing-toggle-label.active {
  background: var(--white);
  color: var(--orange-600);
  box-shadow: var(--shadow-md);
}
.save-badge {
  background: var(--green-500); color: var(--white);
  font-size: .68rem; font-weight: 700; padding: 2px 8px;
  border-radius: var(--radius-full); letter-spacing: .04em;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 32px; position: relative; transition: var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); border-color: var(--sky-dark); }
/* Featured pricing — sky blue + orange accent (no more dark navy) */
.pricing-card.featured {
  background: linear-gradient(145deg, var(--sky) 0%, var(--sky-50) 100%);
  border-color: var(--orange-600);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--orange-600);
}
.pricing-card.featured:hover { transform: translateY(-8px); }
.featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--orange-600), var(--yellow));
  color: var(--white);
  font-size: .72rem; font-weight: 800;
  padding: 5px 18px; border-radius: var(--radius-full);
  letter-spacing: .06em; text-transform: uppercase; white-space: nowrap;
}
.plan-name  { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange-600); margin-bottom: 8px; }
.plan-title { font-size: 1.4rem; font-weight: 800; color: var(--gray-900); margin-bottom: 4px; }
.pricing-card.featured .plan-title { color: var(--sky-heading); }
.plan-desc  { font-size: .85rem; color: var(--gray-500); margin-bottom: 24px; line-height: 1.5; }
.pricing-card.featured .plan-desc { color: var(--sky-body); }
.plan-price { margin-bottom: 28px; }
.plan-price .currency { font-size: 1.2rem; font-weight: 700; color: var(--gray-400); vertical-align: top; margin-top: 8px; display: inline-block; }
.plan-price .amount   { font-size: 3rem; font-weight: 900; color: var(--gray-900); letter-spacing: -.04em; line-height: 1; }
.pricing-card.featured .amount   { color: var(--sky-heading); }
.pricing-card.featured .currency { color: var(--sky-muted); }
.plan-price .period   { font-size: .85rem; color: var(--gray-400); margin-left: 4px; }
.pricing-card.featured .period   { color: var(--sky-muted); }
.plan-monthly-label { display: block; }
.plan-yearly-label  { display: none; }
body.yearly .plan-yearly-label  { display: block; }
body.yearly .plan-monthly-label { display: none; }
.plan-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 11px; }
.plan-feature  { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; color: var(--gray-600); }
.pricing-card.featured .plan-feature { color: var(--sky-body); }
.plan-feature .check { color: var(--green-500); font-size: .9rem; flex-shrink: 0; margin-top: 2px; }
.plan-feature .cross { color: var(--gray-300); font-size: .9rem; flex-shrink: 0; margin-top: 2px; }

/* ---- Comparison Table ---- */
.comparison-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.comparison-table th {
  background: var(--sky-heading);
  color: var(--white);
  padding: 18px 24px;
  text-align: left;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
}
.comparison-table th:first-child { border-radius: var(--radius-lg) 0 0 0; }
.comparison-table th:last-child  { border-radius: 0 var(--radius-lg) 0 0; }
.comparison-table td { padding: 16px 24px; border-bottom: 1px solid var(--gray-200); vertical-align: middle; }
.comparison-table tbody tr:hover { background: var(--sky-25); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table td:first-child { font-weight: 600; color: var(--gray-700); }
.comparison-table .check-cell { color: var(--green-500); font-size: 1.1rem; }
.comparison-table .cross-cell  { color: var(--gray-300); font-size: 1.1rem; }
.table-wrapper { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--gray-200); box-shadow: var(--shadow-md); }

/* ---- Testimonials ---- */
.testimonials-section { background: var(--sky-25); }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 28px; transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); border-color: var(--sky-dark); }
.testimonial-stars { display: flex; gap: 3px; color: var(--yellow); font-size: .95rem; margin-bottom: 16px; }
.testimonial-text  { font-size: .92rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; color: var(--white); flex-shrink: 0; }
.author-name { font-weight: 700; font-size: .9rem; color: var(--gray-900); }
.author-role { font-size: .78rem; color: var(--gray-400); margin-top: 2px; }

/* ---- FAQ Accordion ---- */
.faq-item { border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); margin-bottom: 10px; overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--sky-dark); box-shadow: var(--shadow-sky); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer; font-weight: 600; font-size: .95rem; color: var(--gray-800);
  transition: var(--transition); background: var(--white); width: 100%; text-align: left;
}
.faq-question:hover { background: var(--sky-25); }
.faq-icon {
  width: 26px; height: 26px;
  background: var(--sky-50);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--sky-muted); flex-shrink: 0; transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--orange-600); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition-slow); }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 16px 24px 20px; font-size: .9rem; color: var(--gray-600); line-height: 1.7; border-top: 1px solid var(--sky-50); }

/* ---- CTA Section — Orange gradient for contrast on light pages ---- */
.cta-section {
  background: linear-gradient(135deg, var(--orange-600) 0%, var(--orange-alt) 100%);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(252,202,84,.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-content { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-title    { font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 800; color: var(--white); letter-spacing: -.02em; }
.cta-subtitle { font-size: 1rem; color: rgba(255,255,255,.75); margin-top: 8px; }
.cta-actions  { display: flex; gap: 14px; flex-shrink: 0; }

/* ---- Newsletter ---- */
.newsletter-section { background: var(--sky-25); padding: 64px 0; border-top: 1px solid var(--sky-50); }
.newsletter-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.newsletter-text h3 { font-size: 1.5rem; font-weight: 800; color: var(--gray-900); margin-bottom: 6px; }
.newsletter-text p  { color: var(--gray-500); font-size: .9rem; }
.newsletter-form { display: flex; gap: 0; flex: 0 0 420px; max-width: 100%; }
.newsletter-form input {
  flex: 1; padding: 13px 18px;
  border: 1.5px solid var(--sky-dark);
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-size: .9rem; outline: none;
  background: var(--white);
  transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--orange-500); }
.newsletter-form button {
  padding: 13px 24px;
  background: var(--orange-600); color: var(--white); border: none;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-weight: 700; font-size: .9rem; cursor: pointer; white-space: nowrap; transition: var(--transition);
}
.newsletter-form button:hover { background: var(--orange-700); }

/* ---- Footer — Light sky blue ---- */
.footer {
  background: var(--sky-25);
  padding-top: 72px;
  border-top: 2px solid var(--sky);
}
.footer-top {
  display: grid; grid-template-columns: 280px 1fr; gap: 60px;
  padding-bottom: 56px; border-bottom: 1px solid var(--sky-50);
}
.footer-brand .footer-desc { font-size: .875rem; color: var(--sky-muted); line-height: 1.7; margin: 16px 0 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: var(--sky-50);
  border: 1px solid var(--sky);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--sky-muted); font-size: .85rem; transition: var(--transition);
}
.social-btn:hover { background: var(--orange-600); color: var(--white); border-color: var(--orange-600); }
.footer-links-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.footer-col-title { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--sky-heading); margin-bottom: 18px; }
.footer-link { display: block; font-size: .855rem; color: var(--sky-muted); margin-bottom: 11px; transition: var(--transition); }
.footer-link:hover { color: var(--orange-600); padding-left: 4px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid var(--sky);
}
.footer-copy { font-size: .82rem; color: var(--sky-muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .82rem; color: var(--sky-muted); transition: var(--transition); }
.footer-legal a:hover { color: var(--orange-600); }

/* ---- Forms ---- */
.form-group  { margin-bottom: 20px; }
.form-label  { display: block; font-size: .875rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-input  {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: .9rem; color: var(--gray-800);
  background: var(--white); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus { border-color: var(--sky-dark); box-shadow: 0 0 0 3px rgba(184,217,240,.4); }
.form-input::placeholder { color: var(--gray-400); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-2xl); padding: 40px;
  box-shadow: var(--shadow-lg);
}

/* ---- Auth pages — Sky blue full background ---- */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--sky-light) 0%, var(--sky) 60%, var(--sky-dark) 100%);
  display: flex; flex-direction: column;
}
.auth-page .navbar {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,217,240,.6);
}
.auth-body  { flex: 1; display: flex; align-items: center; justify-content: center; padding: 60px 24px; }
.auth-card  {
  background: var(--white);
  border-radius: var(--radius-2xl); padding: 44px;
  width: 100%; max-width: 440px;
  box-shadow: 0 20px 60px rgba(12,45,74,.15);
  border: 1px solid rgba(184,217,240,.5);
}
.auth-logo   { text-align: center; margin-bottom: 28px; }
.auth-title  { font-size: 1.6rem; font-weight: 800; color: var(--gray-900); margin-bottom: 4px; }
.auth-subtitle { font-size: .9rem; color: var(--gray-500); }
.auth-divider { text-align: center; margin: 20px 0; position: relative; }
.auth-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--gray-200); }
.auth-divider span { position: relative; background: var(--white); padding: 0 12px; font-size: .82rem; color: var(--gray-400); }
.auth-footer-text { text-align: center; font-size: .875rem; color: var(--gray-500); margin-top: 20px; }
.auth-footer-text a { color: var(--orange-600); font-weight: 600; }
.btn-social {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px; border: 1.5px solid var(--gray-300); border-radius: var(--radius-md);
  font-size: .9rem; font-weight: 600; color: var(--gray-700);
  background: var(--white); cursor: pointer; transition: var(--transition); margin-bottom: 12px;
}
.btn-social:hover { background: var(--gray-50); border-color: var(--gray-400); }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; color: var(--gray-600); cursor: pointer; }
.checkbox-label input { margin-top: 2px; accent-color: var(--orange-600); }

/* ---- Contact page ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.contact-info-card {
  background: linear-gradient(145deg, var(--sky-light), var(--sky));
  border-radius: var(--radius-xl); padding: 32px;
  border: 1.5px solid var(--sky-dark);
  box-shadow: var(--shadow-sky);
}
.contact-method { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(12,45,74,.1); }
.contact-method:last-child { border-bottom: none; }
.contact-method-icon {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-600); font-size: 1.1rem; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.contact-method-title { font-size: .85rem; font-weight: 700; color: var(--sky-heading); margin-bottom: 4px; }
.contact-method-value { font-size: .875rem; color: var(--sky-body); }

/* ---- Server cards ---- */
.server-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: 28px; transition: var(--transition); position: relative;
}
.server-card:hover { border-color: var(--sky-dark); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.server-card.featured-server { border-color: var(--orange-600); box-shadow: var(--shadow-orange); }
.server-tier { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange-600); margin-bottom: 8px; }
.server-name { font-size: 1.25rem; font-weight: 800; color: var(--gray-900); margin-bottom: 16px; }
.server-specs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.server-spec { display: flex; justify-content: space-between; align-items: center; font-size: .875rem; }
.server-spec-label { color: var(--gray-500); display: flex; align-items: center; gap: 8px; }
.server-spec-label i { color: var(--sky-deeper); width: 16px; }
.server-spec-value { font-weight: 700; color: var(--gray-800); }
.server-price { margin: 20px 0; border-top: 1px solid var(--gray-100); padding-top: 20px; }
.server-price .from  { font-size: .78rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .06em; }
.server-price .price { font-size: 2rem; font-weight: 900; color: var(--sky-heading); letter-spacing: -.03em; }
.server-price .price .cur { font-size: 1.1rem; vertical-align: super; font-weight: 700; color: var(--gray-400); }
.server-price .mo { font-size: .875rem; color: var(--gray-400); }

/* ---- Live Chat button ---- */
.live-chat-btn {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--orange-600), var(--yellow));
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white);
  box-shadow: 0 8px 24px rgba(245,137,58,.4);
  cursor: pointer; transition: var(--transition); z-index: 900; border: none;
}
.live-chat-btn:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 12px 32px rgba(245,137,58,.5); }
.live-chat-badge {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: var(--green-500); border-radius: var(--radius-full);
  border: 2px solid var(--white); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.2); opacity: .8; }
}

/* ---- Scroll reveal ---- */
.reveal       { opacity: 0; transform: translateY(30px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-30px); transition: opacity .65s ease, transform .65s ease; }
.reveal-left.visible  { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity .65s ease, transform .65s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .1s; } .delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; } .delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; } .delay-6 { transition-delay: .6s; }

/* ---- Utilities ---- */
.bg-sky   { background: var(--sky); }
.bg-sky-light { background: var(--sky-25); }
.bg-white { background: var(--white); }
.bg-gray  { background: var(--sky-25); }
.w-full   { width: 100%; }
.mt-auto  { margin-top: auto; }
.text-orange { color: var(--orange-600); }
.text-sky    { color: var(--sky-heading); }
.text-muted  { color: var(--gray-500); }
.text-blue   { color: var(--orange-600); } /* compat */
.text-green  { color: var(--green-500); }
.text-yellow { color: var(--yellow); }
.mb-8  { margin-bottom: 8px; }  .mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; } .mb-48 { margin-bottom: 48px; }
.cards-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cards-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.info-banner {
  background: rgba(184,217,240,.2);
  border: 1px solid var(--sky);
  border-radius: var(--radius-lg); padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  font-size: .875rem; color: var(--sky-body);
}
.info-banner i { color: var(--orange-600); font-size: 1.1rem; }

/* ---- Timeline ---- */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--sky-deeper), var(--sky));
}
.timeline-item  { position: relative; margin-bottom: 36px; }
.timeline-dot   { position: absolute; left: -32px; top: 4px; width: 18px; height: 18px; background: var(--orange-600); border-radius: var(--radius-full); border: 3px solid var(--white); box-shadow: 0 0 0 3px rgba(245,137,58,.2); }
.timeline-year  { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange-600); margin-bottom: 4px; }
.timeline-title { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.timeline-text  { font-size: .875rem; color: var(--gray-500); line-height: 1.65; }

/* ---- Team cards ---- */
.team-card {
  text-align: center; background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: 28px 24px; transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--sky-dark); }
.team-avatar { width: 80px; height: 80px; border-radius: var(--radius-full); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 800; color: var(--white); }
.team-name { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.team-role { font-size: .82rem; color: var(--orange-600); font-weight: 600; margin-bottom: 12px; }
.team-bio  { font-size: .82rem; color: var(--gray-500); line-height: 1.6; }

/* ---- Tab nav ---- */
.tab-nav { display: flex; gap: 4px; background: var(--sky-25); border: 1px solid var(--sky); border-radius: var(--radius-lg); padding: 5px; margin-bottom: 36px; }
.tab-btn {
  flex: 1; padding: 10px 20px; border-radius: var(--radius-md);
  font-size: .875rem; font-weight: 600; color: var(--gray-500);
  background: transparent; cursor: pointer; transition: var(--transition); text-align: center; border: none;
}
.tab-btn.active { background: var(--white); color: var(--orange-600); box-shadow: var(--shadow-sm); }

/* ---- Why section custom ---- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-features { display: flex; flex-direction: column; gap: 20px; }
.why-feature { display: flex; gap: 16px; }
.why-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--sky-50), var(--orange-100));
  border: 1.5px solid var(--sky);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--orange-600); flex-shrink: 0;
}
.why-text h4 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.why-text p  { font-size: .875rem; color: var(--gray-500); line-height: 1.65; }

/* Why image — sky blue panel replacing dark */
.why-image {
  background: linear-gradient(145deg, var(--sky) 0%, var(--sky-light) 100%);
  border-radius: 20px; padding: 36px;
  display: flex; flex-direction: column; gap: 16px;
  border: 1.5px solid var(--sky-dark);
  box-shadow: var(--shadow-sky);
}
.metric-card {
  background: var(--white);
  border-radius: 12px; padding: 18px 20px;
  border: 1px solid rgba(184,217,240,.6);
  box-shadow: var(--shadow-sm);
}
.metric-val   { font-size: 2rem; font-weight: 900; color: var(--sky-heading); letter-spacing: -.04em; }
.metric-label { font-size: .78rem; color: var(--sky-muted); margin-top: 2px; }
.metric-trend { font-size: .75rem; color: var(--green-500); font-weight: 600; margin-top: 4px; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .hero-grid > :last-child { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .stat-item:nth-child(odd)      { border-right: 1px solid var(--gray-200); }
  .stat-item:nth-last-child(-n+2){ border-bottom: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-content { flex-direction: column; text-align: center; }
  .cards-4 { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { display: none; }
}
@media (max-width: 900px) {
  .navbar-nav     { display: none; }
  .navbar-actions { display: none; }
  .hamburger      { display: flex; }
  .navbar-inner   { gap: 0; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .section    { padding: 60px 0; }
  .section-lg { padding: 70px 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .newsletter-wrapper { flex-direction: column; }
  .newsletter-form { flex: 1; max-width: 100%; width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .cards-2,.cards-3,.cards-4 { grid-template-columns: 1fr; }
  .hero { padding-bottom: 70px; }
  .footer-links-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 520px) {
  .container { padding: 0 16px; }
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .domain-search-btn { width: 100%; justify-content: center; padding: 14px; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { text-align: center; justify-content: center; }
  .auth-card  { padding: 28px 20px; }
  .form-card  { padding: 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .hero-title { font-size: 1.9rem; }
}
