:root {
  --primary: #ff3d10;
  --primary-dark: #c92b08;
  --secondary: #191919;
  --accent: #f9a83d;
  --bg: #fff7f1;
  --bg-soft: #fff0df;
  --white: #ffffff;
  --text: #2b211d;
  --muted: #725f57;
  --border: #f0d7c4;
  --danger: #ef4444;
  --warning: #f59e0b;
  --shadow: 0 20px 50px rgba(30, 20, 15, 0.14);
  --radius: 24px;
  --transition: all 0.25s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, video { max-width: 100%; display: block; }
.container { width: min(1120px, 92%); margin: auto; }
.narrow { max-width: 850px; }
.section { padding: 95px 0; }

.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 61, 16, 0.1);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading h2,
.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--secondary);
  margin-bottom: 18px;
  letter-spacing: -0.035em;
}

.section-heading p,
.section p { color: var(--muted); font-size: 1.05rem; }

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 247, 241, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-content { height: 76px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.45rem; font-weight: 900; color: var(--secondary); }
.logo span { color: var(--primary); }
.header-btn {
  background: var(--secondary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: var(--transition);
}
.header-btn:hover { background: var(--primary); transform: translateY(-2px); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 900;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(255, 61, 16, 0.28);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(255, 61, 16, 0.35); }
.btn-secondary { background: var(--white); color: var(--secondary); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }
.btn-light { background: var(--white); color: var(--primary); }
.btn-light:hover { transform: translateY(-3px); }
.full { width: 100%; }

/* HERO */
.hero {
  padding: 100px 0 90px;
  background:
    radial-gradient(circle at top left, rgba(255, 61, 16, 0.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(249, 168, 61, 0.18), transparent 35%),
    var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 60px; align-items: center; }
.hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  color: var(--secondary);
  margin-bottom: 24px;
}
.hero h1 span {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-description { font-size: 1.22rem; color: var(--muted); max-width: 640px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 38px; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 620px; }
.trust-row div { background: var(--white); border: 1px solid var(--border); padding: 18px; border-radius: 18px; }
.trust-row strong { display: block; font-size: 1.45rem; color: var(--secondary); }
.trust-row span { color: var(--muted); font-size: 0.9rem; }
.hero-card { position: relative; }
.hero-card::before {
  content: "";
  position: absolute;
  inset: 32px -18px -18px 32px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 34px;
  z-index: 0;
  opacity: 0.28;
}
.product-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 38px;
  box-shadow: var(--shadow);
}
.product-media-box { overflow: hidden; }
.product-image {
  width: 100%;
  border-radius: 22px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  background: #fff;
}
.badge {
  display: inline-block;
  background: rgba(249, 168, 61, 0.18);
  color: #9a4b00;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.83rem;
  margin-bottom: 20px;
}
.product-box h3 { font-size: 2rem; color: var(--secondary); margin-bottom: 14px; line-height: 1.1; }
.product-box p { color: var(--muted); margin-bottom: 24px; }
.product-box ul { margin-bottom: 28px; }
.product-box li { position: relative; padding-left: 28px; margin-bottom: 12px; font-weight: 800; }
.product-box li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--primary); font-weight: 900; }

/* PROBLEM */
.problem { background: var(--white); }
.problem .narrow { text-align: center; }
.problem h2 { max-width: 780px; margin-inline: auto; }
.pain-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.pain-card { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 24px; color: var(--secondary); font-weight: 800; text-align: left; }

/* SOLUTION */
.solution { background: var(--bg-soft); }
.two-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.solution-list { display: grid; gap: 18px; }
.solution-item { display: flex; gap: 20px; background: var(--white); border: 1px solid var(--border); padding: 24px; border-radius: 22px; box-shadow: 0 12px 30px rgba(30,20,15,0.06); }
.solution-item span { width: 48px; height: 48px; flex: 0 0 48px; border-radius: 50%; background: var(--primary); color: var(--white); display: grid; place-items: center; font-weight: 900; }
.solution-item h3 { color: var(--secondary); margin-bottom: 4px; }

/* PRODUCT PREVIEW */
.product-preview { background: var(--white); }
.preview-grid,
.video-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 58px; align-items: center; }
.preview-image-wrap,
.video-card { background: var(--bg); border: 1px solid var(--border); padding: 18px; border-radius: 28px; box-shadow: 0 14px 34px rgba(30,20,15,0.08); }
.preview-image { width: 100%; border-radius: 20px; }
.feature-list { margin-top: 24px; display: grid; gap: 12px; }
.feature-list li { position: relative; padding-left: 30px; color: var(--muted); font-weight: 700; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 900; }

/* BENEFITS */
.benefits { background: var(--white); }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: var(--bg); border: 1px solid var(--border); border-radius: 22px; padding: 30px; transition: var(--transition); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card h3 { color: var(--secondary); margin-bottom: 12px; font-size: 1.25rem; }
.card p { color: var(--muted); }

/* AUDIENCE */
.audience { background: var(--secondary); }
.audience h2 { color: var(--white); }
.audience-box { padding: 38px; border-radius: 28px; border: 1px solid rgba(255,255,255,0.12); }
.audience-box.positive { background: rgba(249,168,61,0.12); }
.audience-box.negative { background: rgba(255,61,16,0.10); }
.audience-box ul { margin-top: 24px; }
.audience-box li { position: relative; padding-left: 32px; margin-bottom: 14px; color: #fff2e8; }
.audience-box.positive li::before { content: "✓"; color: var(--accent); }
.audience-box.negative li::before { content: "×"; color: #ff9a7e; }
.audience-box li::before { position: absolute; left: 0; font-weight: 900; }

/* STEPS */
.steps { background: var(--bg); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: var(--white); border: 1px solid var(--border); border-radius: 26px; padding: 34px; text-align: center; box-shadow: 0 12px 34px rgba(30,20,15,0.06); }
.step span { width: 62px; height: 62px; background: var(--primary); color: var(--white); display: grid; place-items: center; border-radius: 50%; margin: 0 auto 20px; font-size: 1.4rem; font-weight: 900; }
.step h3 { font-size: 1.35rem; color: var(--secondary); margin-bottom: 10px; }

/* VIDEO */
.video-section { background: var(--bg-soft); }
.video-card video { width: 100%; border-radius: 20px; background: #000; }

/* OFFER */
.offer { background: radial-gradient(circle at top right, rgba(249,168,61,0.16), transparent 35%), var(--secondary); }
.offer h2, .offer h3 { color: var(--white); }
.offer p { color: #f7dccb; }
.offer-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 46px; align-items: center; }
.included { margin-top: 34px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 28px; border-radius: 24px; }
.included h3 { margin-bottom: 18px; }
.included li { position: relative; padding-left: 30px; margin-bottom: 12px; color: #fff2e8; }
.included li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }
.price-card { background: var(--white); border-radius: 32px; padding: 38px; box-shadow: var(--shadow); }
.price-card h3 { color: var(--secondary); font-size: 1.7rem; margin: 18px 0; }
.discount { display: inline-block; background: rgba(249,168,61,0.18); color: #9a4b00; font-weight: 900; padding: 8px 14px; border-radius: 999px; }
.price { margin-bottom: 18px; }
.price strong { display: block; color: var(--secondary); font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1; letter-spacing: -0.05em; }
.price small { display: block; margin-top: 10px; color: var(--muted); font-weight: 700; line-height: 1.35; }
.price-note { color: var(--muted) !important; margin-bottom: 24px; }
.secure { margin-top: 18px; text-align: center; color: var(--muted); font-size: 0.9rem; }

/* BONUSES */
.bonuses { background: var(--bg-soft); }
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bonus-card { background: var(--white); border: 1px solid var(--border); border-radius: 26px; padding: 32px; }
.bonus-card span { display: inline-block; color: var(--primary); font-weight: 900; margin-bottom: 14px; }
.bonus-card h3 { color: var(--secondary); margin-bottom: 12px; }

/* BEENEXEN */
.beenexen-section { background: var(--white); }
.beenexen-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  background: linear-gradient(135deg, #07111f, #1321ed);
  border-radius: 34px;
  padding: 46px;
  box-shadow: var(--shadow);
}
.beenexen-card .section-label { background: rgba(255,255,255,0.12); color: #ffffff; border: 1px solid rgba(255,255,255,0.16); }
.beenexen-card h2 { color: var(--white); }
.beenexen-card p { color: rgba(255,255,255,0.78); max-width: 760px; }

/* GUARANTEE */
.guarantee { background: var(--white); }
.guarantee-box { display: flex; gap: 28px; align-items: center; background: var(--bg); border: 1px solid var(--border); border-radius: 32px; padding: 42px; box-shadow: 0 14px 40px rgba(30,20,15,0.06); }
.guarantee-icon { width: 86px; height: 86px; flex: 0 0 86px; display: grid; place-items: center; background: var(--accent); color: var(--secondary); border-radius: 50%; font-size: 2.2rem; font-weight: 900; }

/* URGENCY */
.urgency { background: var(--bg); }
.urgency-box { text-align: center; max-width: 820px; background: var(--secondary); color: var(--white); padding: 52px; border-radius: 34px; }
.urgency-box h2 { color: var(--white); }
.urgency-box p { color: #f7dccb; margin-bottom: 28px; }

/* FAQ */
.faq { background: var(--white); }
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-item h3 { color: var(--secondary); margin-bottom: 8px; font-size: 1.2rem; }
.faq-item p { color: var(--muted); }

/* FINAL CTA */
.final-cta { padding: 90px 0; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.final-cta-box { text-align: center; color: var(--white); max-width: 800px; }
.final-cta h2 { font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.08; margin-bottom: 18px; }
.final-cta p { color: #ffeadd; font-size: 1.1rem; margin-bottom: 30px; }

/* FOOTER */
.footer { background: var(--secondary); color: #f7dccb; padding: 34px 0; }
.footer-content { display: flex; justify-content: space-between; gap: 20px; align-items: center; flex-wrap: wrap; }
.footer a { margin-left: 18px; color: #f7dccb; transition: var(--transition); }
.footer a:hover { color: var(--white); }

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero-grid,
  .two-columns,
  .offer-grid,
  .preview-grid,
  .video-grid,
  .beenexen-card { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; }
  .cards-grid,
  .steps-grid,
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-card::before { display: none; }
}

@media (max-width: 680px) {
  .section { padding: 70px 0; }
  .header-content { height: 68px; }
  .header-btn { display: none; }
  .hero h1 { font-size: 2.75rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .trust-row,
  .pain-grid,
  .cards-grid,
  .steps-grid,
  .bonus-grid { grid-template-columns: 1fr; }
  .product-box,
  .price-card,
  .audience-box,
  .guarantee-box,
  .urgency-box,
  .beenexen-card { padding: 28px; }
  .guarantee-box { flex-direction: column; text-align: center; }
  .footer-content { flex-direction: column; text-align: center; }
  .footer a { margin: 0 8px; }
}
