:root {
  --primary: #e36f2c;
  --primary-dark: #b94f1d;
  --secondary: #20140f;
  --accent: #22c55e;
  --bg: #fff8f2;
  --bg-soft: #fff0df;
  --white: #ffffff;
  --text: #2f241f;
  --muted: #76685f;
  --border: #efdcc9;
  --danger: #ef4444;
  --warning: #f59e0b;
  --shadow: 0 20px 50px rgba(65, 35, 18, 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;
}

.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(227, 111, 44, 0.12);
  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;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 242, 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.35rem;
  font-weight: 900;
  color: var(--secondary);
  letter-spacing: -0.03em;
}

.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);
}

.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(227, 111, 44, 0.28);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(227, 111, 44, 0.36);
}

.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 {
  padding: 100px 0 90px;
  background:
    radial-gradient(circle at top left, rgba(227, 111, 44, 0.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.10), 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.1rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--secondary);
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--primary);
}

.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.25rem;
  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.22;
}

.product-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 38px;
  box-shadow: var(--shadow);
}

.badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.14);
  color: #15803d;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.83rem;
  margin-bottom: 24px;
}

.product-box h3 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 14px;
}

.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(--accent);
  font-weight: 900;
}

.problem {
  background: var(--white);
}

.problem .narrow {
  text-align: center;
}

.problem h2 {
  max-width: 800px;
  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 {
  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(65, 35, 18, 0.07);
}

.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;
}

.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 {
  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(34, 197, 94, 0.10);
}

.audience-box.negative {
  background: rgba(239, 68, 68, 0.10);
}

.audience-box ul {
  margin-top: 24px;
}

.audience-box li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: #fff7ed;
}

.audience-box.positive li::before {
  content: "✓";
  color: var(--accent);
}

.audience-box.negative li::before {
  content: "×";
  color: #fb7185;
}

.audience-box li::before {
  position: absolute;
  left: 0;
  font-weight: 900;
}

.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(65, 35, 18, 0.07);
}

.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;
}

.testimonials {
  background: var(--white);
}

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

.testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
}

.testimonial p {
  color: var(--text);
  font-size: 1.02rem;
  margin-bottom: 24px;
}

.testimonial strong {
  display: block;
  color: var(--secondary);
}

.testimonial span {
  color: var(--muted);
  font-size: 0.92rem;
}

.offer {
  background:
    radial-gradient(circle at top right, rgba(227, 111, 44, 0.22), transparent 35%),
    var(--secondary);
}

.offer h2,
.offer h3 {
  color: var(--white);
}

.offer p {
  color: #ffe8d3;
}

.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: #fff7ed;
}

.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(245, 158, 11, 0.14);
  color: #b45309;
  font-weight: 900;
  padding: 8px 14px;
  border-radius: 999px;
}

.price {
  margin-bottom: 18px;
}

.old-price {
  display: block;
  color: var(--muted);
  text-decoration: line-through;
  font-size: 1.1rem;
}

.price strong {
  display: block;
  color: var(--secondary);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price small {
  color: var(--muted);
  font-weight: 800;
}

.price-note {
  color: var(--muted) !important;
  margin-bottom: 24px;
}

.secure {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.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;
}

.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(65, 35, 18, 0.07);
}

.guarantee-icon {
  width: 86px;
  height: 86px;
  flex: 0 0 86px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 2.2rem;
  font-weight: 900;
}

.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: #ffe8d3;
  margin-bottom: 28px;
}

.faq {
  background: var(--white);
}

.beenexen {
  background: var(--white);
}

.beenexen-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(7, 19, 39, 0.96), rgba(11, 45, 107, 0.96)),
    radial-gradient(circle at top right, rgba(24, 87, 242, 0.45), transparent 34%);
  border-radius: 34px;
  padding: 46px;
  box-shadow: var(--shadow);
}

.beenexen-box .section-label {
  background: rgba(255, 255, 255, 0.1);
  color: #bfd2ff;
}

.beenexen-box h2 {
  color: var(--white);
}

.beenexen-box p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 760px;
}

.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 {
  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: #fff7ed;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.footer {
  background: var(--secondary);
  color: #ffe8d3;
  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: #ffe8d3;
  transition: var(--transition);
}

.footer a:hover {
  color: var(--white);
}

@media (max-width: 980px) {
  .hero-grid,
  .two-columns,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 70px;
  }

  .cards-grid,
  .steps-grid,
  .testimonial-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;
  }

  .logo {
    font-size: 1.12rem;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-row,
  .pain-grid,
  .cards-grid,
  .steps-grid,
  .testimonial-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .product-box,
  .price-card,
  .audience-box,
  .guarantee-box,
  .urgency-box {
    padding: 28px;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
  }

  .price strong {
    font-size: 2.1rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer a {
    margin: 0 8px;
  }
}
