/* =========================================================
   DESIGN SYSTEM — Industrial Precision · Dark · Gold/Teal
   ========================================================= */
:root {
  --bg:        #080b0f;
  --bg2:       #0d1117;
  --surface:   #111720;
  --surface2:  #161d28;
  --border:    #1c2535;
  --border2:   #243040;
  --gold:      #F0A500;
  --gold-dim:  #B07800;
  --gold-glow: rgba(240,165,0,0.15);
  --teal:      #00C8A0;
  --teal-dim:  #008F72;
  --teal-glow: rgba(0,200,160,0.12);
  --red:       #E8503A;
  --text:      #C8D8E8;
  --text-dim:  #5a6a7d;
  --text-bright: #EAF4FF;
  --mono: 'JetBrains Mono', monospace;
  --body: 'Barlow', sans-serif;
  --display: 'Barlow Condensed', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); }

/* ── SELECTION ── */
::selection { background: rgba(240,165,0,0.2); color: var(--text-bright); }

/* =========================================================
   NOISE OVERLAY
   ========================================================= */
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.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4 { font-family: var(--display); letter-spacing: 0.03em; line-height: 1.05; color: var(--text-bright); }
p { font-weight: 300; }
strong { font-weight: 600; color: var(--text-bright); }
a { color: inherit; text-decoration: none; }

.mono { font-family: var(--mono); }
.gold { color: var(--gold); }
.teal { color: var(--teal); }

.section-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* =========================================================
   LAYOUT
   ========================================================= */
.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1340px; margin: 0 auto; padding: 0 32px; }
section { padding: 100px 0; }

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes counterUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes borderPulse {
  0%, 100% { border-color: rgba(240,165,0,0.3); }
  50%       { border-color: rgba(240,165,0,0.8); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================================
   NAV
   ========================================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(8,11,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}
nav.scrolled { border-bottom-color: var(--border2); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* LOGO SVG inline */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}
.nav-logo svg { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--text-bright); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold);
  color: #000 !important;
  font-family: var(--mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #ffc235 !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

/* Grid background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(28,37,53,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,37,53,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

/* Radial glow */
.hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(240,165,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: 0; right: 10%;
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,200,160,0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Geometric decoration */
.hero-hex {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  opacity: 0.04;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(240,165,0,0.3);
  padding: 6px 14px;
  margin-bottom: 28px;
  background: rgba(240,165,0,0.05);
  animation: fadeIn 0.8s ease both;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(52px, 7.5vw, 110px);
  font-weight: 800;
  color: var(--text-bright);
  line-height: 0.95;
  margin-bottom: 8px;
  animation: fadeUp 0.9s 0.1s ease both;
}
.hero h1 .outline {
  -webkit-text-stroke: 2px var(--gold);
  color: transparent;
}
.hero h1 .line-teal { color: var(--teal); }

.hero-sub {
  font-size: 19px;
  font-weight: 300;
  color: var(--text);
  max-width: 560px;
  margin: 24px 0 40px;
  animation: fadeUp 0.9s 0.2s ease both;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #000;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 32px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover { background: #ffc235; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(240,165,0,0.3); }
.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-bright);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1px solid var(--border2);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* =========================================================
   QUICK BUY BUTTONS (HERO)
   ========================================================= */
.hero-quick-buy {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.quick-buy-title {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.quick-buy-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-buy-grid button {
  background: var(--surface);
  border: 1px solid var(--border2);
  color: var(--text);
  padding: 12px 20px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.quick-buy-grid button:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(240,165,0,0.05);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .quick-buy-grid {
    flex-direction: column;
  }
  .quick-buy-grid button {
    width: 100%;
    text-align: center;
  }
}

/* Trust bar */
.hero-trust {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.9s 0.4s ease both;
}
.hero-trust p {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-logo {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  opacity: 0.5;
  transition: opacity 0.3s;
  text-transform: uppercase;
}
.trust-logo:hover { opacity: 0.9; }

/* Stats strip */
.hero-stats {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--border);
  animation: fadeIn 1s 0.5s ease both;
}
.hero-stat {
  padding: 28px 40px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.hero-stat:last-child { border-bottom: none; }
.stat-num {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1;
  display: block;
}
.stat-lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: block;
  margin-top: 6px;
}

/* =========================================================
   PROBLEM SECTION
   ========================================================= */
.problem {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.problem-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
  transition: background 0.2s;
}
.problem-item:first-child { border-top: 1px solid var(--border); }
.problem-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-top: 2px;
  transition: border-color 0.3s, background 0.3s;
}
.problem-item:hover .problem-icon {
  border-color: var(--red);
  background: rgba(232,80,58,0.08);
}
.problem-text h4 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.problem-text p { font-size: 14px; color: var(--text-dim); line-height: 1.5; }

.problem-right h2 {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 20px;
}
.problem-right p { font-size: 17px; color: var(--text); margin-bottom: 16px; }

.stat-callout {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-left: 3px solid var(--red);
  padding: 20px 24px;
  margin-top: 28px;
}
.stat-callout .big-num {
  font-family: var(--display);
  font-size: 52px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.stat-callout p { font-size: 14px; margin-top: 6px; }

/* =========================================================
   PRODUCTS
   ========================================================= */
.products { background: var(--bg); }

.products-header {
  text-align: center;
  margin-bottom: 64px;
}
.products-header h2 { font-size: clamp(36px, 4.5vw, 64px); }
.products-header p {
  font-size: 18px;
  color: var(--text);
  max-width: 540px;
  margin: 16px auto 0;
  font-weight: 300;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.product-card {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--border2);
  transition: background 0.3s;
}
.product-card:hover { background: var(--surface2); }
.product-card:hover::before { background: var(--gold); }

.product-card.featured {
  background: var(--surface2);
  grid-column: span 1;
  position: relative;
}
.product-card.featured::before { background: var(--gold); }

.featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  background: rgba(240,165,0,0.12);
  color: var(--gold);
  border: 1px solid rgba(240,165,0,0.3);
  text-transform: uppercase;
}

.product-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: border-color 0.3s, transform 0.3s;
}
.product-card:hover .product-icon {
  border-color: var(--gold);
  transform: scale(1.05);
}

.product-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.product-card > p {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.6;
}

.product-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-features li {
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: 12px;
  min-width: 14px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}
.product-price .amount {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.product-price .old {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text-dim);
  text-decoration: line-through;
}
.product-price .period {
  font-size: 13px;
  color: var(--text-dim);
}

.btn-product {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text-bright);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-product:hover, .product-card.featured .btn-product {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

/* Bundle card (full width) */
.product-card.bundle {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.product-card.bundle::before { background: linear-gradient(90deg, var(--gold), var(--teal)); }
.bundle-left h3 { font-size: 28px; }
.bundle-right { text-align: right; }
.bundle-right .btn-product { width: auto; display: inline-flex; padding: 14px 36px; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.how-sticky {
  position: sticky;
  top: 100px;
}
.how-sticky h2 { font-size: clamp(36px, 4vw, 56px); margin-bottom: 20px; }
.how-sticky p { font-size: 16px; color: var(--text); }

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.step:first-child { padding-top: 0; }
.step-num {
  font-family: var(--display);
  font-size: 64px;
  font-weight: 800;
  color: var(--border2);
  line-height: 1;
  min-width: 64px;
  transition: color 0.3s;
}
.step:hover .step-num { color: rgba(240,165,0,0.3); }
.step-body h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.step-body p { font-size: 15px; color: var(--text-dim); line-height: 1.6; }
.step-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  padding: 3px 10px;
  margin-top: 12px;
  background: rgba(0,200,160,0.08);
  color: var(--teal);
  border: 1px solid rgba(0,200,160,0.2);
}

/* =========================================================
   LEAD MAGNET / CTA SECTION
   ========================================================= */
.leadmagnet {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.leadmagnet::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(240,165,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.lm-inner {
  background: var(--surface);
  border: 1px solid var(--border2);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.lm-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.lm-left h2 { font-size: clamp(28px, 3.5vw, 46px); margin-bottom: 16px; }
.lm-left p { font-size: 16px; color: var(--text); margin-bottom: 24px; }
.lm-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.lm-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.lm-features li span:first-child {
  width: 22px; height: 22px;
  background: rgba(0,200,160,0.1);
  border: 1px solid rgba(0,200,160,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--teal);
  flex-shrink: 0;
}

.lm-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-group input {
  background: var(--bg2);
  border: 1px solid var(--border2);
  color: var(--text-bright);
  padding: 14px 18px;
  font-family: var(--body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus { border-color: var(--gold); }
.form-group input::placeholder { color: var(--text-dim); }
.btn-form {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 16px 28px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-form:hover { background: #ffc235; transform: translateY(-1px); }
.form-note {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-align: center;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: var(--bg2); border-top: 1px solid var(--border); }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-header h2 { font-size: clamp(32px, 4vw, 52px); }

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

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--display);
  font-size: 80px;
  color: var(--border2);
  line-height: 1;
  font-weight: 800;
}

.stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.author-name {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-bright);
  letter-spacing: 0.04em;
}
.author-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-top: 2px;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--bg); }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header h2 { font-size: clamp(32px, 4vw, 52px); }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question h4 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.faq-question:hover h4 { color: var(--gold); }
.faq-toggle {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--text-dim);
  transition: all 0.3s;
  font-family: var(--mono);
}
.faq-item.open .faq-toggle {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(240,165,0,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta h2 { font-size: clamp(40px, 5vw, 76px); margin-bottom: 16px; position: relative; }
.final-cta p { font-size: 18px; color: var(--text); max-width: 500px; margin: 0 auto 40px; font-weight: 300; position: relative; }
.final-cta .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.7;
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--text-bright); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
.footer-bottom .certifications {
  display: flex;
  gap: 12px;
}
.cert-badge {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border: 1px solid var(--border2);
  color: var(--text-dim);
  text-transform: uppercase;
}

/* =========================================================
   MOBILE NAV + RESPONSIVE
   ========================================================= */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 68px;
  background: rgba(8,11,15,0.98);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  backdrop-filter: blur(20px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-bright);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

@media (max-width: 1024px) {
  .hero-stats { display: none; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-card.bundle { grid-template-columns: 1fr; gap: 24px; }
  .bundle-right { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: clamp(44px, 12vw, 72px); }
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card.bundle { grid-column: 1; }
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-sticky { position: static; }
  .lm-inner { grid-template-columns: 1fr; gap: 40px; padding: 36px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =========================================================
   ANNOUNCEMENT BAR
   ========================================================= */
.announce-bar {
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
  background-size: 200% 100%;
  animation: shimmer 3s infinite linear;
  padding: 10px 0;
  text-align: center;
  position: relative;
  z-index: 1000;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.announce-bar p {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #000;
  text-transform: uppercase;
}
.announce-bar span { text-decoration: underline; cursor: pointer; }
.announce-close {
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: rgba(0,0,0,0.6);
  line-height: 1;
  padding: 4px;
}

/* =========================================================
   METRICS STRIP
   ========================================================= */
.metrics-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
}
.metrics-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.metric-item {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.metric-item:last-child { border-right: none; }
.metric-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.metric-item:hover { background: var(--surface2); }
.metric-item:hover::before { transform: scaleX(1); }
.metric-num {
  font-family: var(--display);
  font-size: 52px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
  display: block;
}
.metric-num.teal-num { color: var(--teal); }
.metric-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: block;
  margin-top: 8px;
}
.metric-sub {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .metrics-inner { grid-template-columns: 1fr 1fr; }
  .metric-item:nth-child(2) { border-right: none; }
  .metric-item:nth-child(3) { border-right: 1px solid var(--border); }
}

/* =========================================================
   COMPARISON TABLE
   ========================================================= */
.comparison { background: var(--bg2); border-top: 1px solid var(--border); }
.comparison-header { text-align: center; margin-bottom: 56px; }
.comparison-header h2 { font-size: clamp(32px, 4vw, 52px); }
.comparison-header p { font-size: 17px; color: var(--text); max-width: 500px; margin: 12px auto 0; font-weight: 300; }

.comp-table-wrap { overflow-x: auto; }
.comp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
.comp-table th, .comp-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.comp-table th {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--surface);
  border-bottom: 2px solid var(--border2);
}
.comp-table th.highlight-col {
  background: rgba(240,165,0,0.08);
  border-left: 1px solid rgba(240,165,0,0.2);
  border-right: 1px solid rgba(240,165,0,0.2);
  color: var(--gold);
}
.comp-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text);
  font-size: 14px;
}
.comp-table td.highlight-col {
  background: rgba(240,165,0,0.04);
  border-left: 1px solid rgba(240,165,0,0.15);
  border-right: 1px solid rgba(240,165,0,0.15);
}
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:hover td { background: var(--surface); }
.comp-table tr:hover td.highlight-col { background: rgba(240,165,0,0.08); }
.check-yes { color: var(--teal); font-size: 18px; font-weight: 700; }
.check-no { color: var(--text-dim); font-size: 18px; }
.check-partial { color: var(--gold); font-size: 14px; font-family: var(--mono); }

/* =========================================================
   BLOG PREVIEW
   ========================================================= */
.blog { background: var(--bg); }
.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.blog-header h2 { font-size: clamp(28px, 3.5vw, 48px); }
.blog-header a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.blog-header a:hover { gap: 14px; }

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
}
.blog-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.blog-img {
  height: 180px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card.featured .blog-img { height: 240px; }
.blog-img-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
}
.blog-img-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240,165,0,0.08), rgba(0,200,160,0.05));
}
.blog-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  padding: 3px 10px;
  background: rgba(240,165,0,0.9);
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
}
.blog-body { padding: 24px; }
.blog-date {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.blog-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
.blog-card.featured .blog-body h3 { font-size: 24px; }
.blog-body p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 16px;
}

/* =========================================================
   GUARANTEE SECTION
   ========================================================= */
.guarantee {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 80px 0;
}
.guarantee-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 600px) { .guarantee-inner { grid-template-columns: 1fr; text-align: center; } }
.guarantee-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.guarantee-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(240,165,0,0.05);
  box-shadow: 0 0 40px rgba(240,165,0,0.1);
  animation: borderPulse 3s infinite;
}
.guarantee-days {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.guarantee-word {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.guarantee-text h3 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 12px; }
.guarantee-text p { font-size: 16px; color: var(--text); line-height: 1.7; }

/* =========================================================
   EXIT POP-UP
   ========================================================= */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  backdrop-filter: blur(8px);
}
.popup-overlay.show { opacity: 1; pointer-events: all; }
.popup-box {
  background: var(--surface);
  border: 1px solid var(--border2);
  max-width: 560px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.popup-overlay.show .popup-box { transform: translateY(0) scale(1); }
.popup-top {
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}
.popup-content { padding: 40px 40px 32px; }
.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: 1px solid var(--border2);
  color: var(--text-dim);
  width: 32px; height: 32px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.popup-close:hover { border-color: var(--gold); color: var(--gold); }
.popup-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.popup-box h3 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 12px;
}
.popup-box p { font-size: 15px; color: var(--text); margin-bottom: 24px; line-height: 1.6; }
.popup-form { display: flex; gap: 12px; flex-wrap: wrap; }
.popup-form input {
  flex: 1;
  min-width: 200px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  color: var(--text-bright);
  padding: 14px 16px;
  font-family: var(--body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.popup-form input:focus { border-color: var(--gold); }
.popup-form button {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 14px 24px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.popup-form button:hover { background: #ffc235; }
.popup-dismiss {
  display: block;
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-dim);
  margin-top: 16px;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.popup-dismiss:hover { color: var(--text); }

/* =========================================================
   CHATBOT WIDGET
   ========================================================= */
.chat-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 24px rgba(240,165,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  animation: chatPulse 2.5s infinite;
}
@keyframes chatPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(240,165,0,0.4); }
  50% { box-shadow: 0 4px 40px rgba(240,165,0,0.7); }
}
.chat-btn:hover { transform: scale(1.1); }
.chat-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: var(--teal);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-window {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 340px;
  background: var(--surface);
  border: 1px solid var(--border2);
  z-index: 8000;
  display: none;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.chat-window.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.chat-header {
  background: var(--surface2);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.chat-agent {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-avatar {
  width: 36px; height: 36px;
  background: rgba(240,165,0,0.1);
  border: 1px solid rgba(240,165,0,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.chat-agent-name {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-bright);
  letter-spacing: 0.03em;
}
.chat-status {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 5px;
}
.chat-status::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.chat-close-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s;
  padding: 4px;
}
.chat-close-btn:hover { color: var(--text-bright); }
.chat-messages {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.chat-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  animation: fadeUp 0.3s ease both;
}
.chat-msg.user { flex-direction: row-reverse; }
.chat-msg-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.chat-bubble {
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
  max-width: 220px;
}
.chat-msg.user .chat-bubble {
  background: rgba(240,165,0,0.1);
  border-color: rgba(240,165,0,0.25);
  color: var(--text-bright);
}
.chat-options {
  padding: 0 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.chat-option {
  background: none;
  border: 1px solid var(--border2);
  color: var(--text);
  padding: 10px 14px;
  text-align: left;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--body);
}
.chat-option:hover { border-color: var(--gold); color: var(--gold); background: rgba(240,165,0,0.05); }
.chat-input-area {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
}
.chat-input {
  flex: 1;
  background: var(--bg2);
  border: 1px solid var(--border2);
  color: var(--text-bright);
  padding: 10px 12px;
  font-size: 13px;
  outline: none;
  font-family: var(--body);
  transition: border-color 0.2s;
}
.chat-input:focus { border-color: var(--gold); }
.chat-send {
  background: var(--gold);
  border: none;
  color: #000;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.chat-send:hover { background: #ffc235; }

/* =========================================================
   PRODUCT MODAL
   ========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(10px);
}
.modal-overlay.show { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--surface);
  border: 1px solid var(--border2);
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.show .modal-box { transform: scale(1); }
.modal-top-bar { height: 3px; background: linear-gradient(90deg, var(--gold), var(--teal)); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: 1px solid var(--border2);
  color: var(--text-dim);
  width: 36px; height: 36px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 1;
}
.modal-close:hover { border-color: var(--gold); color: var(--gold); }
.modal-body { padding: 40px; }
.modal-header { margin-bottom: 28px; }
.modal-title { font-size: clamp(24px, 4vw, 40px); margin-bottom: 8px; }
.modal-desc { font-size: 16px; color: var(--text); line-height: 1.6; }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
@media (max-width: 600px) { .modal-grid { grid-template-columns: 1fr; } .modal-body { padding: 24px; } }
.modal-features-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.modal-feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.modal-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.modal-feature-list li::before {
  content: '→';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.modal-purchase { background: var(--surface2); border: 1px solid var(--border2); padding: 24px; }
.modal-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 20px; }
.modal-price { font-family: var(--display); font-size: 48px; font-weight: 800; color: var(--gold); line-height: 1; }
.modal-price-old { font-family: var(--mono); font-size: 16px; color: var(--text-dim); text-decoration: line-through; }
.modal-buy-btn {
  width: 100%;
  background: var(--gold);
  color: #000;
  border: none;
  padding: 16px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 12px;
}
.modal-buy-btn:hover { background: #ffc235; transform: translateY(-1px); }
.modal-guarantee {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--teal);
  text-align: center;
  letter-spacing: 0.1em;
}
.modal-specs { margin-top: 24px; border-top: 1px solid var(--border); padding-top: 24px; }
.modal-specs-title { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--text-dim); text-transform: uppercase; margin-bottom: 14px; }
.spec-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.spec-row:last-child { border-bottom: none; }
.spec-key { color: var(--text-dim); }
.spec-val { color: var(--text-bright); font-family: var(--mono); font-size: 12px; }

/* =========================================================
   TOAST NOTIFICATION
   ========================================================= */
.toast {
  position: fixed;
  bottom: 100px;
  right: 28px;
  background: var(--surface2);
  border: 1px solid var(--teal);
  padding: 18px 24px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--teal);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
