/* ═══════════════════════════════════════════════════════════
   DIGITAL CASH CODE - GLOBAL STYLES
   Dark Psychology Sales Pages - Maximum Conversion
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

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

:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #0f1525;
  --bg-card: #111827;
  --bg-card-hover: #1a2340;
  --text-primary: #f0f0f0;
  --text-secondary: #a0aec0;
  --text-muted: #6b7280;
  --accent: #00d4ff;
  --accent-glow: rgba(0, 212, 255, 0.3);
  --red-urgent: #ff3b3b;
  --orange-warn: #ff9800;
  --green-proof: #00e676;
  --gold: #ffd700;
  --border: #1e293b;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ═══ URGENCY BAR ═══ */
.urgency-bar {
  background: linear-gradient(90deg, #ff0000, #ff4400, #ff0000);
  color: #fff;
  text-align: center;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: pulse-bg 2s infinite;
  position: sticky;
  top: 0;
  z-index: 1000;
}
@keyframes pulse-bg {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

/* ═══ HERO SECTION ═══ */
.hero {
  position: relative;
  padding: 80px 20px 60px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, var(--accent-glow) 0%, transparent 50%);
  opacity: 0.3;
}
.hero-badge {
  display: inline-block;
  background: rgba(255, 59, 59, 0.15);
  border: 1px solid rgba(255, 59, 59, 0.4);
  color: var(--red-urgent);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  animation: glow-pulse 2s infinite;
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 59, 59, 0.2); }
  50% { box-shadow: 0 0 25px rgba(255, 59, 59, 0.5); }
}
.hero h1 {
  position: relative;
  z-index: 2;
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  max-width: 800px;
  margin: 0 auto 20px;
}
.hero h1 .accent { color: var(--accent); }
.hero .subtitle {
  position: relative;
  z-index: 2;
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.5;
}
.hero-cover {
  position: relative;
  z-index: 2;
  max-width: 350px;
  margin: 0 auto 30px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--accent-glow);
}
.hero-cover img {
  width: 100%;
  border-radius: 12px;
}

/* ═══ CTA BUTTON ═══ */
.cta-btn {
  display: inline-block;
  padding: 18px 50px;
  font-size: 18px;
  font-weight: 800;
  color: #000;
  background: linear-gradient(135deg, var(--accent), #00ff88);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
  box-shadow: 0 8px 30px var(--accent-glow);
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px var(--accent-glow);
  text-decoration: none;
}
.cta-btn.red {
  background: linear-gradient(135deg, #ff3b3b, #ff6600);
  box-shadow: 0 8px 30px rgba(255, 59, 59, 0.4);
  color: #fff;
}
.cta-sub {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}

/* ═══ SECTIONS ═══ */
section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}
.section-dark {
  background: var(--bg-secondary);
  max-width: 100%;
  padding: 60px 20px;
}
.section-dark .inner { max-width: 900px; margin: 0 auto; }

h2 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.2;
}
h2 .accent { color: var(--accent); }
h2 .red { color: var(--red-urgent); }
.section-sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══ PAIN POINTS ═══ */
.pain-list {
  list-style: none;
  max-width: 650px;
  margin: 0 auto;
}
.pain-list li {
  padding: 14px 0;
  font-size: 17px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.pain-list li .icon {
  color: var(--red-urgent);
  font-size: 20px;
  flex-shrink: 0;
}

/* ═══ FEATURE CARDS ═══ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.feature-card .card-icon {
  font-size: 36px;
  margin-bottom: 15px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--accent);
}
.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══ CHAPTERS / WHAT YOU GET ═══ */
.chapters-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  counter-reset: chapter;
}
.chapters-list li {
  counter-increment: chapter;
  padding: 16px 20px;
  margin-bottom: 8px;
  background: var(--bg-card);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.2s;
}
.chapters-list li:hover {
  background: var(--bg-card-hover);
  transform: translateX(5px);
}
.chapters-list li::before {
  content: counter(chapter);
  background: var(--accent);
  color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

/* ═══ SOCIAL PROOF ═══ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 25px;
}
.testimonial .stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 12px;
}
.testimonial p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 12px;
}
.testimonial .author {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 14px;
}
.testimonial .verified {
  font-size: 12px;
  color: var(--green-proof);
}

/* ═══ PRICING ═══ */
.pricing-box {
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: 16px;
  max-width: 500px;
  margin: 30px auto;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px var(--accent-glow);
}
.pricing-box::before {
  content: 'BEST VALUE';
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--red-urgent);
  color: #fff;
  padding: 5px 40px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  transform: rotate(45deg);
}
.price-original {
  font-size: 24px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 5px;
}
.price-current {
  font-size: 56px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 5px;
}
.price-current .currency { font-size: 28px; vertical-align: top; }
.price-note {
  font-size: 14px;
  color: var(--orange-warn);
  font-weight: 700;
  margin-bottom: 25px;
}

/* ═══ COUNTDOWN ═══ */
.countdown-wrap {
  background: rgba(255, 59, 59, 0.1);
  border: 1px solid rgba(255, 59, 59, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin: 30px auto;
  max-width: 500px;
  text-align: center;
}
.countdown-wrap .label {
  color: var(--red-urgent);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.countdown .unit {
  background: var(--bg-primary);
  border-radius: 8px;
  padding: 10px 18px;
  min-width: 65px;
}
.countdown .num {
  font-size: 28px;
  font-weight: 900;
  color: var(--red-urgent);
  display: block;
}
.countdown .txt {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ═══ GUARANTEE ═══ */
.guarantee {
  text-align: center;
  padding: 40px 20px;
  max-width: 600px;
  margin: 0 auto;
}
.guarantee .shield { font-size: 50px; margin-bottom: 15px; }
.guarantee h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--green-proof);
  margin-bottom: 10px;
}
.guarantee p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* ═══ FAQ ═══ */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-q {
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after { content: '+'; font-size: 24px; color: var(--accent); }
.faq-a {
  color: var(--text-secondary);
  font-size: 15px;
  margin-top: 12px;
  line-height: 1.7;
  display: none;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q::after { content: '-'; }

/* ═══ SCARCITY BANNER ═══ */
.scarcity {
  background: linear-gradient(135deg, #1a0000, #2d0000);
  border: 1px solid rgba(255, 59, 59, 0.3);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  margin: 30px auto;
  max-width: 600px;
}
.scarcity .icon { font-size: 30px; margin-bottom: 10px; }
.scarcity p {
  color: var(--red-urgent);
  font-weight: 700;
  font-size: 16px;
}
.scarcity .small {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 8px;
  font-weight: 400;
}

/* ═══ FOOTER ═══ */
footer {
  background: #050810;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid var(--border);
}
footer p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 8px;
}
footer a { color: var(--text-muted); }
footer a:hover { color: var(--accent); }

/* ═══ HOMEPAGE GRID ═══ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}
.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  text-decoration: none;
}
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.product-card .card-body {
  padding: 20px;
}
.product-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.product-card .card-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.5;
}
.product-card .card-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--accent);
}
.product-card .card-price .old {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 8px;
  font-weight: 400;
}

/* ═══ BREADCRUMB ═══ */
.breadcrumb {
  max-width: 900px;
  margin: 0 auto;
  padding: 12px 20px;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/* ═══ RELATED PRODUCTS ═══ */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 25px auto 0;
  padding: 0 20px;
}
.related-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.related-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}
.related-card .related-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  opacity: 0.8;
}
.related-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}
.related-card .related-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-top: auto;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .hero { padding: 50px 15px 40px; }
  .cta-btn { padding: 15px 35px; font-size: 15px; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .countdown .unit { padding: 8px 12px; min-width: 55px; }
  .countdown .num { font-size: 22px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .related-grid { grid-template-columns: 1fr; }
}
