/* ═══════════════════════════════════════════════
   Feezy Web — Global Dark Theme
   ═══════════════════════════════════════════════ */

:root {
  --bg:           #0D0B1A;
  --surface:      #151228;
  --surface-2:    #1E1A3A;
  --surface-3:    #252048;
  --border:       #2D2750;
  --border-light: #3D3770;
  --primary:      #5B4FCF;
  --primary-light:#7B70D9;
  --primary-dark: #3D33A8;
  --accent:       #E91E8C;
  --accent-light: #F06AB4;
  --gold:         #FFD700;
  --gold-dark:    #D4A800;
  --success:      #4CAF50;
  --danger:       #F44336;
  --warning:      #FF9800;
  --text:         #F0EEFF;
  --text-muted:   #9B93CC;
  --text-subtle:  #6B63A8;
  --radius:       14px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --shadow:       0 8px 40px rgba(0,0,0,0.5);
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.3);
  --shadow-glow:  0 0 40px rgba(91,79,207,0.25);
}

/* ─── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--primary-light); text-decoration: none; }
a:hover { color: var(--accent-light); }

img { max-width: 100%; }

/* ─── NAVBAR ──────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  background: rgba(13, 11, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
}

.navbar-brand svg {
  width: 36px;
  height: 36px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--text);
  background: var(--surface-2);
}

.navbar-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
}

.navbar-cta:hover {
  background: var(--primary-light) !important;
  color: #fff !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

/* ─── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  padding: 100px 24px 120px;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(91,79,207,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 50%, rgba(233,30,140,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 70%, rgba(91,79,207,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(91,79,207,0.15);
  border: 1px solid rgba(91,79,207,0.35);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero h1 .highlight-gold {
  color: var(--gold);
}

.hero h1 .highlight-accent {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── APP STORE BUTTONS ───────────────────────── */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.25s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.store-btn-apple {
  background: var(--text);
  color: #0D0B1A;
}

.store-btn-apple:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240,238,255,0.2);
  color: #0D0B1A;
}

.store-btn-google {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border-light);
}

.store-btn-google:hover {
  background: var(--surface-3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  color: var(--text);
}

.store-btn-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.store-btn-text {
  text-align: left;
}

.store-btn-text small {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.store-btn-text span {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

/* ─── SECTION WRAPPER ─────────────────────────── */
.section {
  padding: 96px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-center {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-light);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* ─── DIVIDER ─────────────────────────────────── */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ─── FEATURE CARDS ───────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse at top left, rgba(91,79,207,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.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.6rem;
  margin-bottom: 20px;
}

.icon-bg-purple { background: rgba(91,79,207,0.15); }
.icon-bg-pink   { background: rgba(233,30,140,0.12); }
.icon-bg-gold   { background: rgba(255,215,0,0.12);  }
.icon-bg-green  { background: rgba(76,175,80,0.12);  }
.icon-bg-blue   { background: rgba(33,150,243,0.12); }
.icon-bg-orange { background: rgba(255,152,0,0.12);  }

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── STATS ROW ───────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 80px;
}

.stat-item {
  background: var(--surface);
  padding: 32px 24px;
  text-align: center;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ─── TESTIMONIALS ────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-subtle);
}

/* ─── FEATURED TESTIMONIAL ────────────────────── */
.testimonial-featured {
  background: linear-gradient(135deg, var(--surface-2) 0%, rgba(91,79,207,0.1) 100%);
  border-color: rgba(91,79,207,0.3);
}

/* ─── CONTACT FORM ────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: flex-start;
}

.contact-info h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.contact-info p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-channel-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-channel strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-channel span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(91,79,207,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ─── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91,79,207,0.4);
  color: #fff;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233,30,140,0.4);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}

.btn-ghost:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
  background: rgba(91,79,207,0.08);
}

.btn-full { width: 100%; }

/* ─── CTA SECTION ─────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, rgba(233,30,140,0.5) 100%);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 24px 80px;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.08) 0%, transparent 60%);
}

.cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  position: relative;
}

.cta-section p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 36px;
  position: relative;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* ─── FOOTER ──────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-subtle);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-subtle);
}

/* ─── HELP PAGE ───────────────────────────────── */
.help-layout {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
  gap: 36px;
  align-items: flex-start;
}

.help-toc {
  flex: 0 0 220px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px;
  position: sticky;
  top: 80px;
}

.help-toc h3 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-subtle);
  margin-bottom: 12px;
}

.help-toc a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 7px 8px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  font-weight: 500;
}

.help-toc a:hover { background: var(--surface-2); color: var(--primary-light); }
.help-toc hr { border: none; border-top: 1px solid var(--border); margin: 8px 0; }

.help-main { flex: 1; min-width: 0; }

.help-section { margin-bottom: 48px; }

.help-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.help-section-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.help-section-icon.icon-purple { background: rgba(91,79,207,0.15); }
.help-section-icon.icon-pink   { background: rgba(233,30,140,0.12); }
.help-section-icon.icon-green  { background: rgba(76,175,80,0.12); }

.help-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.help-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 22px 24px;
  margin-bottom: 14px;
}

.help-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 0;
  margin-bottom: 16px;
}

.help-highlight {
  background: rgba(91,79,207,0.08);
  border: 1px solid rgba(91,79,207,0.2);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 16px;
}

.help-highlight h3 { color: var(--primary-light); margin-top: 0; font-size: 1rem; font-weight: 700; }
.help-highlight p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }
.help-highlight strong { color: var(--text); }

.help-steps { display: flex; flex-direction: column; gap: 12px; }

.help-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.help-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
}

.help-step-body strong { display: block; font-size: 0.92rem; margin-bottom: 3px; color: var(--text); }
.help-step-body p { font-size: 0.85rem; color: var(--text-muted); }
.help-step-body ul { font-size: 0.85rem; color: var(--text-muted); padding-left: 16px; margin-top: 4px; }

.help-tab-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }

.help-tab-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.help-tab-card-icon { font-size: 1.5rem; flex-shrink: 0; }
.help-tab-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.help-tab-card p { font-size: 0.82rem; color: var(--text-muted); }

.help-feature-list { display: flex; flex-direction: column; gap: 8px; }

.help-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.help-feature-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(76,175,80,0.15);
  color: var(--success);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 900; flex-shrink: 0;
}

.help-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pill-pending  { background: rgba(255,152,0,0.15); color: #FFA040; }
.pill-paid     { background: rgba(76,175,80,0.15);  color: #66BB6A; }
.pill-overdue  { background: rgba(244,67,54,0.15);  color: #EF5350; }
.pill-skipped  { background: rgba(158,158,158,0.15); color: #9E9E9E; }

.pill-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.dot-pending  { background: var(--warning); }
.dot-paid     { background: var(--success); }
.dot-overdue  { background: var(--danger); }
.dot-skipped  { background: #9E9E9E; }

.help-rec-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }

.help-rec-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.help-rec-name { font-weight: 700; font-size: 0.88rem; color: var(--primary-light); margin-bottom: 4px; }
.help-rec-card p { font-size: 0.8rem; color: var(--text-muted); }

.help-tip {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(91,79,207,0.07);
  border: 1px solid rgba(91,79,207,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin: 12px 0;
  font-size: 0.86rem;
}

.help-tip-warn {
  background: rgba(255,152,0,0.07);
  border-color: rgba(255,152,0,0.25);
}

.help-tip p { color: var(--text-muted); line-height: 1.6; }
.help-tip strong { color: var(--primary-light); }
.help-tip-warn strong { color: #FFA040; }
.tip-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

.help-stats-mock { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 12px; }

.help-stat-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.help-stat-amount { font-size: 1.4rem; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 3px; }
.help-stat-label { font-size: 0.78rem; color: var(--text-muted); }
.amount-green { color: var(--success); }
.amount-red   { color: var(--danger); }
.amount-orange { color: var(--warning); }

/* ─── SUCCESS ALERT ───────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: 16px;
}

.alert-success {
  background: rgba(76,175,80,0.12);
  border: 1px solid rgba(76,175,80,0.3);
  color: #81C784;
}

/* ─── PAGE HERO (inner pages) ─────────────────── */
.page-hero {
  padding: 72px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(91,79,207,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ─── PRIVACY PAGE ───────────────────────────── */
.privacy-layout {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  gap: 48px;
  align-items: flex-start;
}

.privacy-toc {
  flex: 0 0 210px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: sticky;
  top: 80px;
}

.privacy-toc h3 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-subtle);
  margin-bottom: 12px;
}

.privacy-toc a {
  display: block;
  color: var(--text-muted);
  font-size: 0.83rem;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  font-weight: 500;
}

.privacy-toc a:hover { background: var(--surface-2); color: var(--primary-light); }

.privacy-body { flex: 1; min-width: 0; }

.policy-section {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-section h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  padding-top: 8px;
}

.policy-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 10px;
}

.policy-section p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.policy-section p:last-child { margin-bottom: 0; }

.policy-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-section ul li {
  font-size: 0.93rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.65;
}

.policy-section ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--primary-light);
  font-weight: 700;
}

.policy-section a {
  color: var(--primary-light);
  text-decoration: underline;
  text-decoration-color: rgba(123,112,217,0.4);
  text-underline-offset: 3px;
}

.policy-section a:hover {
  color: var(--accent-light);
  text-decoration-color: var(--accent-light);
}

.policy-highlight {
  background: rgba(91,79,207,0.08);
  border: 1px solid rgba(91,79,207,0.22);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 16px;
}

.policy-highlight p { margin: 0; }

.policy-warning {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,215,0,0.06);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 16px;
}

.policy-warning > span { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.policy-warning p { margin: 0; }

.policy-tip {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(91,79,207,0.06);
  border: 1px solid rgba(91,79,207,0.18);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin: 14px 0;
}

.policy-tip > span { font-size: 1.1rem; flex-shrink: 0; }
.policy-tip p { margin: 0; font-size: 0.88rem; }

.policy-info-box {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.policy-info-box p {
  margin: 0;
  font-size: 0.9rem;
}

.policy-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 16px 0;
}

.policy-right {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.policy-right strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.policy-right p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  .navbar { padding: 0 20px; }
  .navbar-links { display: none; }
  .navbar-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(21, 18, 40, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px 20px;
    gap: 4px;
    z-index: 99;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }
  .navbar-links.open a { padding: 12px 16px; font-size: 1rem; }
  .navbar-cta { margin-top: 8px; text-align: center; }
  .nav-toggle { display: block; }

  /* Hero */
  .hero { padding: 72px 20px 80px; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }
  .store-btn { justify-content: center; }

  /* Layouts */
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 20px; }

  /* Help & Privacy */
  .help-layout { flex-direction: column; padding: 24px 20px; }
  .help-toc { position: static; flex: none; width: 100%; }
  .privacy-layout { flex-direction: column; padding: 24px 20px 60px; }
  .privacy-toc { position: static; flex: none; width: 100%; }
  .policy-rights-grid { grid-template-columns: 1fr; }
  .help-tab-grid { grid-template-columns: 1fr; }
  .help-rec-grid { grid-template-columns: 1fr 1fr; }

  /* CTA */
  .cta-section { padding: 56px 24px; margin: 0 0 60px; border-radius: 0; }
  .cta-actions { flex-direction: column; align-items: center; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }

  /* Stats */
  .stat-number { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  /* Nav */
  .navbar-brand { font-size: 1.1rem; }

  /* Hero */
  .hero { padding: 56px 16px 64px; }
  .hero-badge { font-size: 0.75rem; }

  /* Stats */
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 20px 12px; }
  .stat-number { font-size: 1.6rem; }
  .stat-label { font-size: 0.75rem; }

  /* Help */
  .help-rec-grid { grid-template-columns: 1fr; }
  .help-stats-mock { grid-template-columns: 1fr; }
  .help-layout { padding: 16px; }

  /* Cards */
  .feature-card { padding: 24px 20px; }
  .section { padding: 48px 16px; }

  /* Page hero */
  .page-hero { padding: 52px 16px 44px; }

  /* Footer */
  footer { padding: 40px 20px 24px; }
}
