/* ═══════════════════════════════════════════════════
   GLAMOUR NG — styles.css  (complete, self-contained)
   Fonts: Syne (headings) · DM Sans (body)
   Palette: Deep black + Gold
═══════════════════════════════════════════════════ */

/* ── Variables ────────────────────────────────────── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dim:    rgba(201,168,76,0.12);
  --gold-border: rgba(201,168,76,0.22);
  --bg:          #0D0A06;
  --bg2:         #130F08;
  --surface:     #1A1409;
  --surface2:    #221C0D;
  --border:      rgba(201,168,76,0.10);
  --text:        #F5EDD8;
  --text-muted:  #8A7D65;
  --text-secondary: #B8A882;
  --error:       #FF6B6B;
  --success:     #5FAF7B;
  --transition:  all 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── Scrollbar ────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.2); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: rgba(201,168,76,0.35); }

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 12px;
  padding: 11px 22px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #b8952e);
  color: var(--bg);
  border-color: transparent;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-border);
}
.btn-outline:hover { background: var(--gold-dim); }
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border);
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold-border); }
.btn-lg { padding: 15px 28px; font-size: 15px; border-radius: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
/* backdrop-filter on ::before so it doesn't create a containing block
   for position:fixed children (nav-links dropdown) */
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,10,6,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
  z-index: -1;
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.navbar.scrolled::before {
  background: rgba(13,10,6,0.98);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.nav-logo-icon { font-size: 18px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: rgba(13,10,6,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    transform: translateY(-110%);
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), visibility 0s linear 0.3s;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .nav-links.mobile-open {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), visibility 0s linear 0s;
  }
  .nav-links a {
    display: block;
    padding: 16px 24px;
    font-size: 16px;
    border-bottom: 1px solid rgba(201,168,76,0.06);
    color: var(--text-secondary);
  }
  .nav-links a:hover { color: var(--gold); background: rgba(201,168,76,0.05); }
}
@media (max-width: 480px) {
  .nav-cta .btn-outline { display: none; }
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 40px 60px;
  background: radial-gradient(ellipse 70% 50% at 30% 60%, rgba(201,168,76,0.05) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(34px, 5.5vw, 62px);
  color: var(--text);
  margin-bottom: 20px;
}
.gold-text { color: var(--gold); }
.answer-first-block { margin-bottom: 28px; }
.hero-answer {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-bullets li {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-num {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
}
.trust-item span:last-child { font-size: 11px; color: var(--text-muted); }
.trust-divider { width: 1px; height: 32px; background: var(--border); }

/* Hero right — image */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrap {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: 0 24px 80px rgba(201,168,76,0.10), 0 0 0 1px rgba(201,168,76,0.05);
  line-height: 0;
  background: var(--surface2);
}
.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

/* Hero responsive */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { justify-content: center; }
  .hero-img-wrap { max-width: 460px; }
}
@media (max-width: 768px) {
  .hero { padding: 90px 20px 48px; }
  .hero-img-wrap { max-width: 100%; border-radius: 18px; }
  .hero-img { aspect-ratio: 4 / 3; }
}
@media (max-width: 480px) {
  .hero { padding: 80px 16px 40px; }
  .hero-img { aspect-ratio: 1 / 1; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* ══════════════════════════════════════════════════
   SECTIONS — Shared layout
══════════════════════════════════════════════════ */
.section { padding: 80px 40px; }
.section-dark { background: var(--surface); }
.container { max-width: 1280px; margin: 0 auto; width: 100%; }
.container-narrow { max-width: 820px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 4vw, 42px);
  color: var(--text);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.7;
}
@media (max-width: 768px) { .section { padding: 56px 20px; } }
@media (max-width: 480px) { .section { padding: 44px 16px; } }

/* ══════════════════════════════════════════════════
   GEO / ANSWER-FIRST BLOCK
══════════════════════════════════════════════════ */
.geo-block { background: var(--bg2); }
.geo-h2 {
  font-size: clamp(22px, 3.5vw, 34px);
  color: var(--text);
  margin-bottom: 20px;
}
.geo-problem {
  font-size: 15px;
  color: var(--text-secondary);
  background: rgba(255,107,107,0.06);
  border-left: 3px solid var(--error);
  padding: 12px 16px;
  border-radius: 0 10px 10px 0;
  margin-bottom: 14px;
  line-height: 1.7;
}
.geo-answer {
  font-size: 15px;
  color: var(--text-secondary);
  background: var(--gold-dim);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  border-radius: 0 10px 10px 0;
  margin-bottom: 20px;
  line-height: 1.7;
}
.geo-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
}
.geo-bullets li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 12px;
  border-left: 2px solid var(--gold-border);
  line-height: 1.55;
}
.geo-expansion {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
}
.geo-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 480px) {
  .geo-cta-row { flex-direction: column; }
  .geo-cta-row .btn { width: 100%; }
}

/* ══════════════════════════════════════════════════
   STEPS — How It Works
══════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr; gap: 16px; } }
.step-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: var(--transition);
}
.step-card:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.step-num {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.6;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.step-icon { font-size: 28px; margin-bottom: 14px; }
.step-card h3 { font-size: 17px; color: var(--text); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }
.step-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.85;
}
.step-link:hover { opacity: 1; }

/* ══════════════════════════════════════════════════
   EARNINGS STRUCTURE GRID
══════════════════════════════════════════════════ */
.earnings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) { .earnings-grid { grid-template-columns: 1fr; gap: 20px; } }

.earn-group-title {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.earn-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 10px;
  transition: var(--transition);
}
.earn-card:last-child { margin-bottom: 0; }
.earn-card:hover { border-color: var(--gold-border); }
.earn-card.featured {
  border-color: var(--gold-border);
  background: linear-gradient(135deg, var(--bg2), rgba(201,168,76,0.04));
}
.earn-card.total-card {
  background: linear-gradient(135deg, rgba(201,168,76,0.14), rgba(201,168,76,0.06));
  border: 2px solid var(--gold-border);
  margin-top: 4px;
}
.earn-icon {
  font-size: 20px;
  width: 42px;
  height: 42px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.earn-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.earn-amount { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 800; color: var(--text-secondary); }
.earn-amount.gold { color: var(--gold); }
.earn-amount.total { color: var(--gold); font-size: 19px; }
.earn-amount span { font-size: 11px; font-weight: 400; color: var(--text-muted); }

/* ══════════════════════════════════════════════════
   CALCULATOR
══════════════════════════════════════════════════ */
.calculator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) { .calculator-wrapper { grid-template-columns: 1fr; } }

.calc-inputs {}
.calc-field { margin-bottom: 26px; }
.calc-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.calc-slider-wrap { display: flex; align-items: center; gap: 16px; }
.calc-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  background: linear-gradient(to right, var(--gold) 40%, rgba(201,168,76,0.15) 40%);
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 3px solid var(--bg);
  box-shadow: 0 0 12px rgba(201,168,76,0.5);
  transition: box-shadow 0.2s;
}
.calc-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 18px rgba(201,168,76,0.7);
}
.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 3px solid var(--bg);
}
.calc-val {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--gold);
  font-size: 15px;
  min-width: 64px;
  text-align: right;
}

/* Niche buttons */
.calc-niche-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.calc-niche-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.calc-niche-btn {
  padding: 7px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: var(--transition);
}
.calc-niche-btn:hover { border-color: var(--gold-border); color: var(--gold); }
.calc-niche-btn.active {
  background: var(--gold-dim);
  border-color: var(--gold-border);
  color: var(--gold);
  font-weight: 600;
}

/* Result card */
.calc-result {
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 28px;
}
.calc-breakdown { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 10px 14px;
  background: var(--bg2);
  border-radius: 10px;
  gap: 16px;
}
.calc-row span:last-child {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.calc-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  margin-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}
.calc-total > span:first-child {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}
.calc-big {
  font-family: 'Syne', sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: var(--gold);
}
.calc-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════
   PACKAGES
══════════════════════════════════════════════════ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 420px));
  gap: 24px;
  justify-content: center;
}
.package-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}
.package-card:hover { border-color: var(--gold-border); transform: translateY(-4px); }
.package-card.featured-pkg {
  border-color: var(--gold-border);
  background: linear-gradient(160deg, var(--bg2), rgba(201,168,76,0.05));
}
.pkg-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  font-family: 'Syne', sans-serif;
}
.pkg-icon { font-size: 32px; margin-bottom: 18px; }
.pkg-name { font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.pkg-price {
  font-family: 'Syne', sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 6px;
}
.pkg-eur { font-size: 17px; color: var(--text-muted); font-weight: 400; }
.pkg-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 24px; }
.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pkg-features li { font-size: 14px; color: var(--text-secondary); line-height: 1.4; }
.pkg-trust {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

/* ══════════════════════════════════════════════════
   NICHES
══════════════════════════════════════════════════ */
.niches-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .niches-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .niches-grid { grid-template-columns: repeat(2, 1fr); } }
.niche-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 14px;
  text-align: center;
  transition: var(--transition);
}
.niche-card:hover { border-color: var(--gold-border); transform: translateY(-2px); }
.niche-emoji { font-size: 28px; margin-bottom: 10px; }
.niche-card span { font-size: 12px; font-weight: 600; color: var(--text-secondary); }

/* ══════════════════════════════════════════════════
   TRUST GRID
══════════════════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .trust-grid { grid-template-columns: 1fr; } }
.trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 20px;
  transition: var(--transition);
}
.trust-card:hover { border-color: var(--gold-border); transform: translateY(-2px); }
.trust-icon { font-size: 28px; margin-bottom: 14px; }
.trust-card h3 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.trust-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }

/* ══════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
  line-height: 1.4;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
  line-height: 1;
  font-weight: 300;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  padding-bottom: 20px;
}

/* ══════════════════════════════════════════════════
   UGC / REVIEWS
══════════════════════════════════════════════════ */
.ugc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 900px) { .ugc-grid { grid-template-columns: 1fr; } }
.ugc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  transition: var(--transition);
}
.ugc-card:hover { border-color: var(--gold-border); }
.ugc-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.ugc-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}
.ugc-author { display: flex; align-items: center; gap: 12px; }
.ugc-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.ugc-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.ugc-location { font-size: 12px; color: var(--text-muted); }
.ugc-submit-cta {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  padding: 16px;
  border: 1px dashed var(--border);
  border-radius: 12px;
}
.gold-link { color: var(--gold); font-weight: 600; }
.gold-link:hover { opacity: 0.85; }

/* ══════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════ */
.cta-section { padding: 80px 40px; }
@media (max-width: 768px) { .cta-section { padding: 48px 20px; } }
.cta-card {
  background: linear-gradient(135deg, var(--surface), rgba(201,168,76,0.07));
  border: 1px solid var(--gold-border);
  border-radius: 28px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
@media (max-width: 768px) { .cta-card { padding: 36px 24px; } }
.cta-content h2 { font-size: clamp(24px, 3.5vw, 38px); color: var(--text); margin-bottom: 12px; }
.cta-content p { font-size: 15px; color: var(--text-secondary); margin-bottom: 24px; max-width: 500px; line-height: 1.7; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 480px) {
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
}
.cta-visual {
  font-family: 'Syne', sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.10;
  letter-spacing: -6px;
  user-select: none;
}
@media (max-width: 900px) { .cta-visual { display: none; } }

/* ══════════════════════════════════════════════════
   INTERNAL LINKS SECTION
══════════════════════════════════════════════════ */
.internal-links-section {
  background: var(--bg2);
  padding: 48px 40px;
}
@media (max-width: 768px) { .internal-links-section { padding: 40px 20px; } }
.internal-links-title {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-align: center;
}
.internal-links-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 1100px) { .internal-links-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .internal-links-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 400px)  { .internal-links-grid { grid-template-columns: 1fr; } }
.internal-link-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 14px;
  transition: var(--transition);
  color: var(--text);
}
.internal-link-card:hover { border-color: var(--gold-border); background: rgba(201,168,76,0.04); }
.internal-link-card strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
  line-height: 1.35;
}
.internal-link-card span { font-size: 11px; color: var(--text-muted); line-height: 1.4; }
.il-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 56px 40px 32px;
}
@media (max-width: 768px) { .footer { padding: 40px 20px 24px; } }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 40px;
}
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.65;
}
.footer-trust-badges {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.footer-trust-badges span {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
}
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 480px) { .footer-links-grid { grid-template-columns: 1fr 1fr; } }
.footer-links-grid h4 {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.footer-links-grid a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 9px;
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-links-grid a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; }
.footer-bottom p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════════════
   AUTH PAGES (signin / signup)
══════════════════════════════════════════════════ */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201,168,76,0.05) 0%, transparent 70%);
}
.auth-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: var(--bg);
}
.auth-card {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 36px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
@media (max-width: 480px) { .auth-card { padding: 28px 20px; border-radius: 18px; } }
.auth-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 28px;
}
.auth-title { font-size: 26px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.auth-subtitle { font-size: 14px; color: var(--text-secondary); margin-bottom: 22px; line-height: 1.6; }
.auth-earn-preview {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  padding: 8px 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.earn-highlight {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
}
.auth-alert {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  display: none;
  margin-bottom: 16px;
  line-height: 1.5;
}
.auth-alert.visible { display: block; }
.auth-alert.error { background: rgba(255,107,107,0.08); border: 1px solid rgba(255,107,107,0.25); color: var(--error); }
.auth-alert.success { background: rgba(95,175,123,0.08); border: 1px solid rgba(95,175,123,0.25); color: var(--success); }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}
.form-input,
.form-select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus,
.form-select:focus { border-color: var(--gold-border); background: var(--surface2); }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%238A7D65' stroke-width='2' stroke-linecap='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-select option { background: var(--surface); color: var(--text); }
.form-error { font-size: 12px; color: var(--error); margin-top: 5px; display: none; }
.form-error.visible { display: block; }
.auth-switch { text-align: center; font-size: 14px; color: var(--text-muted); margin-top: 24px; }
.auth-switch a { color: var(--gold); font-weight: 600; }