/* ============================================
   HOSTVOGO — Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif&family=Inter+Tight:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #0a0e1a;
  --bg-soft: #0f1424;
  --bg-elevated: #151a2e;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f6fb;
  --text-soft: #b8c0d4;
  --text-muted: #7c879f;
  --accent: #00d4ff;
  --accent-2: #7c5cff;
  --accent-glow: rgba(0, 212, 255, 0.4);
  --accent-soft: rgba(0, 212, 255, 0.08);
  --success: #34d399;
  --warning: #fbbf24;
  --danger: #f87171;
  --max-w: 1240px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --font-display: 'Instrument Serif', 'Times New Roman', serif;
  --font-sans: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 10%, rgba(0, 212, 255, 0.08), transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 30%, rgba(124, 92, 255, 0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4, h5, h6 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.serif { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; font-style: italic; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ============ TOP BAR ============ */
.topbar {
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.1), rgba(124, 92, 255, 0.1));
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  padding: 10px 0;
  position: relative;
  z-index: 50;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-msg { color: var(--text-soft); }
.topbar-msg strong { color: var(--text); }
.topbar-actions { display: flex; gap: 18px; align-items: center; }
.currency-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-soft);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.3);
  transition: border-color 0.2s;
}
.currency-switcher:hover { border-color: var(--accent); }
.currency-switcher select {
  background: transparent;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
  outline: none;
}
.currency-switcher select option { background: var(--bg-elevated); }

/* ============ NAVIGATION ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; gap: 32px; }
.logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-mark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 16px;
  color: var(--bg);
}
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: 8px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a:hover { color: var(--text); background: var(--bg-card); }
.nav-links .has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text-soft) !important;
  background: transparent !important;
}
.dropdown-item:hover { background: var(--bg-card) !important; color: var(--text) !important; }
.dropdown-item .item-title { display: block; color: var(--text); font-weight: 600; font-size: 14px; }
.dropdown-item .item-desc { display: block; color: var(--text-muted); font-size: 12.5px; margin-top: 2px; }
.dropdown-item .badge-soon {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  background: rgba(251, 191, 36, 0.15);
  color: var(--warning);
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 6px;
  letter-spacing: 0.05em;
}
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 8px 24px -8px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -8px var(--accent-glow);
  background: #29deff;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-card); border-color: var(--accent); }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ============ HERO ============ */
.hero { padding: 80px 0 100px; position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--accent);
  font-family: var(--font-mono);
  margin-bottom: 24px;
}
.hero-eyebrow .pulse {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { opacity: 0.6; box-shadow: 0 0 0 8px transparent; }
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.02;
  margin-bottom: 24px;
  letter-spacing: -0.035em;
}
.hero h1 .accent-word {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 19px;
  color: var(--text-soft);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.5;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-soft);
}
.trust-item .check {
  width: 18px;
  height: 18px;
  background: rgba(52, 211, 153, 0.15);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--success);
  font-size: 11px;
}

.domain-search {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.domain-search h3 { font-size: 18px; margin-bottom: 4px; }
.domain-search .sub { font-size: 13.5px; color: var(--text-muted); margin-bottom: 18px; }
.search-row { display: flex; gap: 8px; }
.search-row input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--text);
  font-family: var(--font-mono);
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}
.search-row input:focus { border-color: var(--accent); }
.search-row input::placeholder { color: var(--text-muted); }
.tld-pills { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.tld-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12.5px;
  font-family: var(--font-mono);
  color: var(--text-soft);
}
.tld-pill .tld { color: var(--accent); font-weight: 500; }
.tld-pill .price { color: var(--text-muted); }

/* ============ STATS STRIP ============ */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  background: rgba(0, 0, 0, 0.2);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-num .unit { font-size: 22px; color: var(--accent); margin-left: 2px; }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 6px; font-family: var(--font-mono); }

/* ============ SECTIONS ============ */
section { padding: 100px 0; position: relative; z-index: 1; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 16px;
}
.section-title .serif { color: var(--accent); }
.section-sub { font-size: 17px; color: var(--text-soft); line-height: 1.55; }

/* ============ PRODUCTS GRID ============ */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.product-card:hover { border-color: var(--accent); transform: translateY(-4px); background: var(--bg-elevated); }
.product-card.coming-soon { opacity: 0.85; }
.product-card.coming-soon::after {
  content: 'COMING SOON';
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  background: rgba(251, 191, 36, 0.15);
  color: var(--warning);
  padding: 3px 8px;
  border-radius: 4px;
}
.product-card .icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(124, 92, 255, 0.15));
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.product-card h3 { font-size: 20px; margin-bottom: 6px; }
.product-card .ptag { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.product-card .price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 20px; }
.product-card .from { font-size: 11px; color: var(--text-muted); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.05em; }
.product-card .amount { font-family: var(--font-display); font-size: 38px; color: var(--text); }
.product-card .per { color: var(--text-muted); font-size: 14px; }
.product-card ul { list-style: none; margin-bottom: 24px; }
.product-card ul li {
  font-size: 13.5px;
  color: var(--text-soft);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-card ul li::before {
  content: '';
  width: 14px;
  height: 14px;
  background: rgba(0, 212, 255, 0.12);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'><path d='M3 7l3 3 5-6' stroke='%2300d4ff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: contain;
}
.product-card .btn { width: 100%; }

/* ============ PRICING TOGGLE ============ */
.billing-toggle {
  display: inline-flex;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 40px;
}
.billing-toggle button {
  padding: 10px 22px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: 100px;
  transition: all 0.2s;
}
.billing-toggle button.active { background: var(--accent); color: var(--bg); font-weight: 600; }
.billing-toggle .save {
  font-size: 10px;
  background: rgba(52, 211, 153, 0.2);
  color: var(--success);
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 6px;
  font-family: var(--font-mono);
}
.billing-toggle button.active .save { background: rgba(0, 0, 0, 0.2); color: var(--bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s;
}
.plan-card.featured {
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.06), rgba(0, 212, 255, 0.01));
  border-color: var(--accent);
  transform: scale(1.03);
}
.plan-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.plan-card .plan-name {
  font-size: 14px;
  font-family: var(--font-mono);
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.plan-card h3 { font-family: var(--font-display); font-size: 32px; font-weight: 400; margin-bottom: 16px; }
.plan-card .plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.plan-card .plan-price .currency { font-size: 22px; color: var(--text-muted); }
.plan-card .plan-price .number { font-size: 52px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.plan-card .plan-price .per { color: var(--text-muted); margin-left: 4px; }
.plan-card .original-price { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.plan-card .original-price s { color: var(--text-muted); }
.plan-card .original-price strong { color: var(--success); }
.plan-card .btn { width: 100%; margin-bottom: 24px; }
.plan-card .feature-list { list-style: none; padding-top: 24px; border-top: 1px solid var(--border); }
.plan-card .feature-list li {
  font-size: 14px;
  color: var(--text-soft);
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.plan-card .feature-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.plan-card .feature-list strong { color: var(--text); font-weight: 600; }

/* ============ FEATURES SECTION ============ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s;
}
.feature-card:hover { border-color: var(--border-strong); background: var(--bg-elevated); }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.feature-card h4 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; color: var(--text-soft); line-height: 1.55; }

/* ============ COMPARISON TABLE ============ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  font-size: 14px;
}
.compare-table thead {
  background: var(--bg-elevated);
}
.compare-table th {
  padding: 18px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.compare-table th:first-child {
  text-align: left;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.compare-table th.featured { color: var(--accent); }
.compare-table td { padding: 14px 20px; color: var(--text-soft); border-top: 1px solid var(--border); text-align: center; }
.compare-table td:first-child { text-align: left; color: var(--text); }
.compare-table .yes { color: var(--accent); font-weight: 600; }
.compare-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); }

/* ============ DATACENTERS ============ */
.dc-section { background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.03), transparent); }
.dc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.dc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; list-style: none; }
.dc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
}
.dc-list .flag { font-size: 18px; }
.dc-list .city { font-weight: 600; }
.dc-list .country { color: var(--text-muted); font-size: 12px; }
.world-map {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial .stars { color: var(--warning); margin-bottom: 14px; font-size: 14px; letter-spacing: 2px; }
.testimonial p { font-size: 15px; color: var(--text-soft); line-height: 1.55; margin-bottom: 20px; }
.testimonial .author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border); }
.testimonial .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
}
.testimonial .author-info .name { font-weight: 600; font-size: 14px; }
.testimonial .author-info .meta { color: var(--text-muted); font-size: 12px; }

/* ============ FAQ ============ */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-q .icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.2s;
  font-size: 16px;
}
.faq-item.open .faq-q .icon {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 0 24px; }

/* ============ CTA SECTION ============ */
.cta-block {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(124, 92, 255, 0.08));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  top: -50%;
  left: -10%;
  opacity: 0.3;
  pointer-events: none;
}
.cta-block h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  margin-bottom: 16px;
  position: relative;
  letter-spacing: -0.03em;
}
.cta-block p { font-size: 18px; color: var(--text-soft); margin-bottom: 32px; position: relative; }
.cta-block .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============ FOOTER ============ */
footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
  background: var(--bg-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.6; max-width: 320px; margin-bottom: 20px; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--text-soft);
  transition: all 0.2s;
}
.social-row a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { font-size: 14px; color: var(--text-soft); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom .legal-links { display: flex; gap: 20px; }
.footer-bottom .legal-links a:hover { color: var(--accent); }

/* ============ CHAT FAB ============ */
.chat-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--bg);
  box-shadow: 0 10px 30px var(--accent-glow);
  transition: transform 0.2s;
}
.chat-fab:hover { transform: scale(1.05); }

/* ============ PAGE HEADER ============ */
.page-header { padding: 60px 0 40px; text-align: center; border-bottom: 1px solid var(--border); }
.page-header h1 { font-size: clamp(36px, 5vw, 60px); letter-spacing: -0.03em; margin-bottom: 16px; }
.page-header .lead { font-size: 18px; color: var(--text-soft); max-width: 700px; margin: 0 auto; }
.breadcrumb {
  display: inline-flex;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-bottom: 16px;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--border-strong); }

/* ============ FORMS ============ */
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c879f' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px;
}
.form-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}

/* ============ COMING SOON ============ */
.coming-soon-hero {
  text-align: center;
  padding: 100px 0 60px;
  max-width: 640px;
  margin: 0 auto;
}
.coming-soon-hero .badge-cs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: var(--warning);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12.5px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.coming-soon-hero h1 { font-size: clamp(40px, 5.5vw, 68px); letter-spacing: -0.03em; margin-bottom: 20px; }
.coming-soon-hero .lead { font-size: 18px; color: var(--text-soft); margin-bottom: 36px; }
.notify-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto 40px;
}
.notify-form input {
  flex: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--text);
  font-family: inherit;
  outline: none;
  min-width: 0;
}
.notify-form input:focus { border-color: var(--accent); }
.notify-success {
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: var(--success);
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  display: none;
}
.notify-success.show { display: block; }

/* ============ MOBILE MENU ============ */
.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.mobile-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  margin: 4px auto;
  transition: all 0.2s;
}
.nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 16px;
  gap: 8px;
}
.nav-links.mobile-open .has-dropdown .dropdown { display: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .mobile-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: scale(1); }
  .features-grid { grid-template-columns: 1fr; }
  .dc-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-block { padding: 48px 24px; }
  section { padding: 60px 0; }
  .hero { padding: 40px 0 60px; }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .topbar-msg { font-size: 12px; }
  .topbar-actions { gap: 12px; }
  .dc-list { grid-template-columns: 1fr; }
  .notify-form { flex-direction: column; }
}
