/* ═══════════════════════════════════════
   RARHOST — Global Theme
   Warm, clean, modern design system
   ═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --white: #ffffff;
  --bg: #f8f7f4;
  --bg-warm: #f3f1ec;
  --bg-card: #ffffff;
  --surface: #edeae4;
  --border: #e2dfd8;
  --border-light: #edeae4;
  --text: #1a1816;
  --text-secondary: #4a4641;
  --text-muted: #8a847b;
  --accent: #e8553d;
  --accent-hover: #d44a33;
  --accent-light: #fef0ed;
  --accent-glow: rgba(232, 85, 61, 0.12);
  --green: #1a8c5e;
  --green-light: #ecfdf3;
  --blue: #2563eb;
  --blue-light: #eff6ff;
  --orange-warm: #f59e0b;
  --purple: #7c3aed;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(26,24,22,0.04), 0 1px 2px rgba(26,24,22,0.03);
  --shadow-md: 0 4px 16px rgba(26,24,22,0.06), 0 2px 6px rgba(26,24,22,0.04);
  --shadow-lg: 0 12px 40px rgba(26,24,22,0.08), 0 4px 12px rgba(26,24,22,0.04);
  --shadow-xl: 0 20px 60px rgba(26,24,22,0.1), 0 8px 20px rgba(26,24,22,0.05);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
.mono { font-family: 'JetBrains Mono', monospace; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
}
.nav-inner {
  max-width: 1140px;
  margin: 12px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(226,223,216,0.7);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  font-weight: 800;
  font-size: 1.65rem;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 7px 14px;
  border-radius: 100px;
  transition: all 0.2s;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--bg-warm);
}
.nav-login {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--text-secondary) !important;
  padding: 8px 16px !important;
  border-radius: 100px !important;
  border: 1.5px solid var(--border) !important;
  transition: all 0.2s !important;
  background: transparent !important;
}
.nav-login:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
  background: var(--accent-light) !important;
}
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all 0.2s !important;
  box-shadow: 0 2px 12px var(--accent-glow);
}
.nav-cta:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 5px;
  vertical-align: middle;
  opacity: 0.5;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 110;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px !important;
  border-radius: 10px;
  font-size: 0.84rem !important;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: var(--bg) !important;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text);
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: var(--shadow-lg);
    gap: 2px;
    z-index: 200;
  }
  .nav-links.open a { padding: 13px 16px !important; width: 100%; border-radius: 10px; font-size: 0.92rem; }
  .nav-links.open a:hover { background: var(--bg); }
  .nav-links.open .nav-cta { background: var(--accent) !important; color: #fff !important; text-align: center; margin-top: 4px; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    min-width: auto;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.25s ease, visibility 0.25s;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
    padding: 4px 0 4px 12px;
  }
  .nav-dropdown-menu a {
    font-size: 0.85rem !important;
    padding: 10px 16px !important;
    color: var(--text-muted) !important;
  }
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 0;
    visibility: hidden;
  }
  .nav-dropdown.open:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
  .nav-toggle { display: block; }
}

/* ═══════════════════════════════════════
   HERO — Generic
   ═══════════════════════════════════════ */
.hero {
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,85,61,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 100px; left: -300px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-center { text-align: center; }
.hero-split {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; text-align: center; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 18px 7px 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
  animation: fadeUp 0.5s ease both;
}
.eyebrow-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.eyebrow-dot::after {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2.5s ease infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(2.4rem, 6.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 22px;
  animation: fadeUp 0.5s ease 0.08s both;
}
.highlight {
  position: relative;
  display: inline-block;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: -2px; right: -2px;
  height: 14px;
  background: rgba(232,85,61,0.15);
  border-radius: 4px;
  z-index: -1;
}

.hero-desc {
  font-size: clamp(1.02rem, 2.3vw, 1.18rem);
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 38px;
  animation: fadeUp 0.5s ease 0.16s both;
  line-height: 1.7;
}
.hero-desc strong { color: var(--text); font-weight: 600; }

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  animation: fadeUp 0.5s ease 0.24s both;
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 16px 34px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.25s;
  box-shadow: 0 4px 24px var(--accent-glow), var(--shadow-sm);
  letter-spacing: -0.2px;
  border: none;
  cursor: pointer;
}
.btn-main:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px var(--accent-glow), var(--shadow-md);
}
.btn-main svg { transition: transform 0.2s; }
.btn-main:hover svg { transform: translateX(3px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 16px 34px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.btn-outline:hover {
  border-color: #ccc8c0;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 11px 24px;
  font-size: 0.88rem;
}

/* ═══════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════ */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 32px;
  animation: fadeUp 0.5s ease 0.32s both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════ */
.sec-header {
  text-align: center;
  margin-bottom: 48px;
}
.sec-header .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.sec-header h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -1.2px;
  margin-bottom: 12px;
}
.sec-header p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  font-size: 1.02rem;
}

/* ═══════════════════════════════════════
   SECTION PADDING
   ═══════════════════════════════════════ */
.section { padding: 80px 24px; }
.section-sm { padding: 50px 24px; }

/* ═══════════════════════════════════════
   LOGO CHIPS
   ═══════════════════════════════════════ */
.logos { padding: 40px 24px 60px; text-align: center; }
.logos-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 750px;
  margin: 0 auto;
}
.logo-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
  white-space: nowrap;
}
.logo-chip:hover {
  border-color: #ccc8c0;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════
   CARDS — Generic
   ═══════════════════════════════════════ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════
   SERVICES GRID (Homepage)
   ═══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; max-width: 400px; }
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
}
.service-icon.i-host { background: var(--accent-light); }
.service-icon.i-reseller { background: var(--blue-light); }
.service-icon.i-domain { background: #faf5ff; }
.service-icon.i-lifetime { background: var(--green-light); }
.service-icon.i-n8n { background: #fffbeb; }
.service-icon.i-ltreseller { background: #fef0ed; }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.service-card .price-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.service-card .btn-sm { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.pricing-row {
  display: grid;
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-row.cols-3 { grid-template-columns: repeat(3, 1fr); }
.pricing-row.cols-4 { grid-template-columns: repeat(4, 1fr); max-width: 1140px; }
@media (max-width: 1024px) {
  .pricing-row.cols-4 { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
}
@media (max-width: 860px) {
  .pricing-row.cols-3 { grid-template-columns: 1fr; max-width: 400px; }
}
@media (max-width: 600px) {
  .pricing-row.cols-4 { grid-template-columns: 1fr; max-width: 400px; }
}

.plan {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  position: relative;
}
.plan:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.plan.star {
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, #fff8f6 0%, #ffffff 40%);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--accent-glow);
  transform: scale(1.03);
}
.plan.star:hover {
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--accent-glow);
  transform: scale(1.03) translateY(-4px);
}
.plan-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 2px 10px var(--accent-glow);
}
.plan-tier {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.plan-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}
.plan-price {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}
.plan-billing {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 26px;
  font-weight: 500;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
  flex: 1;
}
.plan-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 450;
}
.plan-features li .ck {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.plan-features li .ck svg { color: var(--green); }
.plan-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.2px;
  transition: all 0.25s;
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text);
}
.plan-btn:hover {
  background: var(--surface);
  border-color: #ccc8c0;
  box-shadow: var(--shadow-sm);
}
.plan.star .plan-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.plan.star .plan-btn:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 30px var(--accent-glow);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════
   FEATURES GRID
   ═══════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; max-width: 400px; }
}
.feat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.feat:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.feat-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
}
.feat-icon.i1 { background: #fef0ed; }
.feat-icon.i2 { background: #ecfdf3; }
.feat-icon.i3 { background: #eff6ff; }
.feat-icon.i4 { background: #faf5ff; }
.feat-icon.i5 { background: #fffbeb; }
.feat-icon.i6 { background: #fef0ed; }
.feat h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.feat p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════ */
.stats-bar { padding: 50px 24px; }
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
.stat-box {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 16px;
  box-shadow: var(--shadow-sm);
}
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--accent);
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ═══════════════════════════════════════
   STEPS
   ═══════════════════════════════════════ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .steps-row { grid-template-columns: 1fr; max-width: 380px; }
}
.step {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 28px 34px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 3px 14px var(--accent-glow);
}
.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.step p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   COMPARISON
   ═══════════════════════════════════════ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .compare-grid { grid-template-columns: 1fr; }
}
.compare-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.compare-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.compare-card.negative { border-top: 3px solid #dc2626; }
.compare-card.positive { border-top: 3px solid var(--green); }
.compare-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-card ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.compare-card li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}
.compare-card li svg { flex-shrink: 0; margin-top: 2px; }

/* ═══════════════════════════════════════
   DOMAIN PRICING TABLE
   ═══════════════════════════════════════ */
.tld-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .tld-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .tld-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .tld-grid { grid-template-columns: 1fr; max-width: 300px; }
}
.tld-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.tld-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.tld-card .tld {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.tld-card .tld-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.tld-card .tld-period {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.tld-card .btn-sm {
  width: 100%;
  justify-content: center;
  padding: 9px 16px;
  font-size: 0.8rem;
}

/* Domain Search */
.domain-search {
  max-width: 620px;
  margin: 0 auto 50px;
  display: flex;
  gap: 0;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 100px;
  padding: 6px;
  box-shadow: var(--shadow-md);
  animation: fadeUp 0.5s ease 0.2s both;
}
.domain-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 24px;
  font-size: 1rem;
  font-family: inherit;
  background: transparent;
  color: var(--text);
}
.domain-search input::placeholder { color: var(--text-muted); }
.domain-search .btn-main {
  padding: 14px 28px;
  font-size: 0.92rem;
  white-space: nowrap;
  border-radius: 100px;
}
@media (max-width: 500px) {
  .domain-search { flex-direction: column; border-radius: var(--radius-lg); }
  .domain-search input { padding: 14px 18px; }
}

/* ═══════════════════════════════════════
   SPEC TABLE
   ═══════════════════════════════════════ */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .spec-grid { grid-template-columns: 1fr; }
}
.spec-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}
.spec-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.spec-item .spec-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.spec-item .spec-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-q {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  user-select: none;
  gap: 12px;
}
.faq-q .ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-q .ico {
  background: var(--accent-light);
  transform: rotate(45deg);
}
.faq-q .ico svg { color: var(--text-muted); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 24px 22px; }
.faq-a p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════ */
.final { padding: 90px 24px 50px; text-align: center; }
.final-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.final-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--orange-warm), var(--accent));
}
.final-card h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -1.2px;
  margin-bottom: 12px;
}
.final-card p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.02rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.final-guarantees {
  display: flex;
  justify-content: center;
  gap: 20px 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.fg-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 30px;
  padding: 60px 24px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.87rem;
  color: var(--text-muted);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  max-width: 1140px;
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-secondary); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent); }

/* ═══════════════════════════════════════
   PROMO BANNER
   ═══════════════════════════════════════ */
.promo-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #d44a33 100%);
  color: #fff;
  text-align: center;
  padding: 14px 24px;
  font-size: 0.88rem;
  font-weight: 600;
}
.promo-banner code {
  background: rgba(255,255,255,0.2);
  padding: 3px 10px;
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  margin-left: 6px;
}

/* ═══════════════════════════════════════
   STICKY MOBILE CTA
   ═══════════════════════════════════════ */
.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}
.sticky-mobile a {
  display: block;
  text-align: center;
  background: var(--accent);
  color: #fff;
  padding: 14px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px var(--accent-glow);
  transition: background 0.2s;
}
.sticky-mobile a:hover { background: var(--accent-hover); }
@media (max-width: 768px) {
  .sticky-mobile { display: block; }
  .site-footer { padding-bottom: 90px; }
}

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════
   SPEC TABS
   ═══════════════════════════════════════ */
.spec-tabs { max-width: 860px; margin: 0 auto; }
.spec-tab-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.spec-tab-btn {
  padding: 9px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Outfit', sans-serif;
}
.spec-tab-btn:hover { border-color: var(--accent); color: var(--accent); }
.spec-tab-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.spec-tab-content { display: none; }
.spec-tab-content.active { display: block; }
.spec-list {
  list-style: none;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}
.spec-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}
.spec-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ═══════════════════════════════════════
   PLUGINS BAR
   ═══════════════════════════════════════ */
.plugins-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}
.plugin-tag {
  padding: 8px 18px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.plugin-tag:hover { border-color: var(--accent); color: var(--accent); }

/* ═══════════════════════════════════════
   STEPS GRID (Installation)
   ═══════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .steps-grid { grid-template-columns: 1fr; }
  .spec-tab-btns { flex-direction: column; }
}

/* ═══════════════════════════════════════
   HERO TEXT — Left column in split hero
   ═══════════════════════════════════════ */
.hero-text { text-align: left; }
.hero-text .hero-desc { margin: 0 0 38px; max-width: none; }
.hero-text .hero-buttons { justify-content: flex-start; }
.hero-text .hero-trust { justify-content: flex-start; }

@media (max-width: 900px) {
  .hero-text { text-align: center; }
  .hero-text .hero-desc { margin: 0 auto 32px; max-width: 520px; }
  .hero-text .hero-buttons { justify-content: center; }
  .hero-text .hero-trust { justify-content: center; }
  .hero-split { gap: 36px; }
}

/* ═══════════════════════════════════════
   HERO VISUAL — Right side animation panel
   ═══════════════════════════════════════ */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  animation: fadeUp 0.6s ease 0.35s both;
}

@media (max-width: 640px) {
  .hero-visual { display: none; }
}

/* ═══════════════════════════════════════
   ANIMATION CARD BASE
   ═══════════════════════════════════════ */
.anim-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 26px 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  animation: heroFloat 5s ease-in-out infinite;
}
.anim-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--orange-warm), var(--accent));
  background-size: 200% 100%;
  animation: shimmerBar 3s linear infinite;
}

/* Buy/CTA button inside hero visual */
.anim-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 15px 28px;
  border-radius: 100px;
  font-size: 0.97rem;
  font-weight: 600;
  transition: all 0.25s;
  box-shadow: 0 4px 20px var(--accent-glow);
  text-decoration: none;
  letter-spacing: -0.2px;
  border: none;
  cursor: pointer;
}
.anim-buy-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
  color: #fff;
}

/* ─── SERVER DASHBOARD (index.html) ─── */
.anim-server-hd {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}
.anim-s-logo {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff; font-weight: 800;
  flex-shrink: 0;
}
.anim-s-info { line-height: 1.3; }
.anim-s-title { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.anim-s-sub { font-size: 0.68rem; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }
.anim-server-units { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.anim-unit {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg); border: 1px solid var(--border-light);
  border-radius: 10px; padding: 11px 14px;
}
.anim-leds { display: flex; gap: 4px; flex-shrink: 0; }
.anim-led {
  width: 7px; height: 7px; border-radius: 50%;
  animation: ledPulse 2.5s ease infinite;
}
.anim-led.g { background: var(--green); }
.anim-led.y { background: var(--orange-warm); animation-delay: 0.4s; }
.anim-led.r { background: var(--accent); animation-delay: 0.8s; }
.anim-unit-name {
  flex: 1;
  font-size: 0.78rem; font-weight: 600;
  font-family: 'JetBrains Mono', monospace; color: var(--text);
}
.anim-unit-status {
  font-size: 0.65rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  background: var(--green-light); color: var(--green);
}
.anim-metrics4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.anim-m4 {
  background: var(--bg); border: 1px solid var(--border-light);
  border-radius: 10px; padding: 10px 6px; text-align: center;
}
.anim-m4 .v { font-size: 0.95rem; font-weight: 800; color: var(--accent); letter-spacing: -0.5px; display: block; }
.anim-m4 .l { font-size: 0.58rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; margin-top: 2px; display: block; }

/* ─── BROWSER SPEED (shared-hosting.html) ─── */
.anim-browser-top {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-warm); border-radius: 12px 12px 0 0;
  padding: 11px 16px 9px;
  margin: -26px -24px 18px;
  border-bottom: 1px solid var(--border-light);
}
.anim-dots { display: flex; gap: 5px; }
.anim-dot { width: 10px; height: 10px; border-radius: 50%; }
.anim-dot.r { background: #ff5f57; }
.anim-dot.y { background: #febc2e; }
.anim-dot.g { background: #28c840; }
.anim-url-bar {
  flex: 1; background: var(--white); border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 14px;
  font-size: 0.68rem; font-family: 'JetBrains Mono', monospace; color: var(--text-muted);
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.anim-score-row { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.anim-perf-ring {
  width: 70px; height: 70px; border-radius: 50%;
  border: 4px solid var(--green); background: var(--green-light);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 0 0 5px rgba(26,140,94,0.1);
}
.anim-perf-ring .score { font-size: 1.3rem; font-weight: 800; color: var(--green); line-height: 1; }
.anim-perf-ring .slabel { font-size: 0.54rem; color: var(--green); font-weight: 700; text-transform: uppercase; }
.anim-perf-text .ptitle { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.anim-perf-text .psub { font-size: 0.72rem; color: var(--text-muted); line-height: 1.5; }
.anim-speed-row { margin-bottom: 16px; }
.anim-speed-top {
  display: flex; justify-content: space-between;
  font-size: 0.72rem; color: var(--text-muted); margin-bottom: 6px; font-weight: 500;
}
.anim-speed-top strong { color: var(--green); font-family: 'JetBrains Mono', monospace; }
.anim-track {
  height: 8px; background: var(--bg); border-radius: 100px;
  overflow: hidden; border: 1px solid var(--border-light);
}
.anim-fill {
  height: 100%; border-radius: 100px;
  background: linear-gradient(90deg, var(--green), #16a34a);
  width: 0; animation: fillBar 2.2s ease 0.8s forwards;
}
.anim-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.anim-pill {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 12px;
  font-size: 0.7rem; font-weight: 600; color: var(--text-secondary);
}

/* ─── WHM DASHBOARD (reseller-hosting.html) ─── */
.anim-whm-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--border-light);
}
.anim-whm-badge {
  font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; font-weight: 700;
  background: var(--blue); color: #fff; padding: 4px 12px; border-radius: 6px;
}
.anim-whm-cnt { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }
.anim-clients { display: flex; flex-direction: column; gap: 7px; margin-bottom: 12px; }
.anim-client {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg); border: 1px solid var(--border-light);
  border-radius: 10px; padding: 10px 14px;
  animation: slideIn 0.35s ease both;
}
.anim-client:nth-child(1) { animation-delay: 0.05s; }
.anim-client:nth-child(2) { animation-delay: 0.2s; }
.anim-client:nth-child(3) { animation-delay: 0.35s; }
.anim-cdot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; animation: ledPulse 3s ease infinite; }
.anim-cname { flex: 1; font-size: 0.78rem; font-weight: 600; font-family: 'JetBrains Mono', monospace; color: var(--text); }
.anim-cbadge { font-size: 0.62rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; background: var(--green-light); color: var(--green); }
.anim-add-row {
  display: flex; align-items: center; gap: 8px;
  border: 1.5px dashed var(--border); border-radius: 10px;
  padding: 10px 14px; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 14px;
}
.anim-plus {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; line-height: 1; flex-shrink: 0;
}
.anim-whm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.anim-wbox { text-align: center; background: var(--accent-light); border-radius: 10px; padding: 10px 6px; }
.anim-wbox .wv { font-size: 0.9rem; font-weight: 800; color: var(--accent); display: block; }
.anim-wbox .wl { font-size: 0.6rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; }

/* ─── LIFETIME SHARED ─── */
.anim-lt-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border-light);
}
.anim-inf { font-size: 2.4rem; display: inline-block; animation: heroFloat 3.5s ease-in-out infinite; }
.anim-lt-hinfo .ltitle { font-size: 1rem; font-weight: 800; color: var(--text); letter-spacing: -0.3px; }
.anim-lt-hinfo .lsub { font-size: 0.72rem; color: var(--accent); font-weight: 600; }
.anim-compare { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.anim-comp-row {
  display: flex; align-items: center; gap: 10px;
  border-radius: 10px; padding: 12px 16px;
  flex-wrap: wrap;
}
.anim-comp-row.bad { background: #fff5f5; border: 1px solid #fecaca; }
.anim-comp-row.good { background: var(--green-light); border: 1px solid #a7f3d0; }
.anim-comp-label { font-size: 0.78rem; font-weight: 600; flex: 1; }
.anim-comp-row.bad .anim-comp-label { color: #dc2626; }
.anim-comp-row.good .anim-comp-label { color: var(--green); }
.anim-comp-price { font-family: 'JetBrains Mono', monospace; font-size: 0.95rem; font-weight: 800; }
.anim-comp-row.bad .anim-comp-price { color: #dc2626; text-decoration: line-through; opacity: 0.85; }
.anim-comp-row.good .anim-comp-price { font-size: 1.15rem; color: var(--green); }
.anim-comp-tag { font-size: 0.65rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; white-space: nowrap; }
.anim-comp-row.bad .anim-comp-tag { background: #fee2e2; color: #dc2626; }
.anim-comp-row.good .anim-comp-tag { background: #fff; color: var(--green); }

/* ─── LIFETIME RESELLER (bar chart) ─── */
.anim-lt-res-hd {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--border-light);
}
.anim-res-icon {
  width: 36px; height: 36px; background: var(--blue-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.anim-res-info .rt { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.anim-res-info .rs { font-size: 0.68rem; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }
.anim-bars-wrap {
  display: flex; align-items: flex-end; gap: 6px;
  height: 72px; margin-bottom: 6px; padding: 0 4px;
}
.anim-b {
  flex: 1; border-radius: 6px 6px 0 0;
  border: 1.5px solid rgba(232,85,61,0.35); border-bottom: none;
  background: linear-gradient(180deg, rgba(232,85,61,0.18) 0%, rgba(232,85,61,0.04) 100%);
  animation: barUp 1s ease both;
  transform-origin: bottom;
}
.anim-b:nth-child(1) { animation-delay: 0.1s; }
.anim-b:nth-child(2) { animation-delay: 0.25s; }
.anim-b:nth-child(3) { animation-delay: 0.4s; }
.anim-b:nth-child(4) { animation-delay: 0.55s; }
.anim-b:nth-child(5) { animation-delay: 0.7s; background: linear-gradient(180deg, rgba(232,85,61,0.35) 0%, rgba(232,85,61,0.08) 100%); border-color: var(--accent); }
.anim-bars-labels {
  display: flex; gap: 6px; padding: 0 4px; margin-bottom: 14px;
}
.anim-bars-labels span {
  flex: 1; text-align: center;
  font-size: 0.58rem; color: var(--text-muted); font-family: 'JetBrains Mono', monospace;
}
.anim-roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.anim-roi {
  text-align: center; border-radius: 10px; padding: 11px 8px;
  background: var(--bg); border: 1px solid var(--border-light);
}
.anim-roi.green { background: var(--green-light); border-color: #a7f3d0; }
.anim-roi .rv { font-size: 1rem; font-weight: 800; letter-spacing: -0.5px; color: var(--accent); display: block; }
.anim-roi.green .rv { color: var(--green); }
.anim-roi .rl { font-size: 0.58rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; }

/* ─── DOMAIN VISUAL (register-domain.html) ─── */
.anim-dom-hd {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--border-light);
}
.anim-globe {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--orange-warm) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
  animation: heroFloat 4s ease-in-out infinite;
}
.anim-dom-info .dt { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.anim-dom-info .ds { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; }
.anim-domain-rows { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.anim-domain-row {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg); border: 1px solid var(--border-light);
  border-radius: 10px; padding: 10px 14px;
  animation: slideIn 0.35s ease both;
}
.anim-domain-row:nth-child(1) { animation-delay: 0.05s; }
.anim-domain-row:nth-child(2) { animation-delay: 0.2s; }
.anim-domain-row:nth-child(3) { animation-delay: 0.35s; }
.anim-domain-row:nth-child(4) { animation-delay: 0.5s; }
.anim-dext { font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; font-weight: 700; color: var(--text); width: 58px; flex-shrink: 0; }
.anim-davail { flex: 1; font-size: 0.7rem; font-weight: 600; color: var(--green); }
.anim-dprice { font-family: 'JetBrains Mono', monospace; font-size: 0.82rem; font-weight: 700; color: var(--accent); }
.anim-tlds { display: flex; flex-wrap: wrap; gap: 6px; }
.anim-tld-pill {
  background: var(--accent-light); border: 1px solid rgba(232,85,61,0.15);
  border-radius: 100px; padding: 4px 12px;
  font-size: 0.68rem; font-weight: 700; color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
}

/* ═══════════════════════════════════════
   ANIMATION KEYFRAMES
   ═══════════════════════════════════════ */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes ledPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}
@keyframes fillBar {
  from { width: 0; }
  to { width: 93%; }
}
@keyframes barUp {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes shimmerBar {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ═══════════════════════════════════════
   GLOBAL MOBILE IMPROVEMENTS
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .hero { padding: 120px 20px 64px; }
  .hero h1 { letter-spacing: -1.2px; }
  .section { padding: 60px 20px; }
  .section-sm { padding: 40px 20px; }
  .final-card { padding: 40px 22px; }
  .final-guarantees { gap: 14px 22px; }
  .btn-main, .btn-outline { padding: 14px 28px; font-size: 0.96rem; min-height: 48px; }
  .plan { padding: 26px 20px; }
  .plan-price { font-size: 2.2rem; }
  .faq-q { font-size: 0.9rem; padding: 18px 20px; }
  .faq-a-inner { padding: 0 20px 18px; }
  .spec-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; max-width: 560px; }
}

@media (max-width: 560px) {
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn-main,
  .hero-buttons .btn-outline { justify-content: center; width: 100%; }
  .hero-trust { gap: 12px 20px; }
  .features-grid { grid-template-columns: 1fr; max-width: 400px; }
  .services-grid { grid-template-columns: 1fr; max-width: 360px; }
  .pricing-row.cols-3 { grid-template-columns: 1fr; max-width: 360px; }
  .anim-metrics4 { grid-template-columns: repeat(2, 1fr); }
  .domain-search { flex-direction: column; border-radius: var(--radius-lg); padding: 8px; }
}

@media (max-width: 420px) {
  .nav-inner { padding: 8px 16px; }
  .nav-logo { font-size: 1.45rem; }
  .hero h1 { font-size: 2.1rem; letter-spacing: -1px; }
  .sec-header h2 { font-size: 1.6rem; letter-spacing: -0.8px; }
  .sec-header p { font-size: 0.92rem; }
  .final-card h2 { font-size: 1.65rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .plan-features li { font-size: 0.82rem; }
  .payment-logos { gap: 5px; }
  .pay-label { display: none; }
}

/* ─── DOMAIN SEARCH inside hero-text ─── */
.hero-text .domain-search {
  margin: 0 0 40px;
  max-width: 100%;
}
@media (max-width: 900px) {
  .hero-text .domain-search { margin: 0 auto 40px; max-width: 560px; }
}

/* ─── HERO SPLIT alignment fixes ─── */
@media (max-width: 900px) {
  .hero-split { text-align: center !important; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .anim-card { animation: none; } /* disable float on tablet for stability */
}

/* ─── PLAN CARDS mobile spacing ─── */
@media (max-width: 860px) {
  .plan.star { transform: scale(1.0); } /* remove scale on small screens */
  .plan.star:hover { transform: translateY(-4px); }
  .pricing-row { max-width: 420px; margin: 0 auto; }
}

/* ─── WHM stats / metrics touch fix ─── */
@media (max-width: 480px) {
  .anim-whm-grid { grid-template-columns: 1fr 1fr; }
  .anim-metrics4 { grid-template-columns: 1fr 1fr; }
  .anim-roi-grid { grid-template-columns: 1fr; }
  .anim-bars-wrap { height: 60px; }
}

/* ─── NAV DROPDOWN mobile open on tap ─── */
@media (max-width: 860px) {
  .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 0 0 16px !important;
    background: transparent !important;
    min-width: 0 !important;
  }
}

/* ═══════════════════════════════════════
   SCENE CAROUSEL — 5-scene rotating hero
   ═══════════════════════════════════════ */
.scene-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.scene-card {
  display: none;
  flex-direction: column;
  gap: 14px;
}
.scene-card.active {
  display: flex;
  animation: sceneFade 0.45s ease both;
}

@keyframes sceneFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Service label row above each animation card */
.scene-service-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 9px 18px;
  box-shadow: var(--shadow-sm);
}
.ssl-icon { font-size: 1rem; flex-shrink: 0; }
.ssl-name  { font-weight: 700; font-size: 0.88rem; color: var(--text); flex: 1; }
.ssl-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem; font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  padding: 3px 11px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Dot navigation */
.scene-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.scene-dot {
  height: 7px; width: 7px;
  border-radius: 100px;
  background: var(--border);
  background-clip: content-box;
  border: 9px solid transparent; /* larger tap area without changing visual */
  cursor: pointer;
  transition: all 0.35s;
  padding: 0;
  box-sizing: content-box;
}
.scene-dot.active {
  background: var(--accent);
  background-clip: content-box;
  width: 24px;
}

/* ─── n8n WORKFLOW ANIMATION (homepage scene 4) ─── */
.anim-n8n-hd {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}
.anim-n8n-logo {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ea4b71, #ff6b35);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; color: #fff; font-weight: 800;
  flex-shrink: 0; letter-spacing: -0.5px;
  line-height: 1.2; text-align: center;
}
.anim-n8n-flow {
  display: flex; align-items: center; justify-content: center;
  gap: 5px; margin-bottom: 14px; flex-wrap: nowrap;
}
.anim-n8n-node {
  display: flex; flex-direction: column; align-items: center;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 9px 10px; min-width: 52px;
  box-shadow: var(--shadow-sm);
}
.anim-n8n-node.trigger { border-color: var(--green); background: var(--green-light); }
.anim-n8n-node.output  { border-color: var(--accent); background: var(--accent-light); }
.anim-n8n-node-icon    { font-size: 1rem; margin-bottom: 3px; }
.anim-n8n-node-label   { font-size: 0.56rem; font-weight: 600; color: var(--text-secondary); text-align: center; }
.anim-n8n-arr          { font-size: 0.85rem; color: var(--text-muted); flex-shrink: 0; }

.anim-n8n-executions {
  background: var(--bg); border: 1px solid var(--border-light);
  border-radius: 10px; padding: 10px 14px;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.anim-n8n-executions .exec-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }
.anim-n8n-executions .exec-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.88rem; font-weight: 700; color: var(--green);
}
.anim-n8n-executions .exec-badge {
  font-size: 0.6rem; font-weight: 700;
  background: var(--green-light); color: var(--green);
  padding: 3px 9px; border-radius: 100px;
}
.anim-n8n-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.anim-n8n-stat {
  text-align: center; background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 10px; padding: 10px 6px;
}
.anim-n8n-stat .nv {
  font-size: 0.95rem; font-weight: 800; color: var(--accent);
  display: block;
}
.anim-n8n-stat .nl {
  font-size: 0.58rem; color: var(--text-muted); font-weight: 600;
  text-transform: uppercase; margin-top: 2px; display: block;
}

/* ═══════════════════════════════════════
   PAYMENT LOGOS — footer payment badges
   ═══════════════════════════════════════ */
.payment-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pay-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--text-muted);
  white-space: nowrap;
  margin-right: 6px;
}
.pay-badge {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  height: 30px;
  padding: 0 11px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
  cursor: default;
}
.pay-badge:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.pay-ico {
  color: var(--accent);
  display: flex;
  align-items: center;
  line-height: 1;
}
.pay-btc {
  font-size: 0.9rem;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  line-height: 1;
}
.pay-nm {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1;
}

/* ═══════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════ */
.legal-hero {
  padding: 110px 24px 60px;
  text-align: center;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
}
.legal-hero h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin: 12px 0 16px;
  color: var(--text);
}
.legal-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.legal-toc {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin-bottom: 44px;
  box-shadow: var(--shadow-sm);
}
.legal-toc h3 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.legal-toc ol {
  padding-left: 18px;
  columns: 2;
  column-gap: 30px;
}
.legal-toc li { margin-bottom: 5px; }
.legal-toc li a { font-size: 0.86rem; color: var(--text-secondary); transition: color 0.2s; }
.legal-toc li a:hover { color: var(--accent); }
@media (max-width: 560px) { .legal-toc ol { columns: 1; } }
.legal-section {
  margin-bottom: 44px;
  scroll-margin-top: 80px;
}
.legal-section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-num {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.legal-section p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 12px;
}
.legal-section ul, .legal-section ol { padding-left: 22px; margin-bottom: 14px; }
.legal-section li { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 5px; }
.legal-section strong { color: var(--text); font-weight: 600; }
.legal-highlight {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 28px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.legal-highlight strong { color: var(--accent); }
.legal-info-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  margin-top: 48px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}
.legal-info-box .lib-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.legal-info-box .lib-body h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 6px; }
.legal-info-box .lib-body p  { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.legal-info-box .lib-body a  { color: var(--accent); font-weight: 600; }
