@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&display=swap");

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

:root {
  --primary: #7c2d12; --primary-lt: #ea580c; --primary-dk: #431407; --accent: #fb923c;
  --bg: #0a0500; --bg2: #1a0f08; --bg3: #2a1a10; --text: #fff7ed; --muted: #a88060;
  --border: #7c2d1224;
}

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg); color: var(--text);
  min-height: 100vh; overflow-x: hidden;
}

body::before {
  content: ""; position: fixed; top: -20%; left: -10%; width: 50%; height: 50%;
  background: radial-gradient(ellipse, #7c2d1218 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

body::after {
  content: ""; position: fixed; bottom: -25%; right: -15%; width: 55%; height: 55%;
  background: radial-gradient(ellipse, #fb923c0f 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

.urgency-bar {
  background: #7c2d12; text-align: left; padding: 10px 36px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #fff;
}

.urgency-bar .dot {
  display: inline-block; width: 5px; height: 5px;
  background: #fb923c; border-radius: 50%; margin: 0 10px; vertical-align: middle;
  animation: blink 1.2s ease infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.site-header {
  padding: 18px 36px; display: flex; justify-content: space-between; align-items: center;
  border-bottom: 3px solid #7c2d12; background: #0a0500; position: sticky; top: 0; z-index: 100;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, #7c2d12, #ea580c);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
}

.logo-text { font-size: 16px; font-weight: 700; color: var(--text); line-height: 1.2; }
.logo-text span { display: block; font-size: 9px; font-weight: 600; color: #ea580c; letter-spacing: 0.14em; text-transform: uppercase; }

.header-meta {
  font-size: 11px; font-weight: 600; color: var(--muted);
  letter-spacing: 0.06em; text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
  
}

.header-meta::before {
  content: ""; width: 6px; height: 6px;
  background: #ea580c; border-radius: 50%; animation: blink 1.8s ease infinite;
}

.main {
  position: relative; z-index: 1;
  max-width: 780px; margin: 0 auto; padding: 64px 36px 80px;
  text-align: left;
}

.badge {
  display: inline-block; background: transparent; color: #7c2d12;
  border-left: 3px solid #7c2d12; padding: 4px 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 26px; animation: fadeUp 0.5s ease both;
}

.badge::before {
  display: none;
}

.headline {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800;
  line-height: 1.08; letter-spacing: -0.03em;
  margin-bottom: 20px; animation: fadeUp 0.5s 0.08s ease both;
  text-align: left;
}

.headline em {
  font-style: normal; color: #ea580c; text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 3px; text-decoration-color: #7c2d12;
}

.subheadline {
  font-size: 15px; font-weight: 300; color: var(--muted);
  line-height: 1.7; max-width: 100%;
  margin-bottom: 10px;
  animation: fadeUp 0.5s 0.14s ease both;
  text-align: left;
}

.social-proof {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 36px; animation: fadeUp 0.5s 0.2s ease both;
   flex-wrap: wrap;
}

.stars { color: #facc15; font-size: 14px; letter-spacing: 2px; }
.proof-text { font-size: 13px; color: var(--muted); }
.proof-text strong { color: var(--text); font-weight: 500; }

.viewers {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: #4ade80;
}

.viewers::before {
  content: ""; width: 6px; height: 6px;
  background: #4ade80; border-radius: 50%;
  box-shadow: 0 0 8px #4ade80; animation: blink 1.8s ease infinite;
}

.video-wrap {
  border-radius: 0; overflow: hidden;
  border: 2px solid #7c2d12;
  box-shadow: 8px 8px 0 #7c2d1240;
  margin-bottom: 40px; animation: fadeUp 0.5s 0.26s ease both;
}

.video-wrap video { width: 100%; display: block; aspect-ratio: 16/9; background: #000; }

.video-caption {
  padding: 12px 20px; font-size: 12px; color: var(--muted);
  text-align: center; background: #1a0f08;
  border-top: 1px solid var(--border);
}

.benefits {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 40px;
  animation: fadeUp 0.5s 0.32s ease both;
}

.benefit-card {
  background: #1a0f08; 
  border: 2px solid #7c2d12; border-radius: 0;
  padding: 24px 20px; transition: all 0.25s ease;
}

.benefit-card:hover {
  background: #7c2d1218;
}


.benefit-icon {
  width: 40px; height: 40px;
  background: #7c2d121a; border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  color: #ea580c; margin-bottom: 14px;
}
.benefit-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.benefit-text { font-size: 13px; color: var(--muted); line-height: 1.55; }

.survey-section {
  background: #1a0f08; border: 2px solid #7c2d12; border-radius: 0; padding: 32px 28px;
  margin-bottom: 40px; animation: fadeUp 0.5s 0.36s ease both;
}

.survey-section::before {
  content: ""; display: block; width: 40px; height: 4px; background: #7c2d12; margin-bottom: 20px;
}

.survey-question {
  font-size: 18px; font-weight: 600;
  margin-bottom: 20px; line-height: 1.5; text-align: center;
}

.survey-option {
  display: block; width: 100%; background: #1a0f08; border: 2px solid #7c2d1230;
  border-radius: 0; padding: 14px 18px; margin-bottom: 8px; color: #fff7ed;
  font-size: 14px; font-family: inherit; cursor: pointer; text-align: left; transition: all 0.2s; text-transform: none;
}

.survey-option:hover {
  border-color: #7c2d12; background: #7c2d1215;
}

.survey-option.selected {
  border-color: #7c2d12; background: #7c2d1220; color: #fff;
}

.quiz-block {
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  animation: fadeUp 0.3s ease both;
}
.quiz-block:last-of-type { border-bottom: none; }

.stats-bar { display: flex; gap: 32px; margin-bottom: 40px; animation: fadeUp 0.5s 0.4s ease both; }
.stat-box { padding: 0; }

.stat-label {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}

.stat-value {
  font-size: 32px; font-weight: 800;
  font-style: italic; color: var(--text);
}

.stat-value.red { color: #ef4444; }

.contact-form {
  margin-top: 32px; padding-top: 28px;
  border-top: 3px solid var(--border);
}

.contact-form.hidden { display: none; }

.form-title {
  font-size: 18px; font-weight: 700; text-align: center; margin-bottom: 8px;
}

.form-subtitle {
  font-size: 13px; color: var(--muted); text-align: center;
  margin-bottom: 24px; line-height: 1.5;
}

.reg-form { display: flex; flex-direction: column; gap: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 12px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}

.form-group input {
  background: #1a0f08; border: 2px solid #7c2d1240; border-radius: 0;
  padding: 12px 16px; font-size: 14px; font-family: inherit; color: #fff7ed; outline: none; transition: border-color 0.2s;
}

.form-group input::placeholder { color: var(--muted); opacity: 0.5; }

.form-group input:focus {
  border-color: #7c2d12;
}

.submit-btn {
  background: #7c2d12; color: #fff; border: none;
  border-radius: 0; padding: 14px 28px; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  font-family: inherit; cursor: pointer; transition: opacity 0.2s, transform 0.2s; margin-top: 8px;
  border-bottom: 3px solid #431407;
}

.submit-btn:hover { opacity: 0.9; transform: translateY(-2px); }

.site-footer {
  text-align: left; padding: 28px 36px;
  border-top: 3px solid #7c2d12;
  font-size: 12px; color: var(--muted); position: relative; z-index: 1;
}

.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #1a0f08; border-top: 1px solid var(--border);
  padding: 16px 24px; display: flex; align-items: center;
  justify-content: center; gap: 18px; z-index: 9999;
  font-size: 13px; color: var(--muted); flex-wrap: wrap;
}

.cookie-banner p { margin: 0; line-height: 1.5; text-align: center; }
.cookie-banner a { color: var(--text); text-decoration: underline; }

.cookie-btn {
  background: #7c2d12;
  color: #fff; border: none; padding: 10px 24px;
  border-radius: 0;
  font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap;
}

.cookie-banner.hidden { display: none; }

.footer-links {
  margin-top: 8px; display: flex; gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.footer-links a { font-size: 11px; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: #ea580c; text-decoration: underline; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .main { padding: 40px 16px 60px; }
  .benefits { grid-template-columns: 1fr; }
  .stats-bar { flex-direction: column; }
  .social-proof { flex-wrap: wrap; gap: 10px; }
  .header-meta { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .stat-box + .stat-box::before { display: none; }
}
