/* ============================================================
   FAQ Page — CSS v1.0.0
   MLM Mind | https://mlmmind.com
   Primary colour: #6366f1 (indigo — authority & trust)
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --primary:        #6366f1;
  --primary-dark:   #4f46e5;
  --primary-light:  #eef2ff;
  --secondary:      #818cf8;
  --secondary-dark: #6366f1;
  --accent:         #0ea5e9;
  --accent-dark:    #0284c7;
  --green:          #10b981;
  --amber:          #f59e0b;
  --rose:           #f43f5e;
  --orange:         #f97316;
  --teal:           #0d9488;
  --violet:         #8b5cf6;

  --dark:   #04050f;
  --dark-2: #070920;
  --dark-3: #0a0d30;
  --dark-4: #0e1240;
  --dark-5: #121748;

  --mid:       #64748b;
  --mid-light: #94a3b8;

  --border:       rgba(99,102,241,.18);
  --border-light: rgba(99,102,241,.08);

  --shadow-sm: 0 2px 8px rgba(99,102,241,.15);
  --shadow-md: 0 8px 32px rgba(99,102,241,.20);
  --shadow-lg: 0 24px 64px rgba(99,102,241,.25);
  --glow:      0 0 40px rgba(99,102,241,.35);
  --glow-sm:   0 0 20px rgba(99,102,241,.20);

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 9999px;

  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --ease-out:    cubic-bezier(0.16,1,0.3,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);

  --container:   1240px;
  --section-pad: 96px;
}

/* ---------- Reset & Base ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--dark); color: #e2e8f0; line-height: 1.65; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ---------- Scroll Progress ---------- */
#scroll-progress { position: fixed; top: 0; left: 0; z-index: 9999; height: 3px; width: 0%; background: linear-gradient(90deg,var(--primary),var(--secondary),var(--accent)); transition: width .1s linear; }

/* ---------- Container ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1 { font-size: clamp(2rem,4.5vw,3.4rem); font-weight: 800; line-height: 1.12; letter-spacing: -.03em; }
h2 { font-size: clamp(1.6rem,3.2vw,2.5rem); font-weight: 700; line-height: 1.2; letter-spacing: -.02em; }
h3 { font-size: clamp(1.05rem,2vw,1.35rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { font-size: 1rem; color: #cbd5e1; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--r-full); font-weight: 600; font-size: .95rem; cursor: pointer; border: none; transition: all .25s var(--ease-out); white-space: nowrap; }
.btn-primary { background: linear-gradient(135deg,var(--primary),var(--primary-dark)); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg),var(--glow-sm); }
.btn-outline { background: transparent; border: 1.5px solid rgba(129,140,248,.4); color: var(--secondary); }
.btn-outline:hover { background: rgba(99,102,241,.1); border-color: var(--primary); color: #fff; }
.btn-ghost  { background: transparent; color: #e2e8f0; border: 1.5px solid rgba(255,255,255,.15); }
.btn-ghost:hover { background: rgba(255,255,255,.06); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: .85rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Badge ---------- */
.badge { display: inline-flex; align-items: center; gap: 7px; padding: 7px 16px; border-radius: var(--r-full); font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.badge-primary { background: rgba(99,102,241,.15); color: var(--secondary); border: 1px solid rgba(99,102,241,.3); }
.badge-green   { background: rgba(16,185,129,.15); color: #34d399; border: 1px solid rgba(16,185,129,.25); }
.badge-accent  { background: rgba(14,165,233,.15); color: #38bdf8; border: 1px solid rgba(14,165,233,.25); }
.badge-amber   { background: rgba(245,158,11,.15); color: #fbbf24; border: 1px solid rgba(245,158,11,.25); }
.badge-rose    { background: rgba(244,63,94,.12); color: #fb7185; border: 1px solid rgba(244,63,94,.2); }

/* ---------- Section Header ---------- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .badge { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 16px; }
.section-header h2 span { color: var(--secondary); }
.section-header p { max-width: 680px; margin: 0 auto; font-size: 1.05rem; }

/* ---------- AOS ---------- */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
[data-aos].aos-visible { opacity: 1; transform: none; }
[data-aos-delay="80"]  { transition-delay: .08s; }
[data-aos-delay="160"] { transition-delay: .16s; }
[data-aos-delay="240"] { transition-delay: .24s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 140px 0 100px;
  background: radial-gradient(ellipse 120% 80% at 55% 0%, rgba(99,102,241,.2) 0%, transparent 65%),
              radial-gradient(ellipse 70% 50% at 5% 90%, rgba(79,70,229,.12) 0%, transparent 60%),
              var(--dark);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.hero-content { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; font-size: .82rem; color: var(--mid-light); margin-bottom: 20px; }
.breadcrumb a { color: var(--secondary); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: var(--mid); margin: 0 2px; }
.hero h1 { margin: 18px 0 22px; }
.hero h1 span { color: var(--secondary); }
.lead { font-size: 1.1rem; color: #cbd5e1; margin-bottom: 32px; line-height: 1.75; }

/* Search bar */
.faq-search-wrap {
  display: flex; gap: 0;
  background: rgba(99,102,241,.08);
  border: 1.5px solid rgba(99,102,241,.25);
  border-radius: var(--r-full);
  overflow: hidden;
  margin-bottom: 28px;
  transition: border-color .2s, box-shadow .2s;
}
.faq-search-wrap:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(99,102,241,.15); }
.faq-search-input {
  flex: 1; padding: 14px 22px;
  background: transparent; border: none; outline: none;
  color: #e2e8f0; font-size: .97rem; font-family: var(--font-body);
}
.faq-search-input::placeholder { color: var(--mid); }
.faq-search-btn {
  padding: 0 22px;
  background: linear-gradient(135deg,var(--primary),var(--primary-dark));
  border: none; cursor: pointer; color: #fff; font-size: 1rem;
  transition: opacity .2s;
}
.faq-search-btn:hover { opacity: .85; }

/* Hero category pills */
.hero-cats { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-cat {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 16px;
  background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.2);
  border-radius: var(--r-full);
  font-size: .82rem; color: var(--secondary); font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.hero-cat:hover, .hero-cat.active { background: rgba(99,102,241,.22); border-color: var(--primary); color: #fff; }
.hero-cat i { font-size: .78rem; }

/* Quick Stats card in hero visual */
.hero-visual { position: relative; z-index: 2; }
.faq-stats-card {
  background: linear-gradient(145deg,rgba(99,102,241,.12),rgba(4,5,15,.9));
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  backdrop-filter: blur(16px);
  position: relative; overflow: hidden;
}
.faq-stats-card::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle,rgba(99,102,241,.2) 0%,transparent 70%);
  pointer-events: none;
}
.faq-stat-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.faq-stat-icon { width: 44px; height: 44px; border-radius: var(--r-md); background: linear-gradient(135deg,var(--primary),var(--primary-dark)); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #fff; }
.faq-stat-header h4 { color: #fff; font-size: 1rem; }
.faq-stat-header p  { font-size: .8rem; color: var(--mid-light); margin: 0; }
.faq-stat-rows { display: flex; flex-direction: column; gap: 10px; }
.faq-stat-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 16px;
  background: rgba(99,102,241,.08);
  border: 1px solid rgba(99,102,241,.14);
  border-radius: var(--r-md);
}
.fsr-label { font-size: .86rem; color: #cbd5e1; display: flex; align-items: center; gap: 9px; }
.fsr-label i { color: var(--secondary); font-size: .85rem; width: 16px; }
.fsr-val { font-family: var(--font-mono); font-size: .88rem; font-weight: 700; color: var(--secondary); }

@media(max-width:960px) { .hero-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: linear-gradient(90deg,rgba(99,102,241,.1) 0%,rgba(79,70,229,.07) 50%,rgba(99,102,241,.1) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats-strip-inner { display: flex; flex-wrap: wrap; justify-content: center; }
.stat-item { flex: 1; min-width: 160px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 16px 24px; border-right: 1px solid var(--border); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2.1rem; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -.03em; }
.stat-num span { color: var(--secondary); }
.stat-lbl { font-size: .78rem; color: var(--mid-light); text-transform: uppercase; letter-spacing: .07em; margin-top: 5px; }
@media(max-width:600px) { .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid var(--border); } }

/* ============================================================
   MAIN FAQ SECTION
   ============================================================ */
.faq-main {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.faq-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}

/* Sidebar Nav */
.faq-sidebar {
  position: sticky;
  top: 96px;
}
.faq-nav-title { font-size: .75rem; font-weight: 700; color: var(--mid-light); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.faq-nav-list { display: flex; flex-direction: column; gap: 4px; }
.faq-nav-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r-md);
  font-size: .88rem; color: var(--mid-light);
  cursor: pointer;
  transition: all .2s;
  border: 1px solid transparent;
}
.faq-nav-link i { width: 16px; text-align: center; font-size: .82rem; }
.faq-nav-link:hover { background: rgba(99,102,241,.08); color: var(--secondary); }
.faq-nav-link.active { background: rgba(99,102,241,.14); color: var(--secondary); border-color: rgba(99,102,241,.25); font-weight: 600; }
.faq-nav-count { margin-left: auto; font-size: .72rem; background: rgba(99,102,241,.15); color: var(--secondary); padding: 2px 8px; border-radius: var(--r-full); font-weight: 700; }

/* Search Result Info */
.search-result-info { font-size: .88rem; color: var(--mid-light); margin-bottom: 24px; display: none; }
.search-result-info strong { color: var(--secondary); }
.search-result-info.visible { display: block; }

/* FAQ Category Groups */
.faq-categories { display: flex; flex-direction: column; gap: 56px; }
.faq-category-group {}
.faq-category-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.cat-icon-wrap {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.faq-category-header h3 { color: #fff; font-size: 1.15rem; }
.faq-category-header p  { font-size: .83rem; color: var(--mid-light); margin: 2px 0 0; }
.cat-q-count { margin-left: auto; font-size: .78rem; color: var(--mid-light); }

/* FAQ Accordion Items */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: rgba(99,102,241,.04);
  border: 1px solid rgba(99,102,241,.12);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s, background .2s;
}
.faq-item.open { border-color: var(--primary); background: rgba(99,102,241,.07); }
.faq-item.hidden { display: none; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  background: transparent; border: none; cursor: pointer;
  color: #e2e8f0; font-size: .97rem; font-weight: 600;
  font-family: var(--font-body);
  text-align: left; gap: 16px;
}
.faq-q:hover { color: var(--secondary); }
.faq-item.open .faq-q { color: var(--secondary); }
.faq-q-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(99,102,241,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--secondary);
  font-size: .75rem; transition: transform .3s var(--ease-out), background .2s;
}
.faq-item.open .faq-q-icon { transform: rotate(180deg); background: rgba(99,102,241,.2); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out); }
.faq-a-inner { padding: 0 22px 20px; font-size: .93rem; color: var(--mid-light); line-height: 1.8; }
.faq-a-inner p { margin-bottom: 12px; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner ul { margin: 10px 0 12px 16px; display: flex; flex-direction: column; gap: 6px; }
.faq-a-inner ul li { list-style: disc; font-size: .91rem; color: var(--mid-light); }
.faq-a-inner strong { color: #e2e8f0; }
.faq-a-inner a { color: var(--secondary); transition: color .2s; }
.faq-a-inner a:hover { color: #fff; }
.faq-a-inner .highlight-box {
  background: rgba(99,102,241,.08);
  border: 1px solid rgba(99,102,241,.2);
  border-left: 3px solid var(--primary);
  border-radius: var(--r-md);
  padding: 14px 18px;
  margin-top: 14px;
}
.faq-a-inner .highlight-box strong { color: var(--secondary); display: block; margin-bottom: 6px; font-size: .9rem; }

/* No Results */
.no-results {
  text-align: center;
  padding: 60px 20px;
  display: none;
}
.no-results.visible { display: block; }
.no-results-icon { font-size: 3rem; margin-bottom: 16px; }
.no-results h3 { color: #e2e8f0; margin-bottom: 10px; }
.no-results p { color: var(--mid-light); }

@media(max-width:960px) { .faq-layout { grid-template-columns: 1fr; } .faq-sidebar { position: static; } }

/* ============================================================
   STILL HAVE QUESTIONS
   ============================================================ */
.contact-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, rgba(99,102,241,.05) 0%, var(--dark) 100%);
}
.contact-inner {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.contact-card {
  background: rgba(99,102,241,.05);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: rgba(99,102,241,.09); }
.contact-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}
.contact-card h3 { color: #e2e8f0; font-size: 1.1rem; margin-bottom: 10px; }
.contact-card p  { font-size: .9rem; color: var(--mid-light); margin-bottom: 20px; line-height: 1.65; }
.contact-detail { font-size: .95rem; font-weight: 700; color: var(--secondary); }
@media(max-width:960px) { .contact-inner { grid-template-columns: 1fr; } }
@media(min-width:600px) and (max-width:960px) { .contact-inner { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   POPULAR TOPICS
   ============================================================ */
.topics-section {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.topics-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.topic-card {
  background: rgba(99,102,241,.04);
  border: 1px solid rgba(99,102,241,.12);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, border-color .25s, background .25s;
  display: flex; flex-direction: column; gap: 10px;
}
.topic-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary); background: rgba(99,102,241,.08); }
.topic-emoji { font-size: 1.8rem; }
.topic-name { font-size: .97rem; font-weight: 700; color: #e2e8f0; }
.topic-count { font-size: .8rem; color: var(--mid-light); }
@media(max-width:960px) { .topics-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px)  { .topics-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: var(--section-pad) 0;
  background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(99,102,241,.14) 0%, transparent 70%), var(--dark-2);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-badge { margin-bottom: 20px; }
.cta-section h2 { margin-bottom: 18px; }
.cta-section h2 span { color: var(--secondary); }
.cta-section > .container > p { max-width: 620px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 36px; }
.cta-chip { display: flex; align-items: center; gap: 7px; padding: 8px 16px; background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.2); border-radius: var(--r-full); font-size: .82rem; color: var(--secondary); font-weight: 600; }
.cta-chip i { color: var(--green); font-size: .78rem; }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 24px; }
.cta-contact { font-size: .88rem; color: var(--mid-light); }
.cta-contact a { color: var(--secondary); transition: color .2s; }
.cta-contact a:hover { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark-2); border-top: 1px solid var(--border); padding: 72px 0 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 1.35rem; font-weight: 800; color: #fff; margin-bottom: 18px; }
.footer-logo .logo-icon { width: 38px; height: 38px; background: linear-gradient(135deg,var(--primary),var(--primary-dark)); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; }
.logo-accent { color: var(--secondary); }
.footer-brand p { font-size: .9rem; color: var(--mid-light); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: var(--r-sm); background: rgba(99,102,241,.1); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--mid-light); font-size: .9rem; transition: all .2s; }
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-col h4 { font-size: .93rem; font-weight: 700; color: #e2e8f0; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .88rem; color: var(--mid-light); transition: color .2s; }
.footer-col ul li a:hover { color: var(--secondary); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: .83rem; color: var(--mid); }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge { display: flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: var(--r-full); background: rgba(99,102,241,.08); border: 1px solid rgba(99,102,241,.15); font-size: .75rem; color: var(--mid-light); }
@media(max-width:960px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) { .footer-top { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* ============================================================
   STICKY CTA & BACK TO TOP
   ============================================================ */
.sticky-cta {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(135deg,rgba(7,9,32,.97),rgba(4,5,15,.99));
  border: 1px solid var(--border);
  border-radius: var(--r-full); padding: 12px 20px;
  box-shadow: var(--shadow-lg); backdrop-filter: blur(16px);
  z-index: 800; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s; white-space: nowrap;
}
.sticky-cta.visible { opacity: 1; pointer-events: auto; }
.sticky-cta-text { font-size: .88rem; color: var(--mid-light); }
.sticky-cta-text strong { color: #e2e8f0; }
.sticky-cta-actions { display: flex; gap: 10px; }
@media(max-width:640px) { .sticky-cta { flex-direction: column; border-radius: var(--r-xl); bottom: 16px; padding: 14px 20px; } .sticky-cta-text { display: none; } }

.back-to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg,var(--primary),var(--primary-dark));
  color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s; z-index: 800;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
