@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

/* ═══════════════════════════════════════════════════════════ */
/*  DESIGN SYSTEM — PREMIUM HIGH-TICKET  v3.0                */
/* ═══════════════════════════════════════════════════════════ */

:root {
  --bg-deep: #04060e;
  --bg-primary: #070b17;
  --bg-secondary: #0b1022;
  --bg-tertiary: #0e1329;
  --bg-card: rgba(13, 19, 42, 0.55);
  --bg-card-solid: #0d1330;
  --bg-glass: rgba(13, 20, 48, 0.42);
  --bg-glass-strong: rgba(16, 24, 54, 0.65);
  --bg-glass-hover: rgba(20, 30, 65, 0.7);

  --text-primary: #edf0f7;
  --text-secondary: #8e9bb5;
  --text-muted: #5a6a86;
  --text-bright: #ffffff;

  --gold: #c9a84c;
  --gold-light: #e4ca7a;
  --gold-bright: #f0d98a;
  --gold-dark: #a68832;
  --gold-glow: rgba(201, 168, 76, 0.12);
  --gold-glow-md: rgba(201, 168, 76, 0.18);
  --gold-glow-strong: rgba(201, 168, 76, 0.25);

  --blue: #3671e9;
  --blue-glow: rgba(54, 113, 233, 0.08);
  --green: #34d399;
  --green-glow: rgba(52, 211, 153, 0.10);
  --red: #f87171;
  --red-glow: rgba(248, 113, 113, 0.08);

  --border: rgba(255, 255, 255, 0.045);
  --border-light: rgba(255, 255, 255, 0.07);
  --border-gold: rgba(201, 168, 76, 0.18);
  --border-gold-md: rgba(201, 168, 76, 0.28);
  --border-gold-strong: rgba(201, 168, 76, 0.4);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 8px 40px rgba(201, 168, 76, 0.10);
  --shadow-gold-md: 0 12px 48px rgba(201, 168, 76, 0.16);
  --shadow-gold-strong: 0 16px 56px rgba(201, 168, 76, 0.22);

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --max-width: 1140px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.35s var(--ease);
  --transition-slow: 0.5s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.75;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ═══ AMBIENT BACKGROUND ═══ */
.ambient-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-glow .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.35;
}

.ambient-glow .orb-1 {
  width: 650px;
  height: 650px;
  top: -220px;
  right: -180px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.07), transparent 70%);
  animation: orbFloat 22s ease-in-out infinite;
}

.ambient-glow .orb-2 {
  width: 550px;
  height: 550px;
  top: 50%;
  left: -250px;
  background: radial-gradient(circle, rgba(54, 113, 233, 0.05), transparent 70%);
  animation: orbFloat 28s ease-in-out infinite reverse;
}

.ambient-glow .orb-3 {
  width: 450px;
  height: 450px;
  bottom: -120px;
  right: 15%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04), transparent 70%);
  animation: orbFloat 20s ease-in-out infinite 4s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 15px) scale(0.95);
  }
}

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(4, 6, 14, 0.55);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(4, 6, 14, 0.92);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}

.nav-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-deep);
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.8px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.nav-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-md);
  color: var(--bg-deep);
}

.nav-cta:hover::after {
  left: 100%;
}

/* ═══ SECTION BASE ═══ */
section {
  padding: 130px 0;
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 22px;
  color: var(--text-bright);
}

.section-title .gold {
  color: var(--gold);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.9;
}

.section-header {
  text-align: center;
  margin-bottom: 76px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.section-divider {
  width: 56px;
  height: 2px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

/* ═══ GLASS CARD ═══ */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 50%);
  pointer-events: none;
}

.glass-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold), 0 0 0 1px var(--border-gold);
}

/* ═══ BUTTONS ═══ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--bg-deep);
  padding: 18px 42px;
  border-radius: 60px;
  font-weight: 800;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.4px;
  font-family: var(--font-sans);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.22);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transition: left 0.7s ease;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-gold-strong);
  color: var(--bg-deep);
}

.btn-primary:hover::after {
  left: 150%;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-glass);
  color: var(--text-secondary);
  padding: 18px 36px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--border-gold);
  color: var(--gold);
  background: var(--gold-glow);
  transform: translateY(-2px);
}

/* ═══ HERO ═══ */
.hero {
  padding: 180px 0 150px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(201, 168, 76, 0.05), transparent), radial-gradient(ellipse 60% 50% at 20% 70%, rgba(54, 113, 233, 0.03), transparent);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(to top, var(--bg-deep), transparent);
  pointer-events: none;
  z-index: 1;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.025;
}

.hero-grid-overlay::before {
  content: '';
  position: absolute;
  inset: -50%;
  background-image: linear-gradient(rgba(201, 168, 76, 0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.3) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: center top;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 560px;
}

.hero-badges-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.hero-badge-discount {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border: 1px solid rgba(239, 68, 68, 0.4);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.3), 0 0 40px rgba(220, 38, 38, 0.1);
  animation: discountPulse 2.5s ease-in-out infinite;
}

.hero-badge-discount span {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.9;
}

@keyframes discountPulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3), 0 0 40px rgba(220, 38, 38, 0.1);
  }

  50% {
    box-shadow: 0 0 28px rgba(220, 38, 38, 0.5), 0 0 56px rgba(220, 38, 38, 0.2);
  }
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px var(--gold);
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 8px var(--gold);
  }

  50% {
    opacity: 0.4;
    box-shadow: 0 0 2px var(--gold);
  }
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--text-bright);
}

.hero h1 .gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item .icon {
  font-size: 0.95rem;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: visible;
}

/* ═══ EBOOK COVER ═══ */

.ebook-cover-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow:
    0 8px 32px rgba(201, 168, 76, 0.15),
    0 32px 64px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 168, 76, 0.12);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
  position: relative;
  z-index: 2;
}

.ebook-cover-wrapper:hover .ebook-cover-img {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 12px 48px rgba(201, 168, 76, 0.25),
    0 48px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 168, 76, 0.2);
}

.ebook-cover-glow {
  position: absolute;
  top: 15%;
  left: -20%;
  width: 140%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.12), transparent 65%);
  z-index: 1;
  pointer-events: none;
  filter: blur(30px);
}

.ebook-float-badge {
  position: absolute;
  z-index: 10;
  background: rgba(10, 14, 28, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  box-shadow: var(--shadow-gold), 0 0 20px rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  animation: floatBadge 5s ease-in-out infinite;
}

.ebook-float-badge.top-right {
  top: -28px;
  right: -36px;
}

.ebook-float-badge.bottom-left {
  bottom: -52px;
  left: -36px;
  animation-delay: 2.5s;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

/* ═══ TRUST BAR ═══ */
.trust-bar {
  position: relative;
  z-index: 1;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}

.trust-bar .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 44px;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.trust-bar-item .icon {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ═══ STATS ═══ */
.stats-bar {
  position: relative;
  z-index: 1;
  padding: 88px 0;
}

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

.stat-item {
  text-align: center;
  padding: 36px 16px;
  background: var(--bg-glass);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.stat-item:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  margin-bottom: 6px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
}

/* ═══ HERO DUAL IMAGES ═══ */
.hero-images {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.ebook-cover-wrapper {
  position: relative;
  z-index: 3;
}

.ebook-promo-wrapper {
  position: absolute;
  right: -60px;
  bottom: -55px;
  width: 52%;
  z-index: 4;
  transform: rotate(2deg);
  transition: transform 0.6s var(--ease);
}

.ebook-promo-wrapper:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.03);
}

.ebook-promo-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 1.5px solid rgba(201, 168, 76, 0.25);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(201, 168, 76, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .hero-images {
    max-width: 260px;
    margin: 0 auto;
  }

  .ebook-promo-wrapper {
    right: -35px;
    bottom: -35px;
    width: 55%;
  }
}

/* ═══ PROBLEM ═══ */
.problem {
  background: var(--bg-secondary);
}

.problem::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 35% at 50% 0%, var(--red-glow), transparent);
  pointer-events: none;
}

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

.problem-card {
  padding: 34px 26px;
}

.problem-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(248, 113, 113, 0.15), transparent);
}

.problem-card .card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--red-glow);
  border: 1px solid rgba(248, 113, 113, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.problem-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-bright);
}

.problem-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.8;
}

/* ═══ SOLUTION ═══ */
.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.solution-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.solution-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px;
}

.solution-point .point-num {
  min-width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-deep);
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.18);
  flex-shrink: 0;
}

.solution-point h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-bright);
}

.solution-point p {
  color: var(--text-secondary);
  font-size: 0.87rem;
  line-height: 1.75;
}

.solution-visual {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.solution-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.03), transparent 40%);
  pointer-events: none;
}

.roadmap-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  color: var(--text-bright);
}

.roadmap-sub {
  color: var(--text-secondary);
  font-size: 0.86rem;
  max-width: 290px;
  margin: 0 auto 24px;
  position: relative;
}

.roadmap-steps {
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: left;
  position: relative;
}

.roadmap-step {
  background: rgba(4, 6, 14, 0.5);
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 0.83rem;
  border-left: 3px solid var(--gold);
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition);
}

.roadmap-step:hover {
  background: var(--gold-glow);
  color: var(--text-primary);
}

/* ═══ MID CTA ═══ */
.mid-cta {
  padding: 100px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.mid-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, var(--gold-glow), transparent);
  pointer-events: none;
}

.mid-cta .container {
  position: relative;
  z-index: 1;
}

.mid-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-bright);
}

.mid-cta p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* ═══ MODULES ═══ */
.modules {
  background: var(--bg-secondary);
}

.modules::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 35% at 50% 100%, var(--gold-glow), transparent);
  pointer-events: none;
}

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

.module-card {
  padding: 34px 28px;
}

.module-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.22), rgba(201, 168, 76, 0.04));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}

.module-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-bright);
}

.module-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.8;
}

/* ═══ BENEFITS ═══ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  padding: 38px 26px;
  text-align: center;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--gold-glow-md), var(--gold-glow));
  border: 1px solid var(--border-gold);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: 0.5s var(--ease-bounce);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.12) rotate(-5deg);
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-bright);
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 0.87rem;
  line-height: 1.8;
}

/* ═══ TARGET ═══ */
.target {
  background: var(--bg-secondary);
}

.target-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.target-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.target-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.target-list li:hover {
  border-color: var(--border-gold);
  transform: translateX(5px);
}

.target-list .check {
  color: var(--green);
  font-size: 1.05rem;
  min-width: 22px;
  font-weight: 700;
}

.target-list .cross {
  color: var(--red);
  font-size: 1.05rem;
  min-width: 22px;
  font-weight: 700;
}

.target-col h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 26px;
}

.target-col h3.green {
  color: var(--green);
}

.target-col h3.red {
  color: var(--red);
}

/* ═══ CREDIBILITY ═══ */
.credibility-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 44px;
  align-items: start;
}

.author-card {
  background: var(--bg-glass-strong);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold-md);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.author-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.04), transparent 50%);
  pointer-events: none;
}

.author-photo-placeholder {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-card-solid), var(--bg-deep));
  border: 2px solid var(--border-gold-md);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--text-muted);
  position: relative;
  box-shadow: 0 0 30px var(--gold-glow);
}

.author-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  position: relative;
  color: var(--text-bright);
}

.author-card .author-title {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
}

.author-card>p {
  color: var(--text-secondary);
  font-size: 0.86rem;
  position: relative;
  line-height: 1.7;
}

.credibility-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cred-point {
  padding: 28px;
}

.cred-point h4 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--text-bright);
}

.cred-point h4 .icon {
  color: var(--gold);
  font-size: 1.05rem;
}

.cred-point p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.85;
}

/* ═══ BONUSES ═══ */
.bonuses {
  background: var(--bg-secondary);
}

.bonuses::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 28% at 50% 0%, var(--gold-glow), transparent);
  pointer-events: none;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}

.bonus-card {
  padding: 34px 26px;
}

.bonus-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
}

.bonus-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-deep);
  font-size: 0.62rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.bonus-card .card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.bonus-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-bright);
}

.bonus-card p {
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.8;
}

/* ═══ AI TOOLS ═══ */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.ai-card {
  padding: 30px 22px;
  text-align: center;
}

.ai-card .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-glow);
  border: 1px solid rgba(54, 113, 233, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 14px;
  transition: 0.5s var(--ease-bounce);
}

.ai-card:hover .card-icon {
  transform: scale(1.12);
}

.ai-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-bright);
}

.ai-card p {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.75;
}

.ai-recommendation {
  margin-top: 52px;
  background: linear-gradient(135deg, var(--gold-glow), rgba(201, 168, 76, 0.02));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.ai-recommendation::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.03), transparent 60%);
  pointer-events: none;
}

.ai-recommendation h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  color: var(--text-bright);
}

.ai-recommendation p {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.92rem;
  position: relative;
}

.ai-recommendation a {
  color: var(--gold-light);
  font-weight: 700;
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 2px;
}

.ai-recommendation a:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
}

/* ═══ TESTIMONIALS ═══ */
.testimonials {
  background: var(--bg-secondary);
}

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

.testimonial-card {
  padding: 34px 26px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.82rem;
  margin-bottom: 18px;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(201, 168, 76, 0.25);
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-style: italic;
  margin-bottom: 22px;
  line-height: 1.85;
  border-left: 2px solid var(--border-gold);
  padding-left: 18px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-card-solid), var(--bg-deep));
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-bright);
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 500;
}

/* ═══ FAQ ═══ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(14px);
}

.faq-item.active {
  border-color: var(--border-gold-md);
  box-shadow: var(--shadow-gold);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  padding: 24px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  transition: var(--transition);
  gap: 16px;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question .faq-icon {
  color: var(--gold);
  transition: var(--transition);
  font-size: 1.15rem;
  min-width: 22px;
  text-align: center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 26px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.85;
}

/* ═══ GUARANTEE ═══ */
.guarantee {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.guarantee-box {
  display: flex;
  align-items: center;
  gap: 36px;
  background: var(--bg-glass);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  max-width: 820px;
  margin: 0 auto;
}

.guarantee-icon {
  font-size: 3.5rem;
  flex-shrink: 0;
}

.guarantee-box h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-bright);
}

.guarantee-box p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ═══ PRICING ═══ */
.pricing {
  background: var(--bg-secondary);
  padding: 140px 0;
}

.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 45% at 50% 50%, var(--gold-glow-md), transparent);
  pointer-events: none;
}

.pricing-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-value {
  padding-top: 20px;
}

.pricing-value h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-bright);
  line-height: 1.25;
}

.pricing-value p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 28px;
}

.value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.value-list .check {
  color: var(--gold);
  font-size: 1rem;
  min-width: 18px;
}

.pricing-box {
  background: var(--bg-glass-strong);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-gold-strong);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold-md), 0 40px 80px rgba(0, 0, 0, 0.25);
}

.pricing-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(160deg, var(--gold) 0%, rgba(201, 168, 76, 0.3) 25%, transparent 50%, rgba(201, 168, 76, 0.2) 75%, var(--gold-dark) 100%);
  border-radius: calc(var(--radius-xl) + 1px);
  z-index: -1;
  opacity: 0.45;
}

.pricing-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.06) 0%, transparent 30%, transparent 70%, rgba(201, 168, 76, 0.03) 100%);
  pointer-events: none;
  border-radius: var(--radius-xl);
}

.pricing-popular {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg-deep);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 7px 22px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.22);
}

.pricing-box h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
  position: relative;
  color: var(--text-bright);
}

.pricing-box .pricing-desc {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 0.88rem;
  position: relative;
}

.pricing-price {
  position: relative;
  margin-bottom: 32px;
}

.pricing-price .old-price {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-weight: 500;
}

.pricing-price .old-price span {
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  color: var(--red);
  font-weight: 700;
  font-size: 1.15rem;
  margin-left: 4px;
}

.pricing-price .current-price {
  font-family: var(--font-serif);
  font-size: 4.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.pricing-price .currency {
  font-size: 1.4rem;
}

.savings-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.12), rgba(220, 38, 38, 0.06));
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #f87171;
  letter-spacing: 0.3px;
  animation: savingsPulse 2.5s ease-in-out infinite;
}

@keyframes savingsPulse {

  0%,
  100% {
    box-shadow: 0 0 12px rgba(220, 38, 38, 0.1);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 24px rgba(220, 38, 38, 0.25);
    transform: scale(1.03);
  }
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.pricing-features .check {
  color: var(--gold);
  font-size: 0.95rem;
  min-width: 18px;
}

.pricing-box .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 1.02rem;
  padding: 20px;
  position: relative;
}

.pricing-guarantee {
  margin-top: 20px;
  font-size: 0.76rem;
  color: var(--text-muted);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

/* ═══ FINAL CTA ═══ */
.final-cta {
  text-align: center;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 40% at 50% 50%, var(--gold-glow-md), transparent);
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-bright);
}

.final-cta p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.85;
}

.final-cta-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 32px;
}

.final-cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 68px 0 32px;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}

.footer-brand .nav-logo {
  margin-bottom: 12px;
  display: inline-block;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.82rem;
  max-width: 300px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.82rem;
  transition: var(--transition);
  font-weight: 500;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ═══ REVEAL ═══ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════ */
/*  RESPONSIVE                            */
/* ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 44px;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .ebook-cover-wrapper {
    max-width: 280px;
    margin: 0 auto;
  }

  .solution-content {
    grid-template-columns: 1fr;
  }

  .solution-visual {
    display: none;
  }

  .credibility-content {
    grid-template-columns: 1fr;
  }

  .author-card {
    max-width: 360px;
    margin: 0 auto;
  }

  .target-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .pricing-wrapper {
    grid-template-columns: 1fr;
  }

  .pricing-value {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 88px 0;
  }

  .hero {
    padding: 140px 0 100px;
    min-height: auto;
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .pricing-box {
    padding: 36px 24px;
  }

  .pricing-price .current-price {
    font-size: 3rem;
  }

  .ebook-float-badge {
    display: none;
  }

  .section-header {
    margin-bottom: 52px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-item {
    padding: 24px 12px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 22px;
  }

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

  .hero-sub {
    font-size: 1rem;
  }

  .section-title {
    font-size: clamp(1.7rem, 5vw, 2.4rem);
  }

  /* Mobile CTA group stacks */
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  .hero-trust {
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .trust-item {
    font-size: 0.75rem;
  }

  .trust-bar .container {
    gap: 20px;
  }

  .trust-bar-item {
    font-size: 0.72rem;
  }

  /* Mobile pricing */
  .pricing {
    padding: 88px 0;
  }

  .pricing-wrapper {
    gap: 32px;
  }

  .value-list {
    margin-bottom: 16px;
  }

  /* Mobile cards */
  .problem-card {
    padding: 28px 22px;
  }

  .module-card {
    padding: 28px 22px;
  }

  .bonus-card {
    padding: 28px 22px;
  }

  .benefit-card {
    padding: 30px 22px;
  }

  .cred-point {
    padding: 24px 20px;
  }

  .solution-point {
    padding: 22px;
  }

  .ai-card {
    padding: 24px 18px;
  }

  .testimonial-card {
    padding: 28px 22px;
  }

  .mid-cta {
    padding: 72px 0;
  }

  .final-cta {
    padding: 88px 0;
  }

  .guarantee {
    padding: 56px 0;
  }

  .guarantee-box {
    padding: 28px 22px;
    gap: 20px;
  }

  .guarantee-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  section {
    padding: 72px 0;
  }

  .hero {
    padding: 120px 0 80px;
  }

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

  .hero-sub {
    font-size: 0.92rem;
    margin-bottom: 28px;
  }

  .hero-badges-row {
    justify-content: center;
  }

  .hero-badge {
    font-size: 0.68rem;
    padding: 7px 14px;
  }

  .hero-badge-discount {
    font-size: 0.78rem;
    padding: 7px 16px;
  }

  .btn-primary {
    padding: 16px 28px;
    font-size: 0.88rem;
  }

  .btn-secondary {
    padding: 16px 28px;
    font-size: 0.88rem;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.92rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-item {
    padding: 20px 8px;
  }

  .stat-number {
    font-size: 1.7rem;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  .pricing-box {
    padding: 28px 18px;
  }

  .pricing-price .current-price {
    font-size: 2.6rem;
  }

  .guarantee-box {
    padding: 24px 18px;
  }

  .faq-question {
    padding: 20px 18px;
    font-size: 0.88rem;
  }

  .faq-answer {
    padding: 0 18px;
  }

  .faq-item.active .faq-answer {
    padding: 0 18px 20px;
  }

  .final-cta-trust {
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }

  .ai-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .bonuses-grid {
    grid-template-columns: 1fr;
  }
}