:root {
  --bg: #000000;
  --bg-card: #141414;
  --bg-card-2: #1c1c1c;
  --border: #2a2a2e;
  --lime: #c6f432;
  --orange: #ff4d3d;
  --text: #fafaf8;
  --text-dim: #9a9a9f;
  --font-display: 'Unbounded', 'Manrope', -apple-system, sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.mono-label {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 32px;
}

a { color: inherit; text-decoration: none; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,11,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo { font-weight: 800; font-size: 18px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  color: #0a0a0b;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); background: #e4ff6d; }
.btn-small { padding: 10px 20px; font-size: 14px; }

/* HERO */
.hero {
  padding: 72px 0 56px;
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(212,255,61,0.10), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 20%, rgba(255,77,51,0.10), transparent 60%);
}
.hero-inner { max-width: 760px; }

.badge {
  display: inline-block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
}
.hero h1 br { display: block; }

.hero-sub {
  margin-top: 24px;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-dim);
  max-width: 560px;
}

/* CTA BLOCK */
.cta-block {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  background: var(--orange);
  color: #0a0a0b;
  padding: 16px 26px;
  border-radius: 999px;
}
.cta-icons { display: flex; gap: 12px; }
.icon-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform .15s ease, border-color .15s ease;
}
.icon-btn img { width: 34px; height: 34px; object-fit: contain; }
.icon-btn:hover { transform: translateY(-3px) scale(1.05); border-color: var(--lime); }
.icon-btn:nth-child(2):hover { border-color: var(--orange); }

.trust-row {
  margin-top: 48px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 14px;
}
.trust-item strong { color: var(--text); font-size: 16px; }

/* SECTIONS */
.section { padding: 64px 0; border-top: 1px solid var(--border); }
.section-sub { color: var(--text-dim); margin-top: -20px; margin-bottom: 32px; }

/* PAINS */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding-left: 44px;
}
.pain-card::before {
  content: "✕";
  position: absolute;
  left: 20px;
  top: 24px;
  color: var(--orange);
  font-weight: 800;
}

/* ABOUT / STATS */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
}
.stat-card.highlight { background: var(--lime); }
.stat-card.highlight .stat-num, .stat-card.highlight .stat-label { color: #0a0a0b; }
.stat-num { font-size: 36px; font-weight: 800; color: var(--lime); }
.stat-label {
  margin-top: 6px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--text-dim);
  font-weight: 600;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: 640px;
}
.feature-list li {
  padding-left: 28px;
  position: relative;
  font-weight: 600;
  color: var(--text-dim);
}
.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 800;
}

/* PROCESS */
.process-intro {
  max-width: 680px;
  color: var(--text-dim);
  font-size: 17px;
  margin-bottom: 32px;
}
.method-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.method-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  font-weight: 700;
  text-align: center;
}
.method-card span {
  display: block;
  font-weight: 500;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 6px;
}

.limits-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 28px;
}
.limits-box h3 { font-size: 18px; margin-bottom: 10px; }
.limits-box p { color: var(--text-dim); margin-bottom: 14px; }
.limits-box ul { padding-left: 20px; display: grid; gap: 8px; color: var(--text-dim); }

/* FAQ / OBJECTIONS */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px 24px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  margin-left: auto;
  font-size: 22px;
  color: var(--lime);
  font-weight: 800;
}
.faq-item[open] summary::after { content: "–"; color: var(--orange); }
.faq-num {
  font-family: var(--font-mono);
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.faq-answer {
  color: var(--text-dim);
  padding-bottom: 20px;
  font-size: 15px;
  max-width: 700px;
}

/* TESTIMONIALS */
.testimonial-photo-grid {
  columns: 4 220px;
  column-gap: 16px;
}
.tphoto {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.tphoto img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .25s ease;
}
.tphoto:hover img { transform: scale(1.03); }

/* GUARANTEES */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.guarantee-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}
.guarantee-icon { font-size: 28px; margin-bottom: 12px; }
.guarantee-title { font-weight: 800; margin-bottom: 6px; }
.guarantee-text { color: var(--text-dim); font-size: 14px; }

/* URGENCY */
.urgency {
  background: var(--orange);
  border-top: none;
}
.urgency-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.urgency-badge {
  display: inline-block;
  background: #0a0a0b;
  color: var(--lime);
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.urgency h2 { color: #0a0a0b; margin-bottom: 16px; }
.urgency p { color: #1a1200; font-weight: 600; margin-bottom: 24px; }
.bonus-tag {
  display: inline-block;
  background: #0a0a0b;
  color: #fff;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
}

/* FINAL CTA */
.cta-final { border-top: 1px solid var(--border); }
.cta-final-inner { text-align: center; }
.cta-final-inner h2 { margin-bottom: 8px; }
.cta-final-inner p { color: var(--text-dim); margin-bottom: 32px; font-size: 17px; }
.cta-final-inner .cta-block { justify-content: center; }

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text-dim);
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .pain-grid, .stat-grid, .method-row, .guarantee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-photo-grid { columns: 2 200px; }
  .section { padding: 48px 0; }
}

@media (max-width: 640px) {
  .hero { padding: 48px 0 40px; }
  .hero h1 br { display: inline; }
  .hero h1 { font-size: clamp(30px, 8vw, 40px); }
  .cta-block { gap: 14px; }
  .cta-label { font-size: 15px; padding: 13px 20px; }
  .icon-btn { width: 50px; height: 50px; }
  .icon-btn img { width: 28px; height: 28px; }
  .trust-row { gap: 16px 24px; font-size: 13px; }
  h2 { font-size: clamp(24px, 7vw, 32px); margin-bottom: 24px; }
  .pain-grid, .method-row, .guarantee-grid {
    grid-template-columns: 1fr;
  }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-num { font-size: 30px; }
  .testimonial-photo-grid { columns: 1; }
  .urgency h2 { font-size: clamp(22px, 7vw, 30px); }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .badge { font-size: 12px; padding: 7px 14px; }
  .cta-block { flex-direction: column; align-items: flex-start; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .pain-card, .method-card, .guarantee-card, .limits-box, .faq-item { padding: 18px; }
}
