﻿:root {
  --bg-dark: #0a0e14;
  --bg-card: #121824;
  --bg-card-hover: #182232;
  --text-main: #f0f4f8;
  --text-muted: #8899a8;
  --gold: #d4af37;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --emerald: #00e676;
  --emerald-glow: rgba(0, 230, 118, 0.2);
  --border: #1f2937;
  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }

/* Top Header */
.noir-header {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: sticky;
  top: 0;
  background: rgba(10, 14, 20, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
}
.header-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: nowrap; gap: 14px; }
.noir-logo { font-size: 1.4rem; font-weight: 900; letter-spacing: 2px; color: #fff; }
.noir-logo span { color: var(--gold); }
.noir-tag { font-size: 0.75rem; color: var(--emerald); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.cta-gold {
  background: linear-gradient(135deg, #d4af37 0%, #aa820a 100%);
  color: #000;
  font-weight: 800;
  padding: 10px 24px;
  border-radius: 99px;
  box-shadow: 0 4px 15px var(--gold-glow);
  transition: 0.2s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4); }

/* Hero */
.hero { padding: 70px 0 60px; text-align: center; }
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.hero-title { font-size: 3rem; font-weight: 900; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.5px; }
.hero-title span { color: var(--gold); }
.hero-lead { font-size: 1.2rem; color: var(--text-muted); max-width: 720px; margin: 0 auto 36px; }

.hero-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
  margin: 40px 0;
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.bottle-showcase img { width: 100%; max-height: 480px; object-fit: contain; border-radius: var(--radius); filter: drop-shadow(0 15px 30px rgba(0,0,0,0.8)); }

/* Calculator Section */
.calc-section {
  padding: 80px 0;
  background: #0d121b;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.calc-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.calc-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; }
.slider-group { margin-bottom: 28px; }
.slider-label { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 10px; font-size: 1rem; }
.slider-val { color: var(--gold); font-size: 1.2rem; }
input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #1f2937;
  outline: none;
  accent-color: var(--gold);
}
.calc-result-card {
  background: #0a0e14;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
}
.lost-hours-num { font-size: 3.2rem; font-weight: 900; color: #ff4757; line-height: 1; margin: 12px 0 6px; }
.lost-hours-label { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Persona section */
.persona-section { padding: 80px 0; }
.persona-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: center; }
.persona-img { width: 100%; border-radius: var(--radius); border: 1px solid var(--border); }

/* Order Cards (NO PRICES!) */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.pkg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 24px 32px;
  text-align: center;
  position: relative;
  transition: 0.2s;
  cursor: pointer;
}
.pkg-card:hover, .pkg-card.active { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 8px 25px var(--gold-glow); }
.pkg-card.featured { border-color: var(--gold); background: #151d2a; }
.pkg-badge {
  position: absolute;
  margin-bottom: 12px; position: static; transform: none;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.pkg-title { font-size: 1.4rem; font-weight: 900; margin: 10px 0; }
.pkg-campaign { color: var(--emerald); font-size: 0.85rem; font-weight: 700; margin-bottom: 16px; display: block; }
.pkg-list { list-style: none; text-align: left; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.pkg-list li::before { content: "✓ "; color: var(--emerald); font-weight: bold; }

/* Checkout Form */
.checkout-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; margin-top: 40px; }
.form-input {
  width: 100%;
  padding: 14px 16px;
  background: #0a0e14;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}
.form-input:focus { outline: none; border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; z-index: 999; padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: var(--bg-card); border: 1px solid var(--gold); border-radius: var(--radius);
  max-width: 500px; width: 100%; padding: 36px; text-align: center;
}

@media(max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .hero-visual-grid, .calc-grid, .persona-grid, .packages-grid, .form-row { grid-template-columns: 1fr; }
}

/* Rich Components for ProstAktiv Noir */
.section-tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 4px 14px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 750px;
  margin: 0 auto;
}

/* Ingredients Grid */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.ingredient-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: 0.2s;
  text-align: left;
}
.ingredient-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--gold-glow);
}
.ingredient-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: inline-block;
}
.ingredient-card h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.ingredient-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Comparison Table */
.comparison-wrap {
  overflow-x: auto;
  margin-top: 40px;
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.comp-table th, .comp-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.comp-table th {
  background: #0d121b;
  color: #fff;
  font-weight: 800;
}
.comp-table th.highlight, .comp-table td.highlight {
  background: rgba(212, 175, 55, 0.08);
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
.comp-table td.highlight {
  font-weight: 700;
  color: #fff;
}

/* Timeline 30-60-90 Days */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  text-align: left;
}
.timeline-step {
  background: var(--gold);
  color: #000;
  font-weight: 900;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 14px;
}
.timeline-card h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.timeline-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Testimonials / Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  text-align: left;
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.reviewer-name {
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
}
.review-stars {
  color: #f59e0b;
  font-size: 1.1rem;
}
.review-meta {
  font-size: 0.82rem;
  color: var(--emerald);
  margin-bottom: 10px;
  font-weight: 600;
}
.review-text {
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}
.faq-question:hover {
  color: var(--gold);
}
.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--gold);
}
.faq-toggle {
  font-size: 1.4rem;
  transition: transform 0.2s;
  color: var(--text-muted);
}

@media(max-width: 850px) {
  .ingredients-grid, .timeline-grid, .reviews-grid { grid-template-columns: 1fr; }
}

/* Noir Header Nav */
.nav-links-noir { display: flex; align-items: center; gap: 14px; }
.nav-links-noir a { white-space: nowrap; font-size: 0.95rem; font-weight: 600; color: var(--text-muted); transition: color 0.2s; }
.nav-links-noir a:hover, .nav-links-noir a.active { color: var(--gold); }
