/* =============================================
   MagicWallet – Redesigned Stylesheet v2
   magikwallet.com
   ============================================= */

/* ── Design Tokens ── */
:root {
  --gold:        #D4A843;
  --gold-light:  #F0C860;
  --gold-pale:   rgba(212,168,67,0.12);
  --gold-border: rgba(212,168,67,0.22);

  --bg:    #08080F;
  --bg2:   #0F0F1C;
  --bg3:   #16162A;
  --text:  #EDE9E1;
  --muted: #B0ABBE;
  --border: rgba(212,168,67,0.15);
  --card:  rgba(255,255,255,0.03);
  --shadow: rgba(0,0,0,0.55);

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --ease: 0.3s ease;
}

[data-theme="light"] {
  --gold:        #8B6B14;
  --gold-light:  #A07820;
  --gold-pale:   rgba(139,107,20,0.07);
  --gold-border: rgba(139,107,20,0.25);
  --bg:    #F9F7F2;
  --bg2:   #F1EDE3;
  --bg3:   #E6DFD0;
  --text:  #1A1612;
  --muted: #5C5850;
  --border: rgba(139,107,20,0.18);
  --card:  rgba(0,0,0,0.025);
  --shadow: rgba(0,0,0,0.08);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  transition: background var(--ease), color var(--ease);
}

/* ── Noise grain ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.12;
}
[data-theme="light"] body::before { opacity: 0.06; }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  height: 68px;
  background: rgba(8,8,15,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--ease), border-color var(--ease);
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--gold);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--gold); letter-spacing: 0.02em;
}

.nav-links { display: flex; gap: 36px; list-style: none; }

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 12px; }

/* Theme toggle */
.theme-toggle {
  width: 36px; height: 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px;
  transition: all var(--ease);
  color: var(--text);
}
.theme-toggle:hover { border-color: var(--gold); background: var(--gold-pale); }

.nav-cta {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold); padding: 9px 22px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  cursor: pointer; border-radius: var(--radius-sm);
  transition: all var(--ease); text-decoration: none;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--gold); border-radius: 2px; transition: all var(--ease);
}

.nav-links.mobile-open {
  display: flex; flex-direction: column;
  position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(8,8,15,0.97);
  padding: 24px 32px; gap: 20px;
  border-bottom: 1px solid var(--border);
  z-index: 99;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  position: relative; overflow: hidden;
  padding: 140px 40px 100px;
}

.hero-bg-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at 50% 30%,
    rgba(58,29,110,0.55) 0%,
    rgba(212,168,67,0.06) 50%,
    transparent 70%);
  pointer-events: none;
}
.hero-glow-left {
  position: absolute; bottom: 15%; left: -5%;
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(100,60,160,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-right {
  position: absolute; top: 25%; right: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(212,168,67,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.streak { position: absolute; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  pointer-events: none; animation: streakFade 5s ease-in-out infinite; }
.streak-1 { width: 55%; top: 32%; left: 22%; animation-delay: 0s; opacity: 0.25; }
.streak-2 { width: 35%; top: 68%; left: 32%; animation-delay: 2s; opacity: 0.15; }

@keyframes streakFade {
  0%, 100% { opacity: 0; } 50% { opacity: 0.3; }
}

.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  position: relative; z-index: 1; animation: fadeUp 0.8s ease both;
}

.hero-logo-img {
  width: 88px; height: 88px;
  background: linear-gradient(145deg, var(--bg3), var(--bg2));
  border: 1.5px solid var(--gold); border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--gold);
  margin: 0 auto 32px; position: relative; z-index: 1;
  animation: fadeUp 0.8s ease 0.1s both;
  box-shadow: 0 0 48px rgba(212,168,67,0.22), inset 0 1px 0 rgba(255,255,255,0.07);
}
.hero-logo-img::before, .hero-logo-img::after {
  content: '✦'; position: absolute; font-size: 12px; color: var(--gold-light);
  animation: sparkle 2.5s ease-in-out infinite;
}
.hero-logo-img::before { top: -10px; right: -5px; }
.hero-logo-img::after  { bottom: -8px; left: -7px; font-size: 8px; animation-delay: 1.3s; }

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50%       { opacity: 1; transform: scale(1.1); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 104px);
  font-weight: 700; line-height: 1.0; color: var(--gold);
  position: relative; z-index: 1;
  animation: fadeUp 0.9s ease 0.2s both;
  letter-spacing: -0.01em;
}

.hero-tagline {
  font-size: 13px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted);
  margin-top: 14px; margin-bottom: 32px;
  position: relative; z-index: 1; animation: fadeUp 0.9s ease 0.35s both;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 400; line-height: 1.25; color: var(--text);
  max-width: 700px; position: relative; z-index: 1;
  animation: fadeUp 1s ease 0.45s both;
}
.hero-headline em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 16px; color: var(--muted); margin-top: 20px;
  letter-spacing: 0.02em; line-height: 1.7;
  position: relative; z-index: 1; animation: fadeUp 1s ease 0.55s both;
}

.hero-actions {
  display: flex; gap: 16px; margin-top: 48px;
  position: relative; z-index: 1;
  animation: fadeUp 1s ease 0.65s both;
  flex-wrap: wrap; justify-content: center;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  background: linear-gradient(135deg, #B8922A, #D4AF50, #A07820);
  color: var(--bg); border: none;
  padding: 16px 40px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; border-radius: var(--radius-sm);
  text-decoration: none; display: inline-block;
  transition: all var(--ease);
  box-shadow: 0 4px 28px rgba(212,168,67,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(212,168,67,0.5); }

.btn-secondary {
  background: transparent; color: var(--text);
  border: 1px solid rgba(237,233,225,0.2);
  padding: 16px 40px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; border-radius: var(--radius-sm);
  text-decoration: none; display: inline-block;
  transition: all var(--ease);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
[data-theme="light"] .btn-secondary { border-color: rgba(26,22,18,0.25); }
[data-theme="light"] .btn-secondary:hover { border-color: var(--gold); }

/* ══════════════════════════════════════
   PHONE MOCKUP
══════════════════════════════════════ */
.phone-section {
  padding: 80px 40px;
  display: flex; justify-content: center;
  position: relative;
}

.phone-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(100,60,180,0.28) 0%, transparent 65%);
  pointer-events: none;
}

.phone-frame {
  width: 268px;
  background: linear-gradient(145deg, var(--bg3), var(--bg2));
  border: 1.5px solid var(--gold-border);
  border-radius: 38px; padding: 16px 14px;
  box-shadow:
    0 0 60px rgba(100,60,180,0.35),
    0 0 120px rgba(100,60,180,0.15),
    0 40px 80px var(--shadow),
    inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative; z-index: 1;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.phone-notch {
  width: 70px; height: 6px;
  background: var(--bg); border-radius: 3px;
  margin: 0 auto 14px;
}

.phone-screen {
  background: var(--bg); border-radius: 24px;
  padding: 16px; overflow: hidden;
}

.phone-greeting  { font-size: 11px; color: var(--muted); }
.phone-name      { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 16px; }
.phone-balance-label { font-size: 10px; color: var(--muted); letter-spacing: 0.05em; }
.phone-balance   { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--text); }
.phone-change    { font-size: 10px; color: #4CAF80; margin-bottom: 14px; }

.mini-chart      { height: 48px; margin-bottom: 16px; }
.mini-chart svg  { width: 100%; height: 100%; }

.phone-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 8px; margin-bottom: 14px;
}

.phone-stat {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm); padding: 8px 6px; text-align: center;
}
.phone-stat-icon  { font-size: 14px; margin-bottom: 4px; }
.phone-stat-label { font-size: 8px; color: var(--muted); display: block; }
.phone-stat-val   { font-size: 9px; font-weight: 600; color: var(--text); }

.phone-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 9px;
}
.phone-row-left  { display: flex; align-items: center; gap: 6px; color: var(--text); }
.phone-row-dot   { width: 6px; height: 6px; border-radius: 50%; }
.phone-row-right { color: var(--muted); }

/* ══════════════════════════════════════
   STATS STRIP
══════════════════════════════════════ */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 60px;
  display: flex; justify-content: center; gap: 80px;
  background: linear-gradient(to bottom, var(--gold-pale), transparent);
  flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-num {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}

.stat-desc {
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500;
}

/* ══════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════ */
.section-label {
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; text-align: center; font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 600; text-align: center; color: var(--text);
  margin-bottom: 64px; line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--gold); }

/* ══════════════════════════════════════
   MISSION
══════════════════════════════════════ */
.mission-section {
  padding: 100px 60px; max-width: 900px; margin: 0 auto;
}

.mission-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 400; font-style: italic;
  color: var(--text); line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 32px; margin: 40px 0;
}
.mission-quote em { color: var(--gold); font-style: normal; }

.mission-body {
  font-size: 16px; color: var(--muted);
  line-height: 1.9; margin-top: 24px; font-weight: 400;
}

/* ══════════════════════════════════════
   FOUR PILLARS
══════════════════════════════════════ */
.pillars { padding: 80px 60px; max-width: 1100px; margin: 0 auto; }

.pillars-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.pillar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 32px 28px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: all var(--ease); position: relative; overflow: hidden;
}
.pillar-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity var(--ease);
}
.pillar-card:hover { border-color: var(--gold-border); transform: translateY(-3px); box-shadow: 0 16px 48px var(--shadow); }
.pillar-card:hover::after { opacity: 1; }

.pillar-num {
  font-family: var(--font-display); font-size: 52px; font-weight: 700;
  color: var(--gold-pale); line-height: 1; min-width: 44px;
  filter: drop-shadow(0 0 8px var(--gold));
  opacity: 0.6;
}
.pillar-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--gold); margin-bottom: 8px; }
.pillar-desc { font-size: 15px; color: var(--muted); line-height: 1.75; }
.pillar-metric {
  display: inline-block; margin-top: 12px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); opacity: 0.65; font-weight: 500;
}

/* ══════════════════════════════════════
   FEATURES
══════════════════════════════════════ */
.features { padding: 100px 60px; max-width: 1100px; margin: 0 auto; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 36px 28px;
  transition: all var(--ease); position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity var(--ease);
}
.feature-card:hover {
  border-color: var(--gold-border); transform: translateY(-4px);
  box-shadow: 0 20px 60px var(--shadow), 0 0 40px rgba(100,60,180,0.1);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--gold-pale), rgba(100,60,180,0.1));
  border: 1px solid var(--gold-border); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}

.feature-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  color: var(--gold); margin-bottom: 12px;
}

.feature-desc { font-size: 15px; color: var(--muted); line-height: 1.75; }

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.how { padding: 100px 60px; max-width: 900px; margin: 0 auto; }

.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: flex; gap: 36px; align-items: flex-start; position: relative;
}
.step:not(:last-child)::after {
  content: ''; position: absolute;
  left: 19px; top: 52px; bottom: -20px; width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.22;
}

.step-num {
  width: 40px; height: 40px; min-width: 40px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--gold); margin-top: 2px;
  background: var(--gold-pale);
}

.step-content  { padding-bottom: 48px; }
.step-title    { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.step-desc     { font-size: 16px; color: var(--muted); line-height: 1.8; max-width: 560px; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials {
  padding: 100px 60px;
  max-width: 1100px; margin: 0 auto;
}

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

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  display: flex; flex-direction: column; gap: 20px;
  transition: all var(--ease); position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity var(--ease);
}
.testimonial-card:hover {
  border-color: var(--gold-border); transform: translateY(-4px);
  box-shadow: 0 20px 60px var(--shadow);
}
.testimonial-card:hover::before { opacity: 1; }

.testimonial-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 18px; font-style: italic;
  color: var(--text); line-height: 1.7; flex: 1;
}
.testimonial-quote::before { content: '\201C'; color: var(--gold); font-size: 28px; line-height: 0; vertical-align: -8px; margin-right: 2px; }
.testimonial-quote::after  { content: '\201D'; color: var(--gold); font-size: 28px; line-height: 0; vertical-align: -8px; margin-left: 2px; }

.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--border); padding-top: 18px;
}

.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), rgba(100,60,180,0.2));
  border: 1.5px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--gold);
}

.testimonial-name { font-size: 14px; font-weight: 600; color: var(--text); }
.testimonial-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq { padding: 100px 60px; max-width: 800px; margin: 0 auto; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden; transition: border-color var(--ease);
}
.faq-item.open { border-color: var(--gold-border); }

.faq-question {
  width: 100%; padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
  color: var(--text); text-align: left; transition: color var(--ease);
}
.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }

.faq-icon {
  width: 28px; height: 28px; min-width: 28px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 300; color: var(--gold);
  transition: transform var(--ease), background var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold-pale); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px; color: var(--muted); line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
.pricing { padding: 100px 60px; max-width: 860px; margin: 0 auto; text-align: center; }

.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; text-align: left; }

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 32px;
  transition: all var(--ease);
}
.pricing-card:hover { border-color: var(--gold-border); transform: translateY(-3px); box-shadow: 0 16px 48px var(--shadow); }

.pricing-card.featured {
  border-color: rgba(212,168,67,0.45);
  background: linear-gradient(145deg, var(--gold-pale), rgba(100,60,180,0.06));
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #B8922A, #D4AF50);
  color: var(--bg); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 20px;
}

.pricing-tier { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; font-weight: 600; }
.pricing-price { font-family: var(--font-display); font-size: 52px; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 4px; }
.pricing-price span { font-size: 18px; color: var(--muted); font-weight: 400; }
.pricing-annual { font-size: 13px; color: var(--gold); margin-bottom: 28px; min-height: 18px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li { font-size: 14px; color: var(--muted); display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.pricing-features li::before { content: '✓'; color: var(--gold); font-size: 13px; flex-shrink: 0; margin-top: 1px; font-weight: 700; }

/* ══════════════════════════════════════
   PRIVACY SECTION
══════════════════════════════════════ */
.privacy-section {
  padding: 100px 40px;
  text-align: center; position: relative;
}

.privacy-inner {
  max-width: 720px; margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 64px 48px;
  position: relative;
}
.privacy-inner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.privacy-icon { font-size: 42px; margin-bottom: 20px; display: block; }

.privacy-body {
  font-size: 16px; color: var(--muted); line-height: 1.85; margin-bottom: 32px;
}

.privacy-points {
  display: flex; flex-direction: column; gap: 16px;
  margin: 28px 0 32px; text-align: left;
}

.privacy-point {
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 8px;
}

.privacy-point-label {
  font-size: 14px; font-weight: 700;
  color: var(--gold); letter-spacing: 0.02em;
}

.privacy-point-text {
  font-size: 15px; color: var(--muted); line-height: 1.75;
}

.privacy-link {
  display: inline-block; color: var(--gold); font-size: 14px; font-weight: 600;
  letter-spacing: 0.05em; text-decoration: none;
  border-bottom: 1px solid var(--gold-border); padding-bottom: 2px;
  transition: border-color var(--ease), color var(--ease);
}
.privacy-link:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ══════════════════════════════════════
   DOWNLOAD
══════════════════════════════════════ */
.download {
  padding: 100px 40px; text-align: center; position: relative; overflow: hidden;
}
.download::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(58,29,110,0.45) 0%, transparent 65%);
  pointer-events: none;
}

.download-card {
  background: linear-gradient(135deg, var(--gold-pale), rgba(100,60,180,0.06));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg); padding: 72px 48px;
  max-width: 720px; margin: 0 auto;
  position: relative; z-index: 1;
}

.download-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700; color: var(--gold);
  margin-bottom: 20px; line-height: 1.1;
}

.download-sub { font-size: 16px; color: var(--muted); margin-bottom: 44px; line-height: 1.75; }

.store-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.store-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md); padding: 14px 28px;
  text-decoration: none; color: var(--text); transition: all var(--ease);
}
.store-btn:hover {
  background: var(--gold-pale); border-color: var(--gold); transform: translateY(-2px);
}
.store-btn-icon   { font-size: 26px; }
.store-btn-text   { text-align: left; }
.store-btn-small  { font-size: 10px; color: var(--muted); display: block; letter-spacing: 0.06em; text-transform: uppercase; }
.store-btn-name   { font-size: 17px; font-weight: 600; display: block; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 60px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}

.footer-logo { font-family: var(--font-display); font-size: 22px; color: var(--gold); font-weight: 700; }
.footer-tagline { font-size: 12px; color: var(--muted); margin-top: 4px; }
.footer-brand   { font-size: 11px; color: var(--muted); margin-top: 2px; opacity: 0.55; }

.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a {
  font-size: 13px; color: var(--muted); text-decoration: none;
  letter-spacing: 0.05em; font-weight: 500; transition: color var(--ease);
}
.footer-links a:hover { color: var(--gold); }

.footer-copy { font-size: 12px; color: var(--muted); opacity: 0.5; }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .features, .testimonials, .faq { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-strip { gap: 40px; padding: 48px 24px; }
  .how, .pillars { padding: 60px 24px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pricing { padding: 60px 24px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .download, .privacy-section { padding: 60px 24px; }
  .download-card, .privacy-inner { padding: 40px 24px; }
  footer { padding: 36px 24px; flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .phone-frame { width: 230px; }
  .stat-num { font-size: 44px; }
  .mission-section { padding: 60px 24px; }
  .mission-quote { padding-left: 20px; font-size: clamp(18px, 5vw, 26px); }
}

@media (max-width: 480px) {
  .hero { padding: 110px 24px 60px; }
  .stats-strip { gap: 28px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
