/* ============================================================
   HostGen — Home Page Styles  (home.css)
   Scoped with .hg- prefix to avoid conflicts with style.css
   ============================================================ */

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hg-hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 72px;
  background: #fff;
}

/* Decorative grid */
.hg-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(124,58,237,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 60% at 55% 0%, black 0%, transparent 75%);
}

/* Purple glow behind hero */
.hg-hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 60% -10%, rgba(139,92,246,.1) 0%, transparent 65%),
    radial-gradient(ellipse 35% 40% at 85% 50%, rgba(192,132,252,.07) 0%, transparent 60%);
}

/* Floating orbs */
.hg-hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(80px);
}
.hg-hero-orb-1 {
  width: 500px; height: 500px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(139,92,246,.12) 0%, transparent 70%);
}
.hg-hero-orb-2 {
  width: 300px; height: 300px;
  bottom: -80px; left: 5%;
  background: radial-gradient(circle, rgba(6,182,212,.08) 0%, transparent 70%);
}

/* Two-column hero layout */
.hg-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative; z-index: 1;
  min-height: 520px;
}

/* Eyebrow — dual-chip badge */
.hg-hero-eyebrow {
  display: inline-flex; align-items: center;
  margin-bottom: 24px;
  background: #fff;
  border: 1px solid var(--color-border, #e4e4e7);
  border-radius: 999px;
  box-shadow: 0 1px 6px rgba(0,0,0,.07);
  overflow: hidden;
  font-size: 12px; font-weight: 600; letter-spacing: .02em;
}
.hg-eyebrow-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
}
.hg-eyebrow-chip svg { flex-shrink: 0; }
.hg-eyebrow-chip-left {
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
  color: #6d28d9;
  border-right: 1px solid #c4b5fd;
}
.hg-eyebrow-chip-right {
  color: #52525b;
  background: #fff;
}

/* Hero heading */
.hg-hero-title {
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.06;
  color: var(--color-text, #09090b);
  margin-bottom: 20px;
}
.hg-gradient-text {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 60%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero description */
.hg-hero-desc {
  font-size: 17px; line-height: 1.75;
  color: var(--color-text-muted, #71717a);
  max-width: 480px; margin-bottom: 36px;
}

/* CTA buttons */
.hg-hero-actions {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 44px;
}
.hg-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; font-size: 14.5px; font-weight: 700;
  background: #7c3aed; color: #fff; border-radius: 10px;
  border: 1.5px solid #7c3aed;
  box-shadow: 0 2px 12px rgba(124,58,237,.35);
  transition: all .18s cubic-bezier(.4,0,.2,1);
  white-space: nowrap; font-family: inherit;
  text-decoration: none;
}
.hg-btn-primary:hover {
  background: #6d28d9; border-color: #6d28d9;
  box-shadow: 0 6px 24px rgba(124,58,237,.45);
  transform: translateY(-2px);
}
.hg-btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 22px; font-size: 14.5px; font-weight: 600;
  color: var(--color-text-muted, #71717a);
  border: 1.5px solid var(--color-border, #e4e4e7);
  border-radius: 10px; background: #fff;
  transition: all .18s cubic-bezier(.4,0,.2,1);
  white-space: nowrap; font-family: inherit;
  text-decoration: none;
}
.hg-btn-ghost:hover {
  border-color: #7c3aed; color: #7c3aed;
  background: #faf5ff;
}

/* Stat row */
.hg-hero-stats {
  display: flex; align-items: center;
  background: #fff; border: 1px solid var(--color-border, #e4e4e7);
  border-radius: 14px; box-shadow: 0 1px 6px rgba(0,0,0,.06);
  overflow: hidden; max-width: 500px;
}
.hg-hero-stat {
  flex: 1; padding: 14px 16px; text-align: center; min-width: 90px;
}
.hg-hero-stat-div {
  width: 1px; height: 36px; background: var(--color-border, #e4e4e7);
  flex-shrink: 0;
}
.hg-hero-stat-val {
  font-size: 20px; font-weight: 800; letter-spacing: -1px;
  color: var(--color-text, #09090b); line-height: 1; margin-bottom: 3px;
}
.hg-hero-stat-lbl {
  font-size: 10.5px; color: var(--color-text-muted, #71717a);
  font-weight: 500; line-height: 1.3;
}

/* ── Visual column ── */
.hg-hero-visual {
  position: relative; display: flex; flex-direction: column; gap: 14px;
}

/* Terminal */
.hg-terminal {
  background: #0f0f11;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.25), 0 0 0 1px rgba(255,255,255,.05);
}
.hg-terminal-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hg-term-dots { display: flex; gap: 6px; }
.hg-dot { width: 10px; height: 10px; border-radius: 50%; }
.hg-dot.red    { background: #ff5f57; }
.hg-dot.yellow { background: #febc2e; }
.hg-dot.green  { background: #28c840; }
.hg-term-title {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px; color: rgba(255,255,255,.3);
  margin-left: auto;
}
.hg-terminal-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 6px; }
.hg-term-line {
  display: flex; align-items: flex-start; gap: 8px;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 12px; line-height: 1.5;
}
.hg-term-prompt { color: #a78bfa; font-weight: 700; flex-shrink: 0; }
.hg-term-cmd    { color: #e4e4e7; }
.hg-term-out    { padding-left: 16px; color: rgba(228,228,231,.65); }
.hg-term-dim    { color: rgba(228,228,231,.4); }
.hg-term-success { color: #22c55e; flex-shrink: 0; }
.hg-term-cursor {
  color: #a78bfa; animation: hg-blink 1.1s steps(1) infinite;
}
@keyframes hg-blink { 0%,100%{opacity:1;} 50%{opacity:0;} }

/* Live server card */
.hg-server-card {
  background: #fff;
  border: 1px solid var(--color-border, #e4e4e7);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
}
.hg-sc-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; margin-bottom: 16px;
}
.hg-sc-label  { font-size: 13px; font-weight: 700; color: #09090b; }
.hg-sc-sub    { font-size: 11px; color: #71717a; margin-top: 2px; font-family: var(--font-mono, monospace); }
.hg-sc-status {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; color: #22c55e;
  background: #f0fdf4; border: 1px solid #bbf7d0;
  border-radius: 999px; padding: 3px 10px;
  white-space: nowrap;
}
.hg-pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e; flex-shrink: 0;
  animation: hg-pulse 2.5s ease-in-out infinite;
}
.hg-pulse-green { background: #22c55e; }
@keyframes hg-pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.5;transform:scale(.75);} }

.hg-sc-meters { display: flex; flex-direction: column; gap: 10px; }
.hg-sc-meter  {}
.hg-sc-meter-label {
  display: flex; justify-content: space-between;
  font-size: 11px; font-weight: 600; color: #71717a;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 5px;
}
.hg-sc-meter-label span { color: #09090b; font-weight: 700; }
.hg-sc-bar  { height: 5px; background: #f4f4f5; border-radius: 3px; overflow: hidden; }
.hg-sc-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}

/* Floating badges */
.hg-badge {
  position: absolute;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--color-border, #e4e4e7);
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,.1);
  font-size: 12px; font-weight: 600; color: #3f3f46;
  white-space: nowrap; z-index: 10;
}
.hg-badge-tl { top: -10px; left: -18px; }
.hg-badge-br { bottom: 8px; right: -18px; }

/* ─────────────────────────────────────────────
   TRUST BAR
───────────────────────────────────────────── */
.hg-trust-bar {
  border-top: 1px solid var(--color-border, #e4e4e7);
  border-bottom: 1px solid var(--color-border, #e4e4e7);
  padding: 16px 0;
  background: #fafafa;
}
.hg-trust-items {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 6px;
}
.hg-trust-item {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500;
  color: var(--color-text-muted, #71717a);
  padding: 4px 14px;
}
.hg-trust-item svg { width: 14px; height: 14px; color: #7c3aed; flex-shrink: 0; }
.hg-trust-sep {
  width: 1px; height: 20px;
  background: var(--color-border, #e4e4e7);
}

/* ─────────────────────────────────────────────
   SECTION SHARED
───────────────────────────────────────────── */
.hg-section {
  padding: 88px 0;
}
.hg-section-alt {
  background: var(--color-surface, #fafafa);
}
.hg-section-header {
  text-align: center; max-width: 620px; margin: 0 auto 60px;
}
.hg-section-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #7c3aed;
  margin-bottom: 14px;
}
.hg-section-label::before {
  content: ''; display: block; width: 16px; height: 2px;
  background: #7c3aed; border-radius: 2px;
}

/* ─────────────────────────────────────────────
   PRODUCTS GRID
───────────────────────────────────────────── */
.hg-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) {
  .hg-product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hg-product-grid { grid-template-columns: 1fr; }
}

.hg-product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border, #e4e4e7);
  border-radius: 18px;
  padding: 28px 24px 24px;
  display: flex; flex-direction: column;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
  overflow: hidden;
}
.hg-product-card:hover {
  border-color: #c4b5fd;
  box-shadow: 0 8px 32px rgba(124,58,237,.12);
  transform: translateY(-3px);
}

/* Ribbon */
.hg-product-ribbon {
  position: absolute; top: 0; right: 0;
  font-size: 10.5px; font-weight: 700; letter-spacing: .04em;
  padding: 4px 12px;
  border-radius: 0 18px 0 10px;
}
.hg-ribbon-popular { background: #ede9fe; color: #7c3aed; }
.hg-ribbon-deal    { background: #dcfce7; color: #16a34a; }
.hg-ribbon-new     { background: #e0f2fe; color: #0369a1; }
.hg-ribbon-ent     { background: #fef3c7; color: #92400e; }

/* Product icon */
.hg-product-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; flex-shrink: 0;
}
.hg-icon-blue   { background: #ede9fe; color: #7c3aed; }
.hg-icon-green  { background: #dcfce7; color: #16a34a; }
.hg-icon-cyan   { background: #e0f2fe; color: #0284c7; }
.hg-icon-purple { background: #f5f3ff; color: #7c3aed; }

.hg-product-name {
  font-size: 16px; font-weight: 700; color: #09090b;
  margin-bottom: 8px; line-height: 1.3;
}
.hg-product-desc {
  font-size: 13px; color: #71717a; line-height: 1.65;
  margin-bottom: 18px;
}
.hg-product-features {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.hg-product-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12.5px; color: #3f3f46; line-height: 1.5;
}
.hg-product-features li svg { color: #22c55e; flex-shrink: 0; margin-top: 1px; }

.hg-product-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; border-top: 1px solid var(--color-border, #e4e4e7);
  gap: 12px; margin-top: auto;
}
.hg-product-price { display: flex; align-items: baseline; gap: 3px; flex-wrap: wrap; }
.hg-price-from { font-size: 11px; color: #71717a; font-weight: 500; align-self: center; }
.hg-price-val  { font-size: 26px; font-weight: 800; color: #09090b; letter-spacing: -1px; }
.hg-price-per  { font-size: 13px; color: #71717a; font-weight: 500; align-self: center; }

.hg-btn-card {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 16px; font-size: 13px; font-weight: 600;
  background: #faf5ff; color: #7c3aed;
  border: 1.5px solid #e9d5ff; border-radius: 8px;
  transition: all .18s ease; white-space: nowrap;
  text-decoration: none; flex-shrink: 0;
}
.hg-btn-card:hover {
  background: #7c3aed; color: #fff; border-color: #7c3aed;
  box-shadow: 0 4px 14px rgba(124,58,237,.3);
}

/* ─────────────────────────────────────────────
   STATS STRIP
───────────────────────────────────────────── */
.hg-stats-strip {
  background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 50%, #7c3aed 100%);
  padding: 52px 0;
}
.hg-stats-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
@media (max-width: 900px) {
  .hg-stats-inner { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .hg-stats-inner { grid-template-columns: repeat(2, 1fr); }
}
.hg-stat-item {
  text-align: center; padding: 16px 12px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hg-stat-item:last-child { border-right: none; }
.hg-stat-val {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 800;
  color: #fff; letter-spacing: -1.5px; line-height: 1; margin-bottom: 8px;
}
.hg-stat-lbl {
  font-size: 12px; color: rgba(255,255,255,.6);
  font-weight: 500; line-height: 1.4;
}

/* ─────────────────────────────────────────────
   FEATURES GRID
───────────────────────────────────────────── */
.hg-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1060px) {
  .hg-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .hg-features-grid { grid-template-columns: 1fr; }
}
.hg-feature-card {
  background: #fff; border: 1px solid var(--color-border, #e4e4e7);
  border-radius: 16px; padding: 24px 22px;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.hg-feature-card:hover {
  border-color: #c4b5fd;
  box-shadow: 0 4px 20px rgba(124,58,237,.1);
  transform: translateY(-2px);
}
.hg-feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; flex-shrink: 0;
}
.hg-fi-purple { background: #ede9fe; color: #7c3aed; }
.hg-fi-blue   { background: #dbeafe; color: #2563eb; }
.hg-fi-green  { background: #dcfce7; color: #16a34a; }
.hg-fi-orange { background: #fef3c7; color: #d97706; }
.hg-fi-cyan   { background: #cffafe; color: #0891b2; }

.hg-feature-title {
  font-size: 14.5px; font-weight: 700; color: #09090b;
  margin-bottom: 8px; line-height: 1.3;
}
.hg-feature-desc {
  font-size: 13px; color: #71717a; line-height: 1.65;
}

/* ─────────────────────────────────────────────
   LOCATIONS / NETWORK SPLIT
───────────────────────────────────────────── */
.hg-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.hg-split-text {}
.hg-split-visual {}
@media (max-width: 860px) {
  .hg-split { grid-template-columns: 1fr; }
}
.hg-location-list {
  display: flex; flex-direction: column; gap: 10px; margin-top: 8px;
}
.hg-location-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: #fff; border: 1px solid var(--color-border, #e4e4e7);
  border-radius: 12px;
  transition: border-color .18s, box-shadow .18s;
}
.hg-location-item:hover {
  border-color: #c4b5fd; box-shadow: 0 2px 10px rgba(124,58,237,.08);
}
.hg-loc-flag { font-size: 22px; flex-shrink: 0; }
.hg-loc-info { flex: 1; }
.hg-loc-region { font-size: 13.5px; font-weight: 700; color: #09090b; }
.hg-loc-cities { font-size: 12px; color: #71717a; margin-top: 2px; }
.hg-loc-badge {
  font-size: 11px; font-weight: 700; color: #7c3aed;
  background: #ede9fe; border-radius: 999px;
  padding: 3px 10px; white-space: nowrap; flex-shrink: 0;
}

.hg-latency-card {
  background: #fff; border: 1px solid var(--color-border, #e4e4e7);
  border-radius: 18px; padding: 28px 28px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.hg-latency-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.hg-latency-title { font-size: 13px; font-weight: 700; color: #71717a; text-transform: uppercase; letter-spacing: .08em; }
.hg-latency-live  { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: #22c55e; }
.hg-latency-rows  { display: flex; flex-direction: column; gap: 18px; }
.hg-latency-row   { display: flex; align-items: center; gap: 12px; }
.hg-lat-label {
  font-size: 13px; font-weight: 600; color: #3f3f46;
  width: 140px; flex-shrink: 0; display: flex; align-items: center; gap: 6px;
}
.hg-lat-bar-wrap { flex: 1; height: 6px; background: #f4f4f5; border-radius: 3px; overflow: hidden; }
.hg-lat-bar {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  transition: width 1.4s cubic-bezier(.4,0,.2,1);
}
.hg-lat-val { font-size: 12px; font-weight: 700; color: #7c3aed; width: 52px; text-align: right; flex-shrink: 0; }
.hg-latency-footer {
  display: flex; justify-content: space-between;
  font-size: 11px; color: #a1a1aa;
  padding-top: 18px; margin-top: 20px;
  border-top: 1px solid var(--color-border, #e4e4e7);
}

/* ─────────────────────────────────────────────
   USE CASES GRID
───────────────────────────────────────────── */
.hg-usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 860px) {
  .hg-usecase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .hg-usecase-grid { grid-template-columns: 1fr; }
}
.hg-usecase-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px;
  background: #fff; border: 1px solid var(--color-border, #e4e4e7);
  border-radius: 14px;
  transition: border-color .18s, box-shadow .18s, transform .18s;
  text-decoration: none; color: inherit;
}
.hg-usecase-card:hover {
  border-color: #a78bfa;
  box-shadow: 0 4px 20px rgba(124,58,237,.12);
  transform: translateY(-2px);
}
.hg-uc-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: #ede9fe; color: #7c3aed;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .18s;
}
.hg-usecase-card:hover .hg-uc-icon { background: #7c3aed; color: #fff; }
.hg-uc-content { flex: 1; }
.hg-uc-title {
  font-size: 14px; font-weight: 700; color: #09090b;
  margin-bottom: 4px; line-height: 1.3;
}
.hg-uc-desc { font-size: 12.5px; color: #71717a; line-height: 1.6; }
.hg-uc-arrow {
  color: #a1a1aa; flex-shrink: 0;
  transition: color .18s, transform .18s;
}
.hg-usecase-card:hover .hg-uc-arrow { color: #7c3aed; transform: translateX(3px); }

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.hg-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px; max-width: 1000px; margin: 0 auto;
}
@media (max-width: 720px) {
  .hg-faq-grid { grid-template-columns: 1fr; }
}
.hg-faq-item {
  background: #fff; border: 1px solid var(--color-border, #e4e4e7);
  border-radius: 14px; overflow: hidden;
  transition: border-color .18s;
}
.hg-faq-item[open] { border-color: #c4b5fd; }
.hg-faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 22px; cursor: pointer;
  font-size: 14px; font-weight: 600; color: #09090b;
  list-style: none; user-select: none;
  transition: background .18s;
}
.hg-faq-q::-webkit-details-marker { display: none; }
.hg-faq-q::after {
  content: '';
  width: 16px; height: 16px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%237c3aed' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: 16px; transition: transform .22s;
}
details[open] .hg-faq-q::after { transform: rotate(180deg); }
.hg-faq-q:hover { background: #faf5ff; }
.hg-faq-a {
  padding: 0 22px 18px; font-size: 13.5px; color: #52525b; line-height: 1.7;
}
.hg-faq-a p { margin: 0; }
.hg-faq-a a { color: #7c3aed; text-decoration: underline; }

/* ─────────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────────── */
.hg-cta {
  position: relative; overflow: hidden;
  padding: 96px 0;
  background: linear-gradient(135deg, #3b0764 0%, #6d28d9 55%, #7c3aed 100%);
}
.hg-cta-bg { position: absolute; inset: 0; pointer-events: none; }
.hg-cta-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
}
.hg-cta-orb-1 {
  width: 600px; height: 600px; top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(192,132,252,.25) 0%, transparent 70%);
}
.hg-cta-orb-2 {
  width: 400px; height: 400px; bottom: -150px; left: -100px;
  background: radial-gradient(circle, rgba(6,182,212,.2) 0%, transparent 70%);
}
.hg-cta-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, transparent 80%);
}
.hg-cta-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 680px; margin: 0 auto;
}
.hg-cta-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.7);
  margin-bottom: 24px; letter-spacing: .03em;
}
.hg-cta-title {
  font-size: clamp(28px, 4vw, 48px); font-weight: 800;
  color: #fff; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px;
}
.hg-cta-desc {
  font-size: 17px; color: rgba(255,255,255,.7);
  line-height: 1.7; margin-bottom: 40px;
}
.hg-cta-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 32px;
}
.hg-cta-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-size: 15px; font-weight: 700;
  background: #fff; color: #7c3aed;
  border: 1.5px solid #fff; border-radius: 10px;
  box-shadow: 0 2px 14px rgba(0,0,0,.25);
  transition: all .18s ease; white-space: nowrap;
  text-decoration: none; font-family: inherit;
}
.hg-cta-btn-primary:hover { box-shadow: 0 8px 28px rgba(0,0,0,.35); transform: translateY(-2px); background: #faf5ff; }
.hg-cta-btn-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 14px 26px; font-size: 15px; font-weight: 700;
  background: rgba(255,255,255,.12); color: #fff;
  border: 1.5px solid rgba(255,255,255,.3); border-radius: 10px;
  transition: all .18s ease; white-space: nowrap;
  text-decoration: none; font-family: inherit;
}
.hg-cta-btn-secondary:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); transform: translateY(-2px); }
.hg-cta-btn-ghost {
  display: inline-flex; align-items: center;
  padding: 14px 22px; font-size: 15px; font-weight: 600;
  background: transparent; color: rgba(255,255,255,.6);
  border: 1.5px solid transparent; border-radius: 10px;
  transition: all .18s ease; white-space: nowrap;
  text-decoration: none; font-family: inherit;
}
.hg-cta-btn-ghost:hover { color: rgba(255,255,255,.9); background: rgba(255,255,255,.06); }

.hg-cta-trust {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 20px;
  font-size: 13px; color: rgba(255,255,255,.6); font-weight: 500;
}
.hg-cta-trust span { display: flex; align-items: center; gap: 6px; }
.hg-cta-trust svg { color: #a78bfa; }

/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
.animate-in {
  animation: hg-fade-in .5s cubic-bezier(.4,0,.2,1) both;
}
.animate-delay-2 { animation-delay: .18s; }

@keyframes hg-fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Reveal on scroll (handled by IntersectionObserver in main.js) */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ─────────────────────────────────────────────
   RESPONSIVE — HERO
───────────────────────────────────────────── */
@media (max-width: 960px) {
  .hg-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hg-hero-visual {
    order: -1;
    max-width: 520px; margin: 0 auto;
  }
  .hg-hero-content { text-align: center; }
  .hg-hero-desc  { margin: 0 auto 36px; }
  .hg-hero-actions { justify-content: center; }
  .hg-hero-stats { margin: 0 auto; max-width: 460px; }
  .hg-hero-eyebrow { margin-left: auto; margin-right: auto; }
  .hg-badge-tl { left: 0; }
  .hg-badge-br { right: 0; }
}

@media (max-width: 600px) {
  .hg-hero { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 48px; }
  .hg-hero-stat-val { font-size: 17px; }
  .hg-hero-stat { padding: 10px 8px; }
  .hg-trust-sep { display: none; }
  .hg-trust-items { gap: 2px 0; }
  .hg-trust-item { padding: 6px 10px; font-size: 12.5px; }
}

/* ─────────────────────────────────────────────
   SPLIT LAYOUT RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 860px) {
  .hg-section { padding: 60px 0; }
  .hg-stats-inner { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 560px) {
  .hg-stats-inner { grid-template-columns: repeat(2,1fr); }
  .hg-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
}
