/* ============================================================
   QUANTUM YIELD — Unified Stylesheet v1.0
   Design: Syne + DM Sans | Gold + Teal | Dark/Light Dual Mode
   ============================================================ */

/* ===== TOKENS ===== */
:root[data-theme="dark"] {
  --bg:         #080c18;
  --bg2:        #0d1226;
  --bg3:        #0a0f1e;
  --card:       #111827;
  --card2:      #151e2e;
  --card3:      #1a2236;
  --border:     rgba(255,255,255,0.07);
  --border2:    rgba(255,255,255,0.12);
  --gold:       #f0b429;
  --gold2:      #ffd166;
  --gold-dim:   rgba(240,180,41,0.12);
  --teal:       #00d4b4;
  --teal2:      #00f5d4;
  --teal-dim:   rgba(0,212,180,0.12);
  --purple:     #a78bfa;
  --purple-dim: rgba(167,139,250,0.12);
  --red:        #ff5e6c;
  --green:      #22c55e;
  --text:       #e8eaf6;
  --text2:      #8b93a8;
  --text3:      #5a6275;
  --glow-gold:  0 0 40px rgba(240,180,41,0.25);
  --glow-teal:  0 0 40px rgba(0,212,180,0.25);
  --glow-gold-sm: 0 4px 20px rgba(240,180,41,0.2);
  --nav-bg:     rgba(8,12,24,0.88);
  --ticker-bg:  #0d1226;
  --input-bg:   #0d1226;
  --shadow:     0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.6);
}
:root[data-theme="light"] {
  --bg:         #f0f4ff;
  --bg2:        #e6ecf8;
  --bg3:        #edf1fc;
  --card:       #ffffff;
  --card2:      #f8faff;
  --card3:      #f0f4ff;
  --border:     rgba(0,0,0,0.08);
  --border2:    rgba(0,0,0,0.14);
  --gold:       #d4920c;
  --gold2:      #f0b429;
  --gold-dim:   rgba(212,146,12,0.1);
  --teal:       #009e87;
  --teal2:      #00c4a7;
  --teal-dim:   rgba(0,158,135,0.1);
  --purple:     #7c3aed;
  --purple-dim: rgba(124,58,237,0.1);
  --red:        #e03e4e;
  --green:      #16a34a;
  --text:       #111827;
  --text2:      #4b5563;
  --text3:      #9ca3af;
  --glow-gold:  0 4px 20px rgba(212,146,12,0.2);
  --glow-teal:  0 4px 20px rgba(0,158,135,0.2);
  --glow-gold-sm: 0 4px 16px rgba(212,146,12,0.15);
  --nav-bg:     rgba(240,244,255,0.92);
  --ticker-bg:  #e6ecf8;
  --input-bg:   #f8faff;
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.12);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background 0.4s, color 0.4s;
  line-height: 1.6;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: .4;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--ticker-bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 101;
}
.ticker-label {
  flex-shrink: 0;
  padding: 0 1rem;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  border-right: 1px solid var(--border2);
  height: 100%;
  display: flex;
  align-items: center;
  background: var(--ticker-bg);
  z-index: 2;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  padding-left: 2rem;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text2);
}
.ticker-item .t-name { color: var(--text); font-weight: 600; }
.ticker-item .t-up { color: var(--green); }
.ticker-item .t-down { color: var(--red); }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 0;
  left: 0; right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.2); }
.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .25rem;
}
.logo span { color: var(--gold); }
.logo-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  margin-right: .3rem;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--text2);
  font-size: .875rem;
  font-weight: 500;
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s;
  border-radius: 2px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: .75rem; overflow: hidden; }

/* ── Google Translate – strip "Powered by" branding so it stays compact ── */
.goog-te-gadget > span,
.goog-te-gadget > span a,
.goog-logo-container { display: none !important; }
.goog-te-gadget { font-size: 0 !important; line-height: 0 !important; }
/* restore the actual select font */
.goog-te-combo { font-size: .8rem !important; }
/* keep nav height fixed even if Google injects extra nodes */
#google_translate_element { display: flex; align-items: center; }

/* Theme Toggle */
.theme-toggle {
  width: 44px; height: 24px; border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--border2);
  cursor: pointer;
  position: relative;
  transition: background .3s;
  flex-shrink: 0;
}
.theme-toggle::after {
  content: '';
  position: absolute; top: 2px; left: 2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold);
  transition: transform .3s;
}
[data-theme="light"] .theme-toggle::after { transform: translateX(20px); }

/* Mobile Nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color .2s;
}
.hamburger:hover { border-color: var(--gold); }
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed;
  top: 114px; left: 0; right: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 5% 2rem;
  z-index: 99;
  flex-direction: column;
  gap: .25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: .75rem 1rem;
  color: var(--text2);
  font-weight: 500;
  border-radius: 10px;
  transition: background .2s, color .2s;
  font-size: .95rem;
}
.mobile-nav a:hover,
.mobile-nav a.active { background: var(--card); color: var(--text); }
.mobile-nav .mobile-btns {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.mobile-nav .mobile-btns .btn { flex: 1; justify-content: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.35rem;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}
.btn-ghost {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border2);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.btn-gold {
  background: var(--gold);
  color: #0a0a0a;
  box-shadow: var(--glow-gold-sm);
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: var(--glow-gold); }
.btn-teal {
  background: var(--teal);
  color: #0a0a0a;
  box-shadow: var(--glow-teal);
}
.btn-teal:hover { background: var(--teal2); transform: translateY(-2px); }
.btn-lg { padding: .75rem 1.8rem; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: .35rem 1rem; font-size: .8rem; border-radius: 8px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== LAYOUT ===== */
section { padding: 6rem 5%; position: relative; z-index: 1; }
section.tight { padding: 4rem 5%; }
.container { max-width: 1200px; margin: 0 auto; width: 100%; }
.container-sm { max-width: 800px; margin: 0 auto; width: 100%; }

/* Section Headers */
.section-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .8rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  color: var(--text);
}
.section-sub {
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.75;
  max-width: 560px;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-sub { margin: 0 auto; }
.section-header .section-title span { color: var(--gold); }

/* Divider */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ===== HERO (Homepage) ===== */
.hero {
  min-height: calc(100vh - 104px);
  display: flex;
  align-items: center;
  padding: 80px 5% 60px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: .28;
  pointer-events: none;
}
.glow-1 { width: 650px; height: 650px; background: var(--gold); top: -15%; left: -8%; }
.glow-2 { width: 550px; height: 550px; background: var(--teal); bottom: -5%; right: -8%; }
.glow-3 { width: 300px; height: 300px; background: var(--purple); top: 40%; left: 40%; opacity: .12; }
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold-dim);
  border: 1px solid rgba(240,180,41,.3);
  border-radius: 20px;
  padding: .3rem .9rem;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; box-shadow: 0 0 8px var(--green); }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.5)} }
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 1.25rem;
}
.hero h1 .line-gold { color: var(--gold); }
.hero h1 .line-teal { color: var(--teal); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text2);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 2.5rem; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .82rem;
  color: var(--text3);
}
.hero-trust-icon { font-size: 1rem; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.hstat-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.hstat-lbl { font-size: .78rem; color: var(--text3); margin-top: 4px; }
.hstat-change { font-size: .75rem; color: var(--green); margin-top: 2px; }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.orb {
  width: 380px; height: 380px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--gold), var(--teal), var(--purple), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 14s linear infinite;
  position: relative;
}
@keyframes spin { to { transform: rotate(360deg); } }
.orb-inner {
  width: 346px; height: 346px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  animation: spin 14s linear reverse infinite;
}
.orb-rate { font-family: 'Syne', sans-serif; font-size: 3.2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.orb-rate-lbl { font-size: .85rem; color: var(--text2); }
.orb-rate-sub { font-size: .72rem; color: var(--teal); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.floating-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: .9rem 1.2rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  min-width: 150px;
}
.fc-1 { top: 8%; left: -10%; animation: float1 4s ease-in-out infinite; }
.fc-2 { bottom: 10%; right: -10%; animation: float2 5s ease-in-out infinite; }
.fc-3 { top: 50%; left: -15%; animation: float3 6s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(12px)} }
@keyframes float3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.fc-label { font-size: .68rem; color: var(--text3); margin-bottom: 3px; letter-spacing: .5px; }
.fc-val { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; }
.fc-sub { font-size: .7rem; color: var(--text3); margin-top: 2px; }
.fc-green { color: var(--green); }
.fc-gold { color: var(--gold); }
.fc-teal { color: var(--teal); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 5%;
  position: relative;
  z-index: 1;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: .6rem; }
.trust-icon { font-size: 1.2rem; }
.trust-text { font-size: .8rem; color: var(--text2); font-weight: 500; }
.trust-text strong { color: var(--text); font-weight: 700; }

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  opacity: 0;
  transition: opacity .3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border2); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.3rem;
  position: relative;
}
.fi-gold { background: var(--gold-dim); }
.fi-teal { background: var(--teal-dim); }
.fi-purple { background: var(--purple-dim); }
.feature-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.feature-desc { font-size: .875rem; color: var(--text2); line-height: 1.65; }

/* ===== PLANS GRID ===== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-card.featured { border-color: var(--gold); box-shadow: var(--glow-gold); }
.plan-card.featured-teal { border-color: var(--teal); box-shadow: var(--glow-teal); }
.plan-card.featured-purple { border-color: var(--purple); box-shadow: 0 0 40px rgba(167,139,250,0.2); }
.plan-card-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.plan-badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: .25rem .75rem;
  border-radius: 20px;
}
.badge-popular { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(240,180,41,.3); }
.badge-new { background: var(--teal-dim); color: var(--teal); border: 1px solid rgba(0,212,180,.3); }
.badge-hot { background: var(--purple-dim); color: var(--purple); border: 1px solid rgba(167,139,250,.3); }
.plan-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.icon-gold { background: var(--gold-dim); }
.icon-teal { background: var(--teal-dim); }
.icon-purple { background: var(--purple-dim); }
.plan-name { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }
.plan-tagline { font-size: .8rem; color: var(--text3); margin-bottom: 1rem; }
.plan-roi {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: .3rem;
}
.plan-roi .plan-roi-unit { font-size: 1rem; font-weight: 500; color: var(--text2); }
.plan-period { font-size: .82rem; color: var(--text3); margin-bottom: 1.2rem; }
.plan-divider { height: 1px; background: var(--border); margin: 1.2rem 0; }
.plan-feature {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .84rem;
  color: var(--text2);
  margin-bottom: .6rem;
}
.pf-icon { color: var(--teal); font-size: 1rem; flex-shrink: 0; }
.plan-min { font-size: .78rem; color: var(--text3); margin-top: auto; padding-top: 1rem; }
.plan-min strong { color: var(--text); }
.plan-cta { margin-top: 1.5rem; }

/* Plan Page — Extended Table */
.plans-compare { overflow-x: auto; margin-top: 3rem; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th,
.compare-table td { padding: 1rem 1.5rem; text-align: left; border-bottom: 1px solid var(--border); font-size: .875rem; }
.compare-table thead th {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text2);
  background: var(--card2);
}
.compare-table thead th:first-child { border-radius: 12px 0 0 0; }
.compare-table thead th:last-child { border-radius: 0 12px 0 0; }
.compare-table td:first-child { color: var(--text2); }
.compare-table .check { color: var(--teal); font-size: 1.1rem; }
.compare-table .cross { color: var(--text3); }
.compare-table tr:hover td { background: var(--card2); }

/* ROI Calculator */
.calc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 680px;
  margin: 0 auto;
}
.calc-label { font-size: .82rem; font-weight: 600; color: var(--text2); margin-bottom: .5rem; letter-spacing: .3px; }
.calc-input {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: .75rem 1rem;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s;
  margin-bottom: 1.2rem;
}
.calc-input:focus { border-color: var(--gold); }
.calc-select {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: .75rem 1rem;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
  margin-bottom: 1.2rem;
  appearance: none;
  cursor: pointer;
}
.calc-select:focus { border-color: var(--gold); }
.calc-result {
  background: linear-gradient(135deg, var(--gold-dim), var(--teal-dim));
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.cr-val { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.cr-lbl { font-size: .75rem; color: var(--text3); margin-top: 4px; }
.cr-divider { width: 1px; background: var(--border); }

/* ===== HOW IT WORKS ===== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  position: relative;
}
.how-connector {
  display: none;
}
.how-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: border-color .3s, box-shadow .3s;
}
.how-card:hover { border-color: var(--gold); box-shadow: var(--glow-gold); }
.how-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto 1.2rem;
  position: relative;
  background: var(--gold-dim);
}
.how-title { font-family: 'Syne', sans-serif; font-weight: 700; margin-bottom: .5rem; font-size: .95rem; }
.how-desc { font-size: .84rem; color: var(--text2); line-height: 1.65; }

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--card);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 3rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: .04;
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-lbl { font-size: .84rem; color: var(--text3); margin-top: .5rem; }

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.8rem;
  transition: border-color .3s;
  position: relative;
}
.testi-card:hover { border-color: var(--border2); }
.testi-quote-icon {
  font-size: 2rem;
  color: var(--gold);
  opacity: .3;
  line-height: 1;
  margin-bottom: .5rem;
}
.testi-stars { color: var(--gold); font-size: .95rem; margin-bottom: .75rem; letter-spacing: 2px; }
.testi-text { font-size: .875rem; color: var(--text2); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .82rem;
  color: #0a0a0a;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: .9rem; }
.testi-loc { font-size: .74rem; color: var(--text3); margin-top: 2px; }
.testi-amount { font-size: .74rem; color: var(--green); font-weight: 600; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  gap: 1rem;
  transition: color .2s;
  color: var(--text);
}
.faq-q:hover { color: var(--gold); }
.faq-q .faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--text3);
  transition: all .2s;
  line-height: 1;
}
.faq-item.open .faq-q .faq-icon { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.faq-a {
  display: none;
  padding: 0 0 1.25rem 0;
  font-size: .875rem;
  color: var(--text2);
  line-height: 1.75;
  animation: fadeIn .2s ease;
}
.faq-item.open .faq-a { display: block; }
@keyframes fadeIn { from{opacity:0;transform:translateY(-4px)} to{opacity:1;transform:translateY(0)} }

/* FAQ Categories */
.faq-cats {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  justify-content: center;
}
.faq-cat {
  padding: .45rem 1.1rem;
  border-radius: 20px;
  border: 1px solid var(--border2);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text2);
  cursor: pointer;
  transition: all .2s;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
}
.faq-cat:hover,
.faq-cat.active { background: var(--gold-dim); border-color: var(--gold); color: var(--gold); }

/* ===== LIVE ACTIVITY ===== */
.activity-feed {
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 1.5rem;
  max-height: 320px;
  overflow: hidden;
  position: relative;
}
.activity-feed::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--card), transparent);
  pointer-events: none;
}
.activity-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
  animation: slideIn .5s ease;
}
@keyframes slideIn { from{opacity:0;transform:translateX(-8px)} to{opacity:1;transform:translateX(0)} }
.activity-item:last-child { border: none; }
.activity-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ad-deposit { background: var(--green); box-shadow: 0 0 8px var(--green); }
.ad-withdrawal { background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.ad-signup { background: var(--teal); box-shadow: 0 0 8px var(--teal); }
.activity-text { font-size: .82rem; color: var(--text2); flex: 1; }
.activity-text strong { color: var(--text); }
.activity-time { font-size: .72rem; color: var(--text3); flex-shrink: 0; }

/* ===== CRYPTO LOGOS ===== */
.crypto-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.crypto-chip {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: .5rem 1.1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text2);
  transition: border-color .2s, color .2s;
}
.crypto-chip:hover { border-color: var(--gold); color: var(--text); }
.crypto-chip .cc-icon { font-size: 1.1rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--card), var(--card2));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 65%);
  opacity: .08;
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}
.cta-section p {
  color: var(--text2);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2rem;
  position: relative;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-block { margin-bottom: 1.5rem; }
.contact-info-block h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: .5rem;
}
.contact-info-block p { font-size: .9rem; color: var(--text2); line-height: 1.65; }
.contact-info-block a { color: var(--teal); }
.contact-channel {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: .75rem;
  transition: border-color .2s;
}
.contact-channel:hover { border-color: var(--teal); }
.cc-icon { font-size: 1.3rem; flex-shrink: 0; }
.cc-info .cc-title { font-weight: 600; font-size: .9rem; margin-bottom: 2px; }
.cc-info .cc-sub { font-size: .78rem; color: var(--text3); }

/* Contact Form */
.contact-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: .45rem;
  letter-spacing: .3px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: .75rem 1rem;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,212,180,.1);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { appearance: none; cursor: pointer; }

/* ===== ABOUT PAGE ===== */
.about-hero { padding: 100px 5% 60px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--card), var(--card2));
  border-radius: 24px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-img-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 40%, var(--gold) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, var(--teal) 0%, transparent 50%);
  opacity: .08;
}
.about-img-icon { font-size: 5rem; opacity: .15; }
.about-stat-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
}
.asc-1 { bottom: -20px; left: -20px; }
.asc-2 { top: -20px; right: -20px; }

/* Timeline */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: .75rem; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--teal), transparent);
  border-radius: 2px;
}
.tl-item { position: relative; margin-bottom: 2rem; }
.tl-dot {
  position: absolute;
  left: -2.5rem;
  top: .25rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--bg);
  transform: translateX(7px);
}
.tl-year { font-size: .75rem; color: var(--gold); font-weight: 700; letter-spacing: 1px; margin-bottom: .3rem; }
.tl-title { font-family: 'Syne', sans-serif; font-weight: 700; margin-bottom: .3rem; font-size: .95rem; }
.tl-desc { font-size: .84rem; color: var(--text2); line-height: 1.65; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: border-color .3s, transform .3s;
}
.team-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.team-avatar {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #0a0a0a;
  margin: 0 auto 1rem;
}
.team-name { font-family: 'Syne', sans-serif; font-weight: 700; margin-bottom: .2rem; font-size: .95rem; }
.team-role { font-size: .8rem; color: var(--teal); font-weight: 600; margin-bottom: .5rem; }
.team-bio { font-size: .8rem; color: var(--text3); line-height: 1.6; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem;
  transition: transform .3s, box-shadow .3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-title { font-family: 'Syne', sans-serif; font-weight: 700; margin-bottom: .5rem; font-size: .95rem; }
.value-desc { font-size: .84rem; color: var(--text2); line-height: 1.65; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--bg2);
  padding: 80px 5% 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--gold) 0%, transparent 60%);
  opacity: .05;
  pointer-events: none;
}
.page-hero-tag { margin-bottom: .75rem; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
  position: relative;
}
.page-hero h1 span { color: var(--gold); }
.page-hero-sub {
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  justify-content: center;
  font-size: .8rem;
  color: var(--text3);
  margin-bottom: 1.25rem;
  position: relative;
}
.breadcrumb a { color: var(--teal); }
.breadcrumb a:hover { color: var(--teal2); }
.breadcrumb-sep { color: var(--text3); }

/* ===== FOOTER ===== */
footer {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 5% 2.5rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; display: inline-flex; }
.footer-desc {
  font-size: .84rem;
  color: var(--text3);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: .75rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--text2);
  transition: border-color .2s, color .2s, background .2s;
  cursor: pointer;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a {
  font-size: .84rem;
  color: var(--text3);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-newsletter { margin-top: 1.5rem; }
.footer-newsletter-title { font-size: .8rem; font-weight: 600; color: var(--text2); margin-bottom: .75rem; }
.footer-newsletter-form { display: flex; gap: .5rem; }
.footer-newsletter-input {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: .55rem .9rem;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  outline: none;
  transition: border-color .2s;
}
.footer-newsletter-input:focus { border-color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 5%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .78rem;
  color: var(--text3);
}
.footer-badges { display: flex; gap: .75rem; flex-wrap: wrap; }
.fb {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .25rem .7rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text2);
}

/* ===== ALERT / NOTICE ===== */
.notice {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: .84rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.notice-info { background: var(--teal-dim); border: 1px solid rgba(0,212,180,.25); color: var(--text2); }
.notice-warning { background: var(--gold-dim); border: 1px solid rgba(240,180,41,.25); color: var(--text2); }
.notice-icon { flex-shrink: 0; font-size: 1.1rem; }

/* ===== UTILITY ===== */
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.gap-2 { gap: 2rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.relative { position: relative; }

/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gold);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--glow-gold-sm);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s;
  z-index: 50;
  border: none;
}
#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { background: var(--gold2); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  /* login / register buttons live in the mobile drawer – hide from the bar */
  .nav-right .btn { display: none !important; }
  /* translate moves to the mobile drawer – hide the nav copy */
  .nav-right .translate-widget { display: none !important; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

/* ── Mobile nav translate slot ── */
.mobile-translate-slot {
  padding: .6rem 1rem .4rem;
  border-bottom: 1px solid var(--border);
}
.mobile-translate-slot #google_translate_element { display: block; }
.mobile-translate-slot .goog-te-combo {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* hero-trust wraps gracefully on narrow screens */
@media (max-width: 540px) {
  .hero-trust { flex-wrap: wrap; gap: .4rem .6rem; font-size: .78rem; }
}

@media (max-width: 700px) {
  section { padding: 4rem 5%; }
  .hero { padding: 60px 5% 40px; }
  .page-hero { padding: 60px 5% 40px; }
  .plans-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stats-section { padding: 2rem 1.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .calc-result { grid-template-columns: 1fr; }
  .cta-section { padding: 2.5rem 1.5rem; }
  .contact-form-card { padding: 1.5rem; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hstat-val { font-size: 1.2rem; }
  nav { padding: 0 4%; }
  .footer-newsletter-form { flex-direction: column; }
  #backToTop { bottom: 1.25rem; right: 1.25rem; }
  .faq-cats { gap: .5rem; }
  .ticker-wrap { display: none; }
}

@media (max-width: 420px) {
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .hstat-val { font-size: 1rem; }
  .hero h1 { font-size: 2.1rem; }
  .orb { width: 280px; height: 280px; }
  .orb-inner { width: 256px; height: 256px; }
}

/* ────────────────────────────────────────────────────────────
   PUBLIC PAGE MOBILE POLISH
   ──────────────────────────────────────────────────────────── */

/* Fix mobile-nav top: when ticker hidden (<=700px) nav is only 68px tall */
@media (max-width: 700px) {
  .mobile-nav { top: 68px; }
}

/* Tap highlight removal */
.btn, .nav-links a, .faq-q, .hamburger {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Hero stats — 2 cols on very small phones, wrap gracefully */
@media (max-width: 360px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .hstat-val { font-size: .95rem; }
  .hstat-lbl { font-size: .68rem; }
  .hero h1 { font-size: 1.85rem; letter-spacing: -1px; }
  .hero-sub { font-size: .9rem; }
  .hero-cta { gap: .6rem; }
  .btn-lg { padding: .65rem 1.25rem; font-size: .9rem; }
  section { padding: 3rem 4%; }
}

/* Trust bar — 2-col grid on mobile */
@media (max-width: 600px) {
  .trust-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; justify-items: start; }
}
@media (max-width: 360px) {
  .trust-inner { grid-template-columns: 1fr; }
}

/* Nav — prevent logo overflow on tiny screens */
@media (max-width: 360px) {
  nav { padding: 0 3%; }
  .logo { font-size: 1.1rem; }
}

/* Plans grid — ensure single column on very small screens */
@media (max-width: 360px) {
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card { padding: 1.5rem; }
  .plan-roi { font-size: 2.2rem; }
}

/* Contact form — single col already handled, just tighten padding */
@media (max-width: 480px) {
  .contact-form-card { padding: 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* FAQ categories — scroll horizontally instead of wrapping awkwardly */
@media (max-width: 480px) {
  .faq-cats {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-bottom: .25rem;
    scrollbar-width: none;
  }
  .faq-cats::-webkit-scrollbar { display: none; }
  .faq-cat { flex-shrink: 0; }
}

/* Footer — tighter on small screens */
@media (max-width: 480px) {
  .footer-top { padding: 2.5rem 4% 2rem; }
  .footer-bottom { padding: 1rem 4%; }
  .footer-desc { max-width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-val { font-size: 1.8rem; }
}

/* Page hero (inner pages) — more breathing room on phones */
@media (max-width: 480px) {
  .page-hero { padding: 48px 4% 32px; }
  .page-hero h1 { font-size: 1.75rem; letter-spacing: -1px; }
  .page-hero-sub { font-size: .88rem; }
}

/* CTA section */
@media (max-width: 360px) {
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { justify-content: center; }
}
