:root {
  --navy: #100f2f;
  --purple: #2b173d;
  --maroon: #8f2f2d;
  --red: #b84235;
  --cream: #f8ead3;
  --cream-2: #fff7ea;
  --gold: #ffd36d;
  --orange: #ff7f28;
  --green: #2ea36b;
  --text: #fff8ed;
  --muted: #e7d3bd;
  --dark: #221527;
  --shadow: 0 24px 70px rgba(0,0,0,.28);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, var(--navy), var(--purple) 42%, var(--maroon));
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(16, 15, 47, .72);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.nav-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-wrap img {
  width: 260px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-menu a:hover { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: .25s ease;
}

.btn-primary {
  color: #2b173d;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 14px 35px rgba(255,127,40,.28);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(255,127,40,.38);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,.24);
  color: var(--cream-2);
  background: rgba(255,255,255,.06);
}

.hero {
  position: relative;
  padding: 78px 0 54px;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(255,211,109,.18), transparent 32%),
    radial-gradient(circle at 12% 78%, rgba(255,127,40,.14), transparent 34%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -3px;
  font-weight: 900;
  margin-bottom: 22px;
}

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

.hero-lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.pain-box {
  max-width: 620px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.pain-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 700;
}

.x-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e95a47, #a52e2e);
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.book-stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: 28px;
}

.book-card {
  position: relative;
  width: min(440px, 100%);
  padding: 26px;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
}

.book-card::after {
  content: '';
  position: absolute;
  width: 82%;
  height: 34px;
  left: 9%;
  bottom: 8px;
  background: rgba(0,0,0,.38);
  filter: blur(22px);
  z-index: -1;
}

.book-card img {
  border-radius: 18px;
  transform: perspective(900px) rotateY(-8deg) rotateX(2deg);
}

.section {
  padding: 82px 0;
}

.light-section {
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
  color: var(--dark);
}

.section-title {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-title .tag {
  color: var(--orange);
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

.section-title h2 {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -1.8px;
  line-height: 1.08;
  margin-bottom: 14px;
}

.section-title p {
  color: #69484a;
  font-size: 18px;
  line-height: 1.7;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-card {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(143,47,45,.15);
  padding: 26px;
  border-radius: 28px;
  box-shadow: 0 12px 35px rgba(75,39,32,.08);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--maroon), var(--purple));
  color: var(--gold);
  font-size: 25px;
  margin-bottom: 18px;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 9px;
}

.benefit-card p {
  color: #75575a;
  line-height: 1.65;
}

.product-section {
  background: linear-gradient(135deg, #160f31, #3a173b 45%, #8f2f2d);
}

.product-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.product-cover {
  padding: 22px;
  border-radius: 32px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: var(--shadow);
}

.product-copy h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  margin-bottom: 18px;
}

.product-copy p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 18px;
  margin-bottom: 22px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.check-list li {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--cream-2);
  font-weight: 700;
}

.check-list span {
  color: var(--green);
  font-weight: 900;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.price-card {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(255,247,234,.82));
  border: 1px solid rgba(143,47,45,.18);
  color: var(--dark);
  box-shadow: 0 18px 42px rgba(55,20,20,.12);
  overflow: hidden;
}

.price-card.featured {
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--maroon));
  transform: translateY(-10px);
  border-color: rgba(255,211,109,.48);
}

.badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,127,40,.16);
  color: var(--orange);
  font-weight: 900;
  margin-bottom: 18px;
  font-size: 13px;
}

.featured .badge {
  background: rgba(255,211,109,.18);
  color: var(--gold);
}

.price-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.price {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 12px;
}

.price small {
  font-size: 18px;
  letter-spacing: 0;
}

.price-card p {
  color: #76585b;
  line-height: 1.6;
  min-height: 50px;
}

.featured p { color: var(--muted); }

.bonus-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 38px;
}

.bonus-card, .cta-card {
  border-radius: 32px;
  padding: 34px;
  background: linear-gradient(135deg, var(--purple), var(--maroon));
  color: white;
  box-shadow: var(--shadow);
}

.bonus-card h3, .cta-card h3 {
  font-size: 30px;
  margin-bottom: 18px;
  color: var(--gold);
}

.bonus-card ul {
  display: grid;
  gap: 12px;
}

.bonus-card li {
  list-style: none;
  line-height: 1.5;
  color: var(--cream-2);
}

.cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.cta-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 18px;
}

.footer {
  padding: 42px 0;
  background: #0d0c24;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer img { width: 210px; }

.float-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #20c463;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
  font-size: 32px;
  transition: .2s;
}

.float-wa:hover { transform: scale(1.08); }

@media (max-width: 980px) {
  .nav-menu { display: none; }
  .hero-grid, .product-grid, .bonus-wrap { grid-template-columns: 1fr; }
  .hero { padding-top: 44px; }
  .book-stage { order: -1; }
  .benefit-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .logo-wrap img { width: 190px; }
  .nav-inner { height: 72px; }
  .pain-box, .benefit-grid, .pricing-grid { grid-template-columns: 1fr; }
  .hero h1 { letter-spacing: -1.6px; }
  .hero-lead { font-size: 17px; }
  .price-card.featured { transform: none; }
  .footer-inner { flex-direction: column; text-align: center; }
}
