:root {
  --bg: #f7f4ee;
  --text: #151515;
  --muted: #6f6a63;
  --card: #ffffff;
  --soft: #efe8dc;
  --line: rgba(20, 20, 20, 0.1);
  --accent: #111827;
  --accent2: #b88945;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(20, 20, 20, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand, .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, #111827, #b88945);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.header-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.2s ease;
}

.header-btn,
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.18);
}

.btn-secondary {
  background: white;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn:hover,
.header-btn:hover {
  transform: translateY(-2px);
}

.hero {
  padding: 92px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.badge,
.section-label {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(184, 137, 69, 0.13);
  color: #7a5724;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  margin-bottom: 22px;
}

.section-label.light {
  background: rgba(255,255,255,0.12);
  color: #f4d59d;
}

h1 {
  font-size: clamp(52px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: -3px;
  margin-bottom: 28px;
}

.hero-text {
  max-width: 640px;
  font-size: 19px;
  color: var(--muted);
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 34px 0;
}

.old-price {
  color: #9b948b;
  text-decoration: line-through;
  font-size: 22px;
  font-weight: 700;
}

.new-price {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -1px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}

.premium-card {
  width: min(420px, 100%);
  min-height: 560px;
  border-radius: 38px;
  padding: 34px;
  color: white;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.25), transparent 30%),
    linear-gradient(145deg, #111827 0%, #1f2937 45%, #b88945 140%);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotate(-3deg);
}

.cover-top,
.cover-bottom {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}

.cover-center h2 {
  color: white;
  font-size: 54px;
  line-height: 0.98;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.cover-center p {
  color: rgba(255,255,255,.72);
  font-size: 16px;
}

.floating-card {
  position: absolute;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 18px;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(20,20,20,.12);
}

.card-one { top: 90px; left: 20px; }
.card-two { right: 0; top: 230px; }
.card-three { bottom: 90px; left: 40px; }

.logos-strip {
  padding: 22px 0;
  background: #111827;
  color: rgba(255,255,255,.78);
}

.strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 800;
  font-size: 14px;
}

.section {
  padding: 96px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.section-head p,
.buy-info p {
  color: var(--muted);
  font-size: 17px;
}

.features-grid,
.steps-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card,
.step-card,
.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 12px 40px rgba(20,20,20,.04);
}

.feature-icon,
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: #7a5724;
  font-weight: 900;
  margin-bottom: 22px;
}

.feature-card h3,
.step-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.feature-card p,
.step-card p,
.review-card p {
  color: var(--muted);
}

.dark-section {
  background: #111827;
  color: white;
}

.dark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.dark-section h2 {
  color: white;
}

.dark-section p {
  color: rgba(255,255,255,.72);
}

.audience-list {
  display: grid;
  gap: 16px;
}

.audience-item {
  display: flex;
  gap: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 18px;
  border-radius: 20px;
}

.audience-item span {
  color: #f4d59d;
  font-weight: 900;
}

.buy-section {
  padding: 96px 0;
}

.buy-card {
  background: white;
  border-radius: 36px;
  padding: 42px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  border: 1px solid var(--line);
}

.buy-list {
  list-style: none;
  display: grid;
  gap: 13px;
  margin-top: 28px;
}

.buy-list li::before {
  content: "✓";
  color: #7a5724;
  font-weight: 900;
  margin-right: 10px;
}

.buy-price-box {
  background: #111827;
  color: white;
  border-radius: 30px;
  padding: 34px;
}

.price-label {
  color: rgba(255,255,255,.6);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

.price-main {
  font-size: 64px;
  font-weight: 900;
  margin: 12px 0;
  letter-spacing: -2px;
}

.price-sub {
  color: rgba(255,255,255,.72);
  margin-bottom: 26px;
}

.full-btn {
  width: 100%;
  background: #b88945;
  color: white;
}

.safe-note {
  margin-top: 16px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  text-align: center;
}

.soft {
  background: #efe8dc;
}

.review-card strong {
  display: block;
  margin-top: 18px;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

details p {
  margin-top: 14px;
  color: var(--muted);
}

.site-footer {
  background: #090909;
  color: white;
  padding: 60px 0 28px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.site-footer p {
  color: rgba(255,255,255,.65);
  margin-top: 14px;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
}

.footer-disclaimer {
  width: min(1180px, calc(100% - 40px));
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  color: rgba(255,255,255,.5);
  font-size: 12px;
}

@media (max-width: 980px) {
  .nav { display: none; }

  .hero-grid,
  .dark-grid,
  .buy-card {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .steps-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .premium-card {
    min-height: 500px;
  }

  .floating-card {
    display: none;
  }

  h1 {
    font-size: 52px;
  }
}