/* ══════════════════════════════════════════
   HOSTIERA — Global Stylesheet
   Primary: #674cc4
══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg:        #07080F;
  --surface:   #0C0E1A;
  --card:      #101320;
  --card2:     #141728;
  --border:    #1E2240;
  --accent:    #674cc4;
  --accent-h:  #7c62d4;
  --accent-l:  rgba(103,76,196,0.15);
  --accent2:   #9b7ef0;
  --text:      #E8EBF8;
  --muted:     #6B72A3;
  --green:     #22C55E;
  --red:       #EF4444;
  --yellow:    #FBB72B;
  --mono:      'JetBrains Mono', monospace;
  --sans:      'Space Grotesk', sans-serif;
  --radius:    12px;
  --shadow:    0 8px 32px rgba(103,76,196,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }

/* ══════════ NAVBAR ══════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px;
  display: flex; align-items: center;
  background: rgba(7,8,15,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 4%;
  gap: 0;
}
.nav-logo {
  font-size: 1.45rem; font-weight: 700; color: var(--text);
  letter-spacing: -0.03em; white-space: nowrap;
  display: flex; align-items: center; gap: 2px; margin-right: 32px;
}
.nav-logo span { color: var(--accent); }
.nav-logo sub { font-size: 0.5rem; color: var(--muted); font-weight: 400; vertical-align: super; margin-left: 2px; }

/* Mega menu nav */
.nav-menu {
  display: flex; align-items: center; gap: 4px;
  list-style: none; flex: 1;
}
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  color: var(--muted); font-size: 0.875rem; font-weight: 500;
  padding: 8px 12px; border-radius: 8px;
  transition: color 0.2s, background 0.2s; cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover, .nav-item:hover .nav-link { color: var(--text); background: var(--accent-l); }
.nav-link .chevron { font-size: 0.6rem; transition: transform 0.2s; }
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px;
  min-width: 220px; z-index: 200;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: var(--shadow);
}
.nav-item:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px; color: var(--muted);
  font-size: 0.875rem; transition: background 0.15s, color 0.15s;
}
.dropdown a:hover { background: var(--accent-l); color: var(--text); }
.dropdown a .d-icon { font-size: 1rem; width: 22px; text-align: center; }
.dropdown-title {
  font-size: 0.7rem; font-family: var(--mono); color: var(--accent);
  padding: 8px 12px 4px; letter-spacing: 0.08em; text-transform: uppercase;
}
.dropdown-sep { height: 1px; background: var(--border); margin: 6px 0; }

.nav-right {
  display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0;
}
.btn-ghost {
  color: var(--muted); font-size: 0.85rem; padding: 7px 14px;
  border-radius: 8px; border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s; white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--text); }
.btn-primary {
  background: var(--accent); color: #fff; padding: 8px 18px;
  border-radius: 8px; font-weight: 600; font-size: 0.875rem;
  transition: background 0.2s, transform 0.15s; white-space: nowrap; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--accent-h); transform: translateY(-1px); }

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

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--surface); z-index: 999; overflow-y: auto; padding: 20px 5%;
}
.mobile-nav.open { display: block; }
.mobile-section { margin-bottom: 24px; }
.mobile-section-title {
  font-size: 0.7rem; font-family: var(--mono); color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px;
}
.mobile-nav a {
  display: block; padding: 11px 0; color: var(--muted); font-size: 0.95rem;
  border-bottom: 1px solid var(--border); transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--text); }
.mobile-cta { display: flex; gap: 10px; margin-top: 20px; }
.mobile-cta .btn-primary, .mobile-cta .btn-ghost { flex: 1; text-align: center; }

/* ══════════ PAGE WRAPPER ══════════ */
.page { display: none; }
.page.active { display: block; }
main { padding-top: 68px; }

/* ══════════ HERO ══════════ */
.hero {
  min-height: calc(100vh - 68px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 80px 5% 60px;
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(103,76,196,0.18) 0%, transparent 65%);
  pointer-events: none; animation: glowPulse 4s ease-in-out infinite;
}
.hero-glow2 {
  position: absolute; bottom: -10%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(103,76,196,0.08) 0%, transparent 65%);
  pointer-events: none;
}
@keyframes glowPulse { 0%,100%{opacity:0.6} 50%{opacity:1} }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(103,76,196,0.12); border: 1px solid rgba(103,76,196,0.35);
  color: var(--accent2); padding: 6px 16px; border-radius: 99px;
  font-size: 0.78rem; font-family: var(--mono); margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.live-dot {
  width: 7px; height: 7px; background: var(--green);
  border-radius: 50%; animation: blink 1.4s infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.8rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -0.035em;
  max-width: 860px; margin-bottom: 22px;
  animation: fadeUp 0.65s 0.1s ease both;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero h1 .line2 { display: block; }
.hero-sub {
  font-size: 1.05rem; color: var(--muted); max-width: 540px;
  margin-bottom: 40px; line-height: 1.75;
  animation: fadeUp 0.65s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 48px; animation: fadeUp 0.65s 0.3s ease both;
}
.btn-lg { padding: 13px 28px; font-size: 1rem; border-radius: 10px; }
.btn-outline {
  background: transparent; color: var(--text); padding: 13px 28px;
  border-radius: 10px; border: 1px solid var(--border); font-weight: 500;
  font-size: 1rem; transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--accent); background: var(--accent-l); }

/* Domain search */
.domain-bar {
  display: flex; align-items: stretch;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; max-width: 580px; width: 100%;
  animation: fadeUp 0.65s 0.4s ease both;
  transition: border-color 0.2s;
}
.domain-bar:focus-within { border-color: var(--accent); }
.domain-bar input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-family: var(--sans); font-size: 1rem;
  padding: 15px 18px;
}
.domain-bar input::placeholder { color: var(--muted); }
.domain-bar button {
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  padding: 0 24px; font-family: var(--sans); font-weight: 600;
  font-size: 0.9rem; transition: background 0.2s; white-space: nowrap;
}
.domain-bar button:hover { background: var(--accent-h); }

/* Domain extensions */
.domain-ext {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-top: 14px; animation: fadeUp 0.65s 0.45s ease both;
}
.ext-tag {
  background: var(--card); border: 1px solid var(--border);
  padding: 4px 12px; border-radius: 99px; font-size: 0.78rem;
  color: var(--muted); font-family: var(--mono);
}
.ext-tag span { color: var(--green); font-weight: 600; }

/* Stats */
.hero-stats {
  display: flex; gap: 0; flex-wrap: wrap; justify-content: center;
  margin-top: 60px; width: 100%; max-width: 700px;
  animation: fadeUp 0.65s 0.5s ease both;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--card); overflow: hidden;
}
.stat-item {
  flex: 1; min-width: 140px; text-align: center; padding: 20px 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-val { font-size: 1.9rem; font-weight: 700; color: var(--text); line-height: 1; }
.stat-val em { color: var(--accent); font-style: normal; }
.stat-lab { font-size: 0.72rem; color: var(--muted); font-family: var(--mono); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }

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

/* ══════════ TICKER ══════════ */
.ticker-wrap {
  background: var(--surface); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0; overflow: hidden; white-space: nowrap;
}
.ticker-inner {
  display: inline-flex; gap: 48px;
  animation: ticker 30s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  font-family: var(--mono); font-size: 0.78rem; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.ticker-item .dot { color: var(--accent); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════ SECTION COMMONS ══════════ */
.section { padding: 96px 5%; }
.section-sm { padding: 64px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: var(--mono); font-size: 0.72rem; color: var(--accent);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.section-label::before { content: '//'; opacity: 0.5; }
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 700;
  line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 14px;
}
.section-sub {
  color: var(--muted); max-width: 520px; line-height: 1.75; font-size: 1rem;
}
.t-center { text-align: center; }
.t-center .section-sub { margin: 0 auto; }
.t-center .section-label { justify-content: center; }

/* ══════════ FEATURES ══════════ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.feat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0; transition: opacity 0.25s;
}
.feat-card:hover::before { opacity: 1; }
.feat-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow); }
.feat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-l); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 18px;
  border: 1px solid rgba(103,76,196,0.25);
}
.feat-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.feat-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; }

/* Speed bars */
.speed-bar { margin-top: 16px; }
.speed-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.speed-name { color: var(--muted); width: 56px; font-family: var(--mono); font-size: 0.72rem; flex-shrink: 0; }
.bar-track { flex: 1; height: 5px; background: var(--border); border-radius: 99px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 99px; transition: width 1.5s ease; }
.bar-fill.nvme { background: linear-gradient(90deg, var(--accent), var(--accent2)); width: 0; }
.bar-fill.sata { background: var(--muted); width: 0; }
.bar-fill.hdd  { background: #3a3f5a; width: 0; }
.bar-fill.nvme.animate { width: 90%; }
.bar-fill.sata.animate { width: 34%; }
.bar-fill.hdd.animate  { width: 11%; }
.speed-val { font-family: var(--mono); font-size: 0.72rem; color: var(--text); width: 75px; flex-shrink: 0; }

/* Terminal */
.terminal {
  background: #060810; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden; margin-top: 16px;
}
.term-header {
  background: var(--surface); padding: 10px 14px;
  display: flex; align-items: center; gap: 6px; border-bottom: 1px solid var(--border);
}
.term-dot { width: 10px; height: 10px; border-radius: 50%; }
.term-dot.r { background: #EF4444; }
.term-dot.y { background: #FBB72B; }
.term-dot.g { background: #22C55E; }
.term-title { font-family: var(--mono); font-size: 0.72rem; color: var(--muted); margin-left: 6px; }
.term-body { padding: 14px 16px; font-family: var(--mono); font-size: 0.78rem; line-height: 1.8; }
.t-prompt { color: var(--accent); }
.t-cmd { color: var(--text); }
.t-dim { color: var(--muted); }
.t-ok { color: var(--green); }
.t-err { color: var(--red); }
.cursor { display: inline-block; width: 8px; height: 14px; background: var(--accent); animation: blink 1s infinite; vertical-align: middle; }

/* Shield badges */
.shield-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.shield {
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25);
  color: var(--green); padding: 4px 10px; border-radius: 6px;
  font-size: 0.75rem; font-weight: 500; font-family: var(--mono);
}

/* ══════════ PRICING ══════════ */
.pricing-toggle {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 32px 0 40px;
}
.tog-label { font-size: 0.9rem; color: var(--muted); font-weight: 500; transition: color 0.2s; }
.tog-label.active { color: var(--text); }
.toggle-pill {
  width: 48px; height: 26px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 99px; position: relative; cursor: pointer;
  transition: background 0.3s;
}
.toggle-pill.on { background: var(--accent); border-color: var(--accent); }
.toggle-pill::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; background: #fff; border-radius: 50%;
  transition: transform 0.3s; box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.toggle-pill.on::after { transform: translateX(22px); }
.save-badge {
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3);
  color: var(--green); padding: 3px 10px; border-radius: 99px;
  font-size: 0.72rem; font-weight: 600; font-family: var(--mono);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.plan-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 30px; position: relative;
  transition: border-color 0.25s, transform 0.25s;
  display: flex; flex-direction: column;
}
.plan-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.plan-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, #12152a 0%, #0e1220 100%);
  box-shadow: 0 0 40px rgba(103,76,196,0.18);
}
.featured-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; padding: 4px 16px;
  border-radius: 99px; font-size: 0.72rem; font-weight: 700;
  white-space: nowrap; font-family: var(--mono);
}
.plan-tag { font-family: var(--mono); font-size: 0.7rem; color: var(--accent); margin-bottom: 6px; }
.plan-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.plan-desc { font-size: 0.85rem; color: var(--muted); margin-bottom: 22px; line-height: 1.5; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.price-amt { font-size: 2.4rem; font-weight: 700; }
.price-per { color: var(--muted); font-size: 0.85rem; }
.plan-yearly { font-size: 0.8rem; color: var(--muted); margin-bottom: 24px; min-height: 20px; }
.plan-features { list-style: none; margin-bottom: 28px; flex: 1; }
.plan-features li {
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: 0.875rem; color: var(--muted);
  display: flex; align-items: flex-start; gap: 10px;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan-features li strong { color: var(--text); }
.plan-btn-wrap { margin-top: auto; }
.plan-btn {
  display: block; text-align: center; padding: 12px 20px;
  border-radius: 10px; font-weight: 600; font-size: 0.9rem;
  transition: all 0.2s; border: none; cursor: pointer; font-family: var(--sans);
}
.plan-btn.solid { background: var(--accent); color: #fff; }
.plan-btn.solid:hover { background: var(--accent-h); transform: translateY(-1px); }
.plan-btn.line { background: transparent; color: var(--text); border: 1px solid var(--border); }
.plan-btn.line:hover { border-color: var(--accent); background: var(--accent-l); }

/* ══════════ WHY SECTION ══════════ */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.why-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px;
  transition: border-color 0.25s;
}
.why-card:hover { border-color: var(--accent); }
.why-num { font-family: var(--mono); font-size: 0.7rem; color: var(--accent); margin-bottom: 10px; }
.why-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; }

/* ══════════ REVIEWS ══════════ */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.review-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.stars { color: var(--yellow); font-size: 0.9rem; margin-bottom: 14px; }
.review-text {
  color: var(--muted); font-size: 0.875rem; line-height: 1.75;
  margin-bottom: 20px; font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.r-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 0.85rem;
  color: #fff; flex-shrink: 0;
}
.r-name { font-size: 0.875rem; font-weight: 600; }
.r-role { font-size: 0.75rem; color: var(--muted); }

/* ══════════ CTA STRIP ══════════ */
.cta-strip {
  background: linear-gradient(135deg, rgba(103,76,196,0.15) 0%, rgba(155,126,240,0.08) 100%);
  border: 1px solid rgba(103,76,196,0.25);
  border-radius: 20px; padding: 64px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-strip::after {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(103,76,196,0.2), transparent 70%);
}
.cta-strip h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; margin-bottom: 12px; }
.cta-strip p { color: var(--muted); margin-bottom: 28px; }
.cta-terminal {
  display: inline-block; background: rgba(0,0,0,0.4); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 20px; margin-top: 24px;
  font-family: var(--mono); font-size: 0.78rem; color: var(--muted);
}
.cta-terminal .t-ok { color: var(--green); }

/* ══════════ FOOTER ══════════ */
.footer {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 64px 5% 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand p { color: var(--muted); font-size: 0.875rem; line-height: 1.75; margin: 14px 0 20px; max-width: 240px; }
.footer-contact { font-size: 0.8rem; }
.footer-contact a { color: var(--accent); display: block; margin-bottom: 4px; }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--muted); font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }
.status-indicator {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 0.72rem; color: var(--green);
}
.status-indicator::before { content: ''; width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: blink 2s infinite; }

/* ══════════ INNER PAGES ══════════ */
.page-hero {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 80px 5% 64px; text-align: center;
}
.page-hero-inner { max-width: 700px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; margin-bottom: 14px; letter-spacing: -0.025em; }
.page-hero p { color: var(--muted); font-size: 1rem; line-height: 1.75; }

/* Cards grid for inner pages */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 48px;
}
.info-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color 0.25s, transform 0.2s;
}
.info-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.info-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
.info-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; }
.info-card .card-price {
  font-size: 1.8rem; font-weight: 700; color: var(--accent); margin: 14px 0 4px;
}
.info-card .card-price span { font-size: 0.85rem; color: var(--muted); font-weight: 400; }

/* Comparison table */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 40px; }
.compare-table th, .compare-table td {
  padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.compare-table th { background: var(--card); color: var(--muted); font-weight: 600; font-family: var(--mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }
.compare-table td { color: var(--muted); }
.compare-table td:first-child { color: var(--text); font-weight: 500; }
.compare-table .check { color: var(--green); font-weight: 700; }
.compare-table .cross { color: var(--red); }
.compare-table tr:hover td { background: var(--card); }

/* Status page */
.status-grid { display: grid; gap: 12px; margin-top: 40px; }
.status-row {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
}
.status-name { font-weight: 500; }
.status-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-family: var(--mono);
}
.status-badge.up { color: var(--green); }
.status-badge.up::before { content: '●'; font-size: 0.6rem; }
.status-badge.down { color: var(--red); }
.status-badge.down::before { content: '●'; font-size: 0.6rem; }
.status-badge.degraded { color: var(--yellow); }
.status-badge.degraded::before { content: '●'; font-size: 0.6rem; }
.uptime-bar { display: flex; gap: 2px; margin-top: 6px; }
.uptime-seg {
  height: 28px; flex: 1; border-radius: 3px; background: var(--green);
  opacity: 0.7; transition: opacity 0.2s;
}
.uptime-seg:hover { opacity: 1; }
.uptime-seg.incident { background: var(--red); }
.uptime-seg.degraded { background: var(--yellow); }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 14px; color: var(--text);
  font-family: var(--sans); font-size: 0.9rem; outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--card); }
.contact-info { }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.ci-icon {
  width: 42px; height: 42px; border-radius: 10px; background: var(--accent-l);
  border: 1px solid rgba(103,76,196,0.3); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.ci-label { font-size: 0.78rem; color: var(--muted); margin-bottom: 2px; }
.ci-val { font-size: 0.9rem; font-weight: 500; }
.ci-val a { color: var(--accent); }

/* FAQ */
.faq-list { margin-top: 40px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; margin-bottom: 10px; overflow: hidden;
}
.faq-q {
  padding: 18px 22px; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  font-weight: 500; font-size: 0.95rem; transition: background 0.2s;
}
.faq-q:hover { background: var(--card2); }
.faq-q .arrow { color: var(--accent); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  padding: 0 22px; color: var(--muted); font-size: 0.9rem; line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 18px; }

/* Policy pages */
.policy-content { max-width: 780px; margin: 0 auto; padding: 64px 5%; }
.policy-content h2 { font-size: 1.3rem; font-weight: 600; margin: 40px 0 12px; color: var(--text); }
.policy-content p { color: var(--muted); line-height: 1.8; margin-bottom: 14px; font-size: 0.9rem; }
.policy-content ul { color: var(--muted); padding-left: 20px; margin-bottom: 14px; }
.policy-content ul li { margin-bottom: 6px; font-size: 0.9rem; line-height: 1.7; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--muted); margin-bottom: 20px;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--muted); }

/* Highlight box */
.highlight-box {
  background: var(--accent-l); border: 1px solid rgba(103,76,196,0.3);
  border-radius: 10px; padding: 20px 22px; margin: 20px 0;
}
.highlight-box p { color: var(--text); margin: 0; font-size: 0.875rem; }

/* ══════════ ANIMATIONS ══════════ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Floating particles */
.particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute; width: 2px; height: 2px;
  background: var(--accent); border-radius: 50%; opacity: 0.4;
  animation: float linear infinite;
}
@keyframes float {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.4; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-right { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 5%; }
  .feat-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .cta-strip { padding: 48px 24px; }
  .domain-bar { flex-direction: column; border-radius: 12px; }
  .domain-bar button { border-radius: 0 0 10px 10px; padding: 13px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-lg, .btn-outline { width: 100%; max-width: 300px; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-toggle { flex-wrap: wrap; justify-content: center; }
  .hero h1 { font-size: 2rem; }
}
