/* ============================================================
   EarnWise — Shared Stylesheet
   ============================================================ */

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

:root {
  --bg: #0c0c0b; --bg2: #141413; --bg3: #1c1c1a;
  --gold: #c9a96e; --gold-light: #e8cc9a; --gold-dim: #7a6440;
  --text: #f0ede8; --text-muted: #8a8680; --text-dim: #5a5752;
  --border: rgba(201,169,110,0.15);
  --border-subtle: rgba(255,255,255,0.06);
  --pro: #8fb88f; --con: #c98a8a;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: 'Outfit', sans-serif; font-weight: 300; line-height: 1.6;
  min-height: 100vh; overflow-x: hidden;
}
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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: 0.6;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 4rem; border-bottom: 1px solid var(--border-subtle);
  background: rgba(12,12,11,0.85); backdrop-filter: blur(20px);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600; letter-spacing: 0.05em;
  color: var(--gold); text-decoration: none;
}
.logo span { color: var(--text); font-weight: 300; }
nav ul { display: flex; gap: 2.5rem; list-style: none; }
nav a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s;
}
nav a:hover { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--gold); color: #0c0c0b;
  padding: 0.85rem 2.2rem; border-radius: 2px; text-decoration: none;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer; font-family: 'Outfit', sans-serif;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translate(2px, -2px); }
.btn-ghost {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(3px); }

/* ===== HERO ===== */
.hero {
  position: relative; z-index: 1; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 2rem 4rem;
}
.hero::before {
  content: ''; position: absolute; top: 20%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.8s 0.1s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold-dim);
}
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem); font-weight: 300; line-height: 1.1; letter-spacing: -0.01em;
  max-width: 800px; opacity: 0; animation: fadeUp 0.8s 0.25s forwards;
}
h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  margin-top: 2rem; font-size: 1.05rem; color: var(--text-muted);
  max-width: 480px; line-height: 1.7; font-weight: 300;
  opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
}
.hero-cta {
  margin-top: 3rem; display: flex; gap: 1rem; align-items: center;
  opacity: 0; animation: fadeUp 0.8s 0.55s forwards;
}

/* ===== STATS BAR ===== */
.stats-bar {
  position: relative; z-index: 1;
  display: flex; justify-content: center;
  border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle);
  background: var(--bg2);
  opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
}
.stat { padding: 2rem 3.5rem; text-align: center; border-right: 1px solid var(--border-subtle); }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 400; color: var(--gold);
  line-height: 1; margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); }

/* ===== APPS SECTION ===== */
section.apps { position: relative; z-index: 1; padding: 7rem 4rem; max-width: 1300px; margin: 0 auto; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; }
.section-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.1; }

.filter-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn {
  padding: 0.45rem 1.1rem; border: 1px solid var(--border-subtle);
  background: transparent; color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; border-radius: 2px; transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.06);
}

/* ===== CARDS ===== */
.app-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5px; background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}
.app-card {
  background: var(--bg2); padding: 2.2rem;
  position: relative; overflow: hidden;
  transition: background 0.25s;
  display: flex; flex-direction: column;
}
.app-card::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.25s; pointer-events: none;
}
.app-card:hover { background: var(--bg3); }
.app-card:hover::after { border-color: var(--border); }
.app-card.featured { grid-column: span 2; }
.card-content { flex: 1; }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; gap: 1rem; }
.app-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.card-top-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }
.flags { display: flex; gap: 3px; flex-wrap: wrap; justify-content: flex-end; max-width: 130px; }
.flag { font-size: 0.95rem; line-height: 1; opacity: 0.85; cursor: help; }
.flag-fallback {
  font-size: 0.6rem; letter-spacing: 0.05em; color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  padding: 2px 5px; border-radius: 2px; border: 1px solid var(--border-subtle);
}
.badge {
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 2px; white-space: nowrap;
}
.badge-gold { background: rgba(201,169,110,0.12); color: var(--gold); border: 1px solid rgba(201,169,110,0.25); }
.badge-new { background: rgba(255,255,255,0.05); color: var(--text-muted); border: 1px solid var(--border-subtle); }
.app-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; margin-bottom: 0.3rem; line-height: 1.1; }
.app-type { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 1rem; }
.app-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.5rem; }
.app-meta {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--border-subtle);
}
.meta-item { display: flex; flex-direction: column; gap: 0.2rem; }
.meta-val { font-size: 0.95rem; font-weight: 500; color: var(--text); }
.meta-val.bonus { color: var(--gold); }
.meta-key { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }
.card-actions {
  display: flex; gap: 0.6rem; margin-top: 1.5rem;
  padding-top: 1.5rem; border-top: 1px solid var(--border-subtle);
}
.btn-card-ghost, .btn-card-primary {
  flex: 1; text-align: center;
  padding: 0.75rem 1rem; border-radius: 2px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: all 0.2s;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  border: 1px solid var(--border-subtle);
}
.btn-card-ghost { background: transparent; color: var(--text-muted); }
.btn-card-ghost:hover { border-color: var(--gold-dim); color: var(--text); }
.btn-card-primary { background: var(--gold); color: #0c0c0b; border-color: var(--gold); font-weight: 500; }
.btn-card-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-card-primary svg { transition: transform 0.2s; }
.btn-card-primary:hover svg { transform: translate(2px, -2px); }
.stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.star { color: var(--gold); font-size: 0.75rem; }
.star.empty { color: var(--text-dim); }
.featured-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.featured-highlight {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 300; line-height: 1.3; font-style: italic;
  color: var(--text-muted); border-left: 2px solid var(--gold-dim);
  padding-left: 1.5rem; margin-top: 1.5rem;
}
.no-results {
  grid-column: 1 / -1; padding: 4rem 2rem; text-align: center;
  color: var(--text-dim); background: var(--bg2); font-style: italic;
}

/* ===== TRUST SECTION ===== */
.trust-section {
  position: relative; z-index: 1; background: var(--bg2);
  border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle);
  padding: 6rem 4rem; text-align: center;
}
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4rem; max-width: 900px; margin: 4rem auto 0; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.trust-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
}
.trust-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; }
.trust-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== FOOTER ===== */
footer {
  position: relative; z-index: 1;
  padding: 3rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border-subtle);
}
footer p { font-size: 0.78rem; color: var(--text-dim); }
footer a { color: var(--text-dim); text-decoration: none; font-size: 0.78rem; transition: color 0.2s; }
footer a:hover { color: var(--gold); }

/* ===== ARTICLE / REVIEW PAGE ===== */
.article-wrap {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  padding: 9rem 2rem 4rem;
}
.breadcrumb {
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 2.5rem;
}
.breadcrumb a { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 0.7rem; }
.breadcrumb .current { color: var(--gold); }

.article-header {
  display: grid; grid-template-columns: 1fr 320px; gap: 4rem;
  align-items: start; margin-bottom: 4rem;
  padding-bottom: 4rem; border-bottom: 1px solid var(--border-subtle);
}
.header-main { display: flex; flex-direction: column; gap: 1.5rem; }
.article-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); width: fit-content;
}
.article-eyebrow::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--gold-dim);
}
h1.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; line-height: 1.05; letter-spacing: -0.01em;
  opacity: 1; animation: none; max-width: none;
}
h1.article-title em { font-style: italic; color: var(--gold); }
.article-meta {
  display: flex; align-items: center; gap: 1.5rem;
  font-size: 0.8rem; color: var(--text-muted); flex-wrap: wrap;
}

.quick-facts {
  background: var(--bg2);
  border: 1px solid var(--border-subtle); border-radius: 4px;
  padding: 1.75rem;
}
.quick-facts h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400; margin-bottom: 1.25rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--border-subtle);
  color: var(--gold);
}
.quick-fact-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.6rem 0; font-size: 0.85rem;
  border-bottom: 1px solid var(--border-subtle);
}
.quick-fact-row:last-of-type { border-bottom: none; }
.qf-key { color: var(--text-muted); }
.qf-val { color: var(--text); font-weight: 500; }
.qf-val.gold { color: var(--gold); }
.quick-facts .flags-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 0.4rem; }
.cta-block { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.btn-primary.cta-large { padding: 1rem 1.4rem; font-size: 0.78rem; letter-spacing: 0.1em; }
.cta-note { font-size: 0.7rem; color: var(--text-dim); text-align: center; line-height: 1.5; }

.article-body {
  display: grid; grid-template-columns: 1fr 320px; gap: 4rem;
  align-items: start;
}
.article-content { font-size: 1.02rem; color: var(--text); line-height: 1.85; }
.article-content > * + * { margin-top: 1.4rem; }
.article-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 400; line-height: 1.2;
  margin-top: 3.5rem !important; margin-bottom: 1rem !important;
  color: var(--text);
}
.article-content h2::before {
  content: ''; display: block; width: 40px; height: 1px;
  background: var(--gold-dim); margin-bottom: 1.5rem;
}
.article-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem; font-weight: 500; letter-spacing: 0.02em;
  margin-top: 2rem !important; margin-bottom: 0.5rem !important;
  color: var(--gold);
}
.article-content p { color: var(--text-muted); }
.article-content strong { color: var(--text); font-weight: 500; }
.article-content a { color: var(--gold); text-decoration: underline; text-decoration-color: var(--gold-dim); text-underline-offset: 3px; }
.article-content a:hover { text-decoration-color: var(--gold); }
.article-content .lead::first-letter {
  font-family: 'Cormorant Garamond', serif;
  float: left; font-size: 4.5rem; line-height: 0.85;
  padding: 0.4rem 0.8rem 0 0; color: var(--gold); font-weight: 400;
}
.article-content .lead {
  font-size: 1.15rem; line-height: 1.7; color: var(--text); font-weight: 300;
}

.verdict-box {
  background: var(--bg2);
  border-left: 3px solid var(--gold);
  padding: 2rem 2rem 2rem 2.2rem;
  margin: 2.5rem 0 !important;
}
.verdict-label {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
.verdict-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 300; font-style: italic;
  line-height: 1.4; color: var(--text);
}

.pros-cons {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  margin: 2rem 0 !important;
}
.pros, .cons { background: var(--bg2); padding: 1.75rem; }
.pros h4, .cons h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400;
  margin-bottom: 1.25rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}
.pros h4 { color: var(--pro); }
.cons h4 { color: var(--con); }
.pros ul, .cons ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.pros li, .cons li {
  font-size: 0.92rem; color: var(--text-muted);
  padding-left: 1.4rem; position: relative; line-height: 1.5;
}
.pros li::before, .cons li::before {
  position: absolute; left: 0; top: 0.15rem;
  font-size: 0.9rem;
}
.pros li::before { content: '+'; color: var(--pro); }
.cons li::before { content: '−'; color: var(--con); }

.steps { display: flex; flex-direction: column; gap: 0; margin: 2rem 0 !important; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.5rem;
  padding: 1.5rem 0; border-bottom: 1px solid var(--border-subtle);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300; color: var(--gold-dim);
  line-height: 1; min-width: 50px;
}
.step-content h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem; font-weight: 500; margin-bottom: 0.4rem;
  color: var(--text);
}
.step-content p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }

.earnings-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  margin: 2rem 0 !important;
}
.es-item { background: var(--bg2); padding: 1.5rem; text-align: center; }
.es-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 400; color: var(--gold);
  line-height: 1; margin-bottom: 0.4rem;
}
.es-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }

.faq-list { margin: 2rem 0 !important; }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-item:first-child { border-top: 1px solid var(--border-subtle); }
.faq-q {
  width: 100%; text-align: left;
  background: transparent; border: none; cursor: pointer;
  padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400; color: var(--text);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q::after {
  content: '+'; font-size: 1.5rem; color: var(--gold);
  transition: transform 0.3s; font-weight: 300; line-height: 1;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--text-muted); font-size: 0.95rem;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 0 1.5rem; }

.article-sidebar {
  position: sticky; top: 100px;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.side-cta {
  background: var(--bg2);
  border: 1px solid var(--border-subtle);
  border-radius: 4px; padding: 1.5rem;
}
.side-cta h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; margin-bottom: 0.5rem; }
.side-cta p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.5; }
.side-cta .btn-primary { font-size: 0.7rem; padding: 0.8rem; width: 100%; }

.disclosure-banner {
  background: rgba(201,169,110,0.04);
  border-left: 2px solid var(--gold-dim);
  padding: 1rem 1.25rem;
  font-size: 0.78rem; color: var(--text-muted);
  line-height: 1.5; margin: 0 0 2.5rem;
  font-style: italic;
}

.final-cta {
  margin-top: 5rem; padding: 4rem 3rem;
  background: var(--bg2);
  border: 1px solid var(--border-subtle); border-radius: 4px;
  text-align: center;
}
.final-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; margin-bottom: 1rem; }
.final-cta h2::before { display: none; }
.final-cta p { color: var(--text-muted); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===== LEGAL / CONTACT PAGES ===== */
.page-wrap {
  position: relative; z-index: 1;
  max-width: 780px; margin: 0 auto;
  padding: 9rem 2rem 4rem;
}
.page-header { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border-subtle); }
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 300; line-height: 1.1;
  opacity: 1; animation: none; max-width: none; margin-bottom: 1rem;
}
.page-header .updated { font-size: 0.78rem; color: var(--text-dim); letter-spacing: 0.05em; }
.page-content { font-size: 1rem; line-height: 1.8; color: var(--text-muted); }
.page-content > * + * { margin-top: 1.2rem; }
.page-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400;
  color: var(--text);
  margin-top: 2.5rem !important; margin-bottom: 1rem !important;
}
.page-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem; font-weight: 500; color: var(--gold);
  margin-top: 1.5rem !important; margin-bottom: 0.5rem !important;
}
.page-content p { color: var(--text-muted); }
.page-content strong { color: var(--text); font-weight: 500; }
.page-content ul { padding-left: 1.5rem; }
.page-content li { margin-bottom: 0.5rem; }
.page-content a { color: var(--gold); text-decoration: underline; text-decoration-color: var(--gold-dim); text-underline-offset: 3px; }
.page-content a:hover { text-decoration-color: var(--gold); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px;
  background: var(--border-subtle); border: 1px solid var(--border-subtle);
  margin-top: 2rem;
}
.contact-card { background: var(--bg2); padding: 2rem; }
.contact-card h3 { color: var(--gold); margin-bottom: 0.5rem; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
.contact-card p { font-size: 0.95rem; }
.contact-card a { color: var(--text); text-decoration: none; }
.contact-card a:hover { color: var(--gold); }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  nav ul { display: none; }
  section.apps { padding: 4rem 1.5rem; }
  .app-card.featured { grid-column: span 1; }
  .featured-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .trust-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-bar { flex-wrap: wrap; }
  .stat { border-right: none; border-bottom: 1px solid var(--border-subtle); flex: 1 1 45%; padding: 1.5rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .trust-section { padding: 4rem 1.5rem; }
  .article-wrap { padding: 7rem 1.25rem 2rem; }
  .article-header { grid-template-columns: 1fr; gap: 2.5rem; }
  .article-body { grid-template-columns: 1fr; gap: 3rem; }
  .article-sidebar { position: static; }
  .pros-cons { grid-template-columns: 1fr; }
  .earnings-stats { grid-template-columns: 1fr; }
  .final-cta { padding: 2.5rem 1.5rem; }
  .page-wrap { padding: 7rem 1.5rem 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
}
