/* ─── VARIABLES ─────────────────────────────────────────────────────────────── */
:root {
  --brand:        #7c3aed;
  --brand-dark:   #5b21b6;
  --brand-light:  #ede9fe;
  --brand-xlight: #f5f3ff;
  --accent:       #f59e0b;
  --accent-light: #fef3c7;
  --green:        #059669;
  --green-light:  #d1fae5;
  --red:          #dc2626;
  --text:         #111827;
  --text-2:       #374151;
  --text-muted:   #6b7280;
  --text-light:   #9ca3af;
  --border:       #e5e7eb;
  --border-2:     #d1d5db;
  --bg:           #ffffff;
  --bg-alt:       #f9fafb;
  --bg-alt2:      #f3f4f6;
  --shadow-xs:    0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow:       0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-md:    0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.05);
  --shadow-lg:    0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.04);
  --radius-sm:    6px;
  --radius:       10px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --radius-xl:    28px;
}

/* ─── RESET ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
input, button, select, textarea { font: inherit; }
h1,h2,h3,h4,h5,h6 { line-height: 1.2; font-weight: 700; color: var(--text); }

/* ─── LAYOUT ─────────────────────────────────────────────────────────────────── */
.container      { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-sm   { max-width: 860px;  margin: 0 auto; padding: 0 24px; }
.container-xs   { max-width: 480px;  margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 700px; margin: 0 auto; padding: 0 24px; }
.section        { padding: 64px 0; }
.section-alt    { background: var(--bg-alt); }
.section-cta    { background: var(--brand-xlight); }
.text-center    { text-align: center; }
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 32px; }
.section-header h2 { font-size: 1.6rem; }
.section-title-center { text-align: center; font-size: 1.75rem; margin-bottom: 36px; }
.see-all { font-size: .9rem; color: var(--brand); font-weight: 600; }
.see-all:hover { text-decoration: underline; }

/* ─── NAVBAR ─────────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 62px;
}
.nav-brand { font-size: 1.1rem; font-weight: 800; color: var(--text); }
.nav-brand:hover { text-decoration: none; color: var(--brand); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-weight: 500; color: var(--text-2); font-size: .95rem; }
.nav-links a:hover { color: var(--brand); text-decoration: none; }
.nav-admin { font-size: .85rem !important; color: var(--text-muted) !important; }
.nav-mobile-toggle { display: none; background: none; border: none; font-size: 1.3rem; cursor: pointer; }
.nav-mobile { display: none; flex-direction: column; padding: 12px 24px 16px; gap: 12px; border-top: 1px solid var(--border); }
.nav-mobile a { font-weight: 500; color: var(--text-2); }
.nav-mobile.visible { display: flex; }

/* ─── BUTTONS ─────────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--brand); color: #fff; border: none; border-radius: var(--radius);
  padding: 12px 24px; font-weight: 600; font-size: .95rem;
  cursor: pointer; transition: background .15s, transform .1s, box-shadow .15s;
  box-shadow: 0 2px 8px rgba(124,58,237,.25);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--brand-dark); box-shadow: 0 4px 14px rgba(124,58,237,.35); transform: translateY(-1px); text-decoration: none; color: #fff; }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--text); border: 1.5px solid var(--border-2);
  border-radius: var(--radius); padding: 11px 22px; font-weight: 600; font-size: .95rem;
  cursor: pointer; transition: border-color .15s, background .15s;
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-xlight); text-decoration: none; }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-alt2); color: var(--text); border: 1.5px solid var(--border-2);
  border-radius: var(--radius); padding: 10px 20px; font-weight: 600; font-size: .9rem;
  cursor: pointer; transition: background .15s, border-color .15s;
}
.btn-secondary:hover { background: var(--border); border-color: var(--border-2); text-decoration: none; }
.btn-lg  { padding: 15px 32px; font-size: 1.05rem; border-radius: var(--radius-md); }
.btn-sm  { padding: 8px 16px; font-size: .85rem; border-radius: var(--radius-sm); }
.btn-full { width: 100%; }
.btn-disabled { opacity: .45; cursor: not-allowed; }
.btn-disabled:hover { transform: none; box-shadow: none; }

/* BUY BUTTONS */
.btn-buy {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; border: none; border-radius: var(--radius-md);
  padding: 16px 24px; font-size: 1.05rem; font-weight: 700;
  cursor: pointer; transition: all .15s;
}
.btn-stripe {
  background: var(--brand); color: #fff;
  box-shadow: 0 4px 14px rgba(124,58,237,.3);
}
.btn-stripe:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(124,58,237,.38); }
.btn-paypal { background: #ffc439; color: #003087; }
.btn-paypal:hover { background: #f0b429; }
.btn-success-dl { background: var(--green); box-shadow: 0 4px 14px rgba(5,150,105,.3); }
.btn-success-dl:hover { background: #047857; }

/* ─── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--brand-xlight) 0%, #fff 60%);
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--border);
}
.hero-inner { max-width: 660px; margin: 0 auto; padding: 0 24px; text-align: center; }
.hero-badge {
  display: inline-block; background: var(--brand-light); color: var(--brand);
  font-size: .8rem; font-weight: 700; padding: 5px 14px; border-radius: 100px;
  margin-bottom: 20px; letter-spacing: .04em; text-transform: uppercase;
}
.hero-headline { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 18px; line-height: 1.1; }
.hero-highlight { color: var(--brand); }
.hero-sub { font-size: 1.1rem; color: var(--text-2); max-width: 520px; margin: 0 auto 32px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.hero-trust { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; font-size: .85rem; color: var(--text-muted); font-weight: 500; }

/* ─── NICHE BAR ─────────────────────────────────────────────────────────────── */
.niches-bar {
  padding: 16px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.niches-bar .container { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.niche-pill {
  background: var(--bg-alt); border: 1.5px solid var(--border);
  border-radius: 100px; padding: 7px 16px; font-size: .85rem; font-weight: 600;
  color: var(--text-2); transition: all .15s;
}
.niche-pill:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-xlight); text-decoration: none; }

/* ─── PRODUCT CARDS ─────────────────────────────────────────────────────────── */
.product-grid     { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; }
.product-grid-lg  { grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); }
.product-grid-center { justify-content: center; max-width: 720px; margin: 0 auto; }
.product-card {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-md);
  display: flex; flex-direction: column; overflow: hidden;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  box-shadow: var(--shadow-sm);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--brand-light); }
.card-cover-link { display: block; overflow: hidden; background: #f3f3f3; }
.card-cover-img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top;
  display: block; transition: transform .3s ease;
}
.product-card:hover .card-cover-img { transform: scale(1.03); }
.card-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-niche-badge {
  display: inline-block; font-size: .72rem; font-weight: 700; color: var(--brand);
  background: var(--brand-xlight); padding: 3px 10px; border-radius: 100px;
  align-self: flex-start;
}
.card-emoji { font-size: 2.2rem; line-height: 1; }
.card-title { font-size: 1.05rem; font-weight: 700; line-height: 1.3; }
.card-subtitle { font-size: .88rem; color: var(--text-muted); line-height: 1.5; flex: 1; }
.card-meta { font-size: .8rem; color: var(--text-light); }
.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.card-price { display: flex; align-items: baseline; gap: 8px; }
.price-current { font-size: 1.25rem; font-weight: 800; color: var(--text); }
.price-original { font-size: .9rem; color: var(--text-light); text-decoration: line-through; }

/* ─── TRUST BAR ─────────────────────────────────────────────────────────────── */
.trust-bar { background: var(--bg-alt2); padding: 40px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 28px; }
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-icon { font-size: 1.6rem; flex-shrink: 0; }
.trust-item strong { display: block; font-size: .95rem; margin-bottom: 3px; }
.trust-item p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* ─── EMAIL SECTION ─────────────────────────────────────────────────────────── */
.email-section { background: var(--brand); padding: 56px 0; }
.email-box { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.email-content { flex: 1; min-width: 280px; }
.email-content h2 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.email-content p { color: rgba(255,255,255,.85); margin: 0; }
.email-form { display: flex; gap: 10px; flex-wrap: wrap; flex: 1; min-width: 280px; }
.email-form input, .email-form-inline input {
  flex: 1; min-width: 200px; padding: 12px 16px;
  border: none; border-radius: var(--radius); font-size: .95rem;
  background: rgba(255,255,255,.95);
}
.email-form .btn-primary {
  background: var(--accent); color: var(--text);
  box-shadow: 0 2px 8px rgba(245,158,11,.3);
}
.email-form .btn-primary:hover { background: #d97706; }

/* ─── BLOG GRID ─────────────────────────────────────────────────────────────── */
.blog-grid       { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 24px; }
.blog-grid-full  { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }
.blog-card {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-md);
  padding: 24px; display: flex; flex-direction: column; gap: 8px;
  transition: box-shadow .2s, transform .2s; color: var(--text); box-shadow: var(--shadow-sm);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); text-decoration: none; }
.blog-card-niche { font-size: .75rem; font-weight: 700; color: var(--brand); background: var(--brand-xlight); padding: 3px 10px; border-radius: 100px; align-self: flex-start; }
.blog-card h2, .blog-card h3 { font-size: 1.05rem; line-height: 1.35; }
.blog-card-full h2 { font-size: 1.2rem; }
.blog-card p { font-size: .88rem; color: var(--text-muted); flex: 1; }
.blog-read-more { font-size: .85rem; font-weight: 600; color: var(--brand); margin-top: 4px; }

/* ─── PAGE HEADER ─────────────────────────────────────────────────────────────── */
.page-header { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 48px 0 40px; }
.page-header h1 { font-size: 2rem; margin-bottom: 8px; }
.page-header p { color: var(--text-muted); font-size: 1rem; }

/* ─── FILTER BAR ─────────────────────────────────────────────────────────────── */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-pill {
  background: var(--bg); border: 1.5px solid var(--border);
  padding: 7px 16px; border-radius: 100px; font-size: .85rem; font-weight: 600;
  color: var(--text-2); cursor: pointer; transition: all .15s;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--brand); color: #fff; border-color: var(--brand); text-decoration: none;
}

/* ─── SALES PAGE ──────────────────────────────────────────────────────────────── */
.sales-page {}
.sales-hero { padding: 48px 0 56px; background: linear-gradient(160deg, var(--brand-xlight) 0%, #fff 70%); }
.sales-hero-inner { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.sales-niche-tag {
  display: inline-block; background: var(--brand-light); color: var(--brand);
  font-size: .8rem; font-weight: 700; padding: 4px 12px; border-radius: 100px;
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: .04em;
}
.sales-title { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 14px; line-height: 1.15; }
.sales-subtitle { font-size: 1.15rem; color: var(--text-2); margin-bottom: 16px; }
.sales-social-proof { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--text-muted); }
.proof-text { color: var(--text-muted); font-size: .85rem; }
.sales-body { font-size: 1rem; color: var(--text-2); line-height: 1.7; margin-bottom: 16px; }

/* PRODUCT COVER IMAGE */
.product-cover-wrap {
  margin-top: 28px;
  display: flex;
  justify-content: flex-start;
}
.product-cover-img {
  width: 220px;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-cover-img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}

/* BUY BOX */
.buy-box {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  overflow: hidden; position: sticky; top: 80px;
}
.buy-box-inner { padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.buy-price-row { display: flex; align-items: baseline; gap: 10px; }
.buy-price { font-size: 2rem; font-weight: 800; color: var(--text); }
.buy-original { font-size: 1.1rem; color: var(--text-light); text-decoration: line-through; }
.buy-savings {
  font-size: .8rem; font-weight: 700; color: var(--green);
  background: var(--green-light); padding: 2px 8px; border-radius: 100px;
}
.buy-desc { font-size: .85rem; color: var(--text-muted); margin: -6px 0; }
.buy-trust { display: flex; flex-wrap: wrap; gap: 8px; font-size: .78rem; color: var(--text-muted); font-weight: 500; }
.buy-fine { text-align: center; font-size: .78rem; color: var(--text-light); }
.config-note { text-align: center; font-size: .85rem; color: var(--text-muted); background: var(--accent-light); padding: 12px; border-radius: var(--radius-sm); }

.buy-box-mid {
  background: var(--bg); border: 1.5px solid var(--brand-light);
  border-radius: var(--radius-lg); padding: 36px; text-align: center;
  display: flex; flex-direction: column; gap: 16px; align-items: center;
}
.buy-box-mid h2 { font-size: 1.5rem; }
.buy-box-mid p { color: var(--text-2); }
.buy-box-mid .btn-buy { max-width: 380px; }
.buy-box-mid #paypal-button-container-2 { width: 100%; max-width: 380px; }

/* TRUST STRIP */
.trust-strip {
  background: var(--text); color: rgba(255,255,255,.8);
  padding: 12px 0;
}
.trust-strip .container { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; font-size: .82rem; font-weight: 500; }

/* BULLETS */
.bullets-list { display: flex; flex-direction: column; gap: 14px; }
.bullet-item { display: flex; gap: 12px; align-items: flex-start; font-size: .97rem; }
.bullet-check { color: var(--green); font-weight: 800; font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* INSIDE GRID */
.inside-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 24px; text-align: center; }
.inside-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.inside-icon { font-size: 2rem; }
.inside-item h4 { font-size: .95rem; font-weight: 700; }
.inside-item p { font-size: .85rem; color: var(--text-muted); }

/* TESTIMONIAL */
.testimonial-quote {
  background: var(--bg); border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px; box-shadow: var(--shadow-sm);
}
.testimonial-quote p { font-size: 1.1rem; font-style: italic; color: var(--text-2); margin-bottom: 10px; line-height: 1.7; }
.testimonial-quote cite { font-size: .85rem; color: var(--text-muted); font-style: normal; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; cursor: pointer; transition: border-color .2s;
}
.faq-item:hover { border-color: var(--brand-light); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; font-weight: 600; gap: 12px;
}
.faq-arrow { font-size: 1.1rem; color: var(--brand); transition: transform .2s; flex-shrink: 0; }
.faq-a { padding: 0 20px 16px; color: var(--text-2); font-size: .95rem; line-height: 1.65; }
.faq-a.hidden { display: none; }

/* CHATGPT PROMPT */
.prompt-teaser {
  background: var(--bg-alt); border: 1.5px dashed var(--border-2);
  border-radius: var(--radius-md); padding: 28px; display: flex;
  flex-direction: column; gap: 14px;
}
.prompt-teaser h3 { font-size: 1.1rem; }
.prompt-teaser p { font-size: .9rem; color: var(--text-muted); }
.prompt-box {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 16px;
  font-size: .85rem; color: var(--text-2); line-height: 1.6;
  max-height: 90px; overflow: hidden; position: relative;
}
.prompt-box::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 36px; background: linear-gradient(transparent, var(--bg));
}

/* STICKY BAR */
.sticky-bar {
  position: fixed; bottom: -80px; left: 0; right: 0; z-index: 50;
  background: var(--bg); border-top: 1.5px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  padding: 12px 24px; transition: bottom .3s ease;
}
.sticky-bar.visible { bottom: 0; }
.sticky-bar-inner {
  max-width: 860px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.sticky-bar-inner strong { font-size: .95rem; }
.sticky-price { font-size: 1.1rem; font-weight: 800; margin-left: 10px; }
.sticky-original { font-size: .85rem; color: var(--text-light); text-decoration: line-through; margin-left: 6px; }

/* BREADCRUMB */
.breadcrumb { padding: 14px 0; font-size: .82rem; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.breadcrumb .container, .breadcrumb .container-sm { max-width: 1180px; margin: 0 auto; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--brand); }

/* ─── SUCCESS PAGE ────────────────────────────────────────────────────────────── */
.success-box {
  text-align: center; padding: 48px 32px;
  border: 1.5px solid var(--border); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md); max-width: 560px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 18px; align-items: center;
}
.success-icon { font-size: 3.5rem; }
.success-box h1 { font-size: 2rem; }
.success-sub { color: var(--text-2); font-size: 1.05rem; }
.success-details { background: var(--bg-alt); border-radius: var(--radius); padding: 16px 20px; text-align: left; width: 100%; font-size: .9rem; line-height: 1.7; }
.success-fine { font-size: .82rem; color: var(--text-muted); max-width: 440px; }
.success-next { background: var(--green-light); border-radius: var(--radius-md); padding: 20px 24px; text-align: left; width: 100%; }
.success-next h3 { font-size: 1rem; margin-bottom: 10px; color: var(--green); }
.success-next ul { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: .9rem; color: var(--text-2); }
.success-next li::before { content: ''; }
.success-more { display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: .9rem; color: var(--text-muted); }
.spinner { width: 32px; height: 32px; border: 3px solid var(--border); border-top-color: var(--brand); border-radius: 50%; animation: spin .8s linear infinite; margin: 8px auto; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── BLOG ARTICLE ────────────────────────────────────────────────────────────── */
.blog-article { padding: 48px 0 64px; }
.article-niche { display: inline-block; background: var(--brand-light); color: var(--brand); font-size: .78rem; font-weight: 700; padding: 4px 12px; border-radius: 100px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .04em; }
.article-title { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 12px; }
.article-excerpt { font-size: 1.1rem; color: var(--text-2); margin-bottom: 10px; }
.article-meta { font-size: .85rem; color: var(--text-light); }
.article-divider { border: none; border-top: 1.5px solid var(--border); margin: 28px 0; }
.article-body { font-size: 1rem; line-height: 1.8; color: var(--text-2); }
.article-body h2 { font-size: 1.35rem; margin: 32px 0 12px; color: var(--text); }
.article-body h3 { font-size: 1.1rem; margin: 24px 0 10px; color: var(--text); }
.article-body p { margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 0 0 16px 24px; }
.article-body li { margin-bottom: 6px; }
.article-body strong { color: var(--text); }
.article-email-cta { background: var(--brand-xlight); border: 1.5px solid var(--brand-light); border-radius: var(--radius-md); padding: 24px; margin-top: 24px; }
.article-email-cta h3 { margin-bottom: 6px; }
.article-email-cta p { font-size: .9rem; color: var(--text-muted); margin-bottom: 14px; }
.email-form-inline { display: flex; gap: 10px; flex-wrap: wrap; }
.email-form-inline input { flex: 1; min-width: 200px; padding: 11px 14px; border: 1.5px solid var(--border-2); border-radius: var(--radius); font-size: .95rem; background: var(--bg); }

/* ─── ADMIN ─────────────────────────────────────────────────────────────────── */
.admin-wrap { max-width: 1100px; margin: 0 auto; padding: 32px 24px 64px; }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.admin-header h1 { font-size: 1.6rem; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 20px; margin-bottom: 40px; }
.stat-card { background: var(--bg-alt); border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 24px; text-align: center; }
.stat-value { font-size: 2rem; font-weight: 800; color: var(--brand); margin-bottom: 6px; }
.stat-label { font-size: .85rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.admin-section { margin-bottom: 44px; }
.admin-section h2 { font-size: 1.2rem; margin-bottom: 16px; }
.admin-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.admin-section-header h2 { margin: 0; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .87rem; }
.admin-table th { background: var(--bg-alt); border-bottom: 2px solid var(--border); padding: 10px 14px; text-align: left; font-weight: 700; color: var(--text-muted); text-transform: uppercase; font-size: .75rem; letter-spacing: .05em; }
.admin-table td { border-bottom: 1px solid var(--border); padding: 10px 14px; vertical-align: middle; }
.admin-table tr:hover td { background: var(--bg-alt); }
.method-badge, .status-badge { font-size: .75rem; font-weight: 700; padding: 3px 8px; border-radius: 100px; }
.method-stripe { background: var(--brand-light); color: var(--brand); }
.method-paypal { background: var(--accent-light); color: #92400e; }
.status-completed { background: var(--green-light); color: #065f46; }
.status-pending   { background: var(--accent-light); color: #92400e; }
.table-link { color: var(--brand); font-weight: 600; }
.empty-msg { color: var(--text-muted); font-size: .9rem; padding: 20px 0; }

/* AUTH */
.auth-box { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.auth-box h1 { font-size: 1.5rem; margin-bottom: 24px; text-align: center; }
.auth-box label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: var(--text-2); }
.auth-box input { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border-2); border-radius: var(--radius); margin-bottom: 18px; }
.auth-box input:focus { outline: none; border-color: var(--brand); }
.error-msg { background: #fee2e2; color: var(--red); padding: 10px 14px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: .9rem; }

/* ─── POPUP ──────────────────────────────────────────────────────────────────── */
.popup-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.55); display: flex; align-items: center; justify-content: center;
  padding: 20px; transition: opacity .2s;
}
.popup-overlay.hidden { display: none; }
.popup-box {
  background: var(--bg); border-radius: var(--radius-xl); padding: 40px 36px;
  max-width: 460px; width: 100%; position: relative; box-shadow: var(--shadow-lg);
  text-align: center;
}
.popup-close {
  position: absolute; top: 16px; right: 18px; background: none; border: none;
  font-size: 1.1rem; cursor: pointer; color: var(--text-muted);
}
.popup-close:hover { color: var(--text); }
.popup-icon { font-size: 2.8rem; margin-bottom: 14px; }
.popup-title { font-size: 1.4rem; margin-bottom: 10px; }
.popup-sub { color: var(--text-muted); font-size: .92rem; margin-bottom: 20px; }
.popup-box input {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border-2);
  border-radius: var(--radius); margin-bottom: 12px; font-size: .95rem;
}
.popup-box input:focus { outline: none; border-color: var(--brand); }
.popup-fine { font-size: .78rem; color: var(--text-light); margin-top: 10px; }

/* ─── TOAST ──────────────────────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 2000;
  background: var(--text); color: #fff; padding: 14px 20px;
  border-radius: var(--radius-md); font-size: .9rem; font-weight: 500;
  box-shadow: var(--shadow-lg); max-width: 340px; line-height: 1.4;
  transition: opacity .3s; pointer-events: none;
}
.toast.toast-error   { background: var(--red); }
.toast.toast-success { background: var(--green); }
.toast.toast-info    { background: var(--brand); }
.toast.hidden { opacity: 0; display: none; }

/* ─── SECTION CTA ────────────────────────────────────────────────────────────── */
.section-cta h2 { font-size: 1.75rem; margin-bottom: 12px; }
.section-cta p { color: var(--text-2); font-size: 1rem; margin-bottom: 24px; }
.cta-fine { font-size: .82rem; color: var(--text-muted); margin-top: 12px; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────────── */
.footer { background: var(--text); color: rgba(255,255,255,.8); padding: 56px 0 0; }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px 48px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-logo { font-size: 1.1rem; font-weight: 800; color: #fff; }
.footer-brand-col p { font-size: .85rem; color: rgba(255,255,255,.55); margin-top: 4px; max-width: 260px; }
.footer-col strong { font-size: .85rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.footer-col a { font-size: .88rem; color: rgba(255,255,255,.7); }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 24px; text-align: center; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); max-width: 1180px; margin: 0 auto; }

/* ─── MISC ───────────────────────────────────────────────────────────────────── */
.empty-state { grid-column: 1/-1; text-align: center; padding: 40px; color: var(--text-muted); }
.hidden { display: none !important; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .sales-hero-inner { grid-template-columns: 1fr; }
  .buy-box { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .hero { padding: 56px 0 48px; }
  .hero-headline { font-size: 2rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .section { padding: 44px 0; }
  .product-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .email-box { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .sticky-bar-inner { flex-direction: column; gap: 8px; text-align: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .admin-table { font-size: .78rem; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .inside-grid { grid-template-columns: 1fr 1fr; }
}
