/* =============================================
   SMART METHOD — Design System (Million2 DNA)
   Same tokens, fonts, spacing, and vibe
   ============================================= */

:root {
  --blue: #003399;
  --blue-700: #0b3ea9;
  --blue-800: #072c77;
  --ink: #0f172a;
  --muted: #475569;
  --gold: #ffcc00;
  --white: #fff;
  --accent: #2d6bff;
  --accent-strong: #1b4edd;
  --accent-bg: #ecf2ff;
  --cta: #2d6bff;
  --cta-hover: #2158db;
  --cta-press: #1946b1;
  --radius: 22px;
  --radius-sm: 16px;
}

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

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--blue);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* --- HEADER --- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue);
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
}

.nav-cta {
  padding: 10px 20px;
  background: var(--gold);
  color: #111;
  font-weight: 900;
  font-size: 14px;
  border-radius: 999px;
  transition: 0.15s;
}

.nav-cta:hover {
  filter: brightness(0.96);
}

/* --- HERO --- */
.hero {
  color: var(--white);
  background: linear-gradient(
    180deg,
    rgba(7, 44, 119, 0.82) 0%,
    rgba(11, 62, 169, 0.9) 55%,
    rgba(11, 62, 169, 1) 100%
  );
  text-align: center;
}

.hero-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 16px 40px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 204, 0, 0.15);
  border: 1px solid rgba(255, 204, 0, 0.4);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 16px;
}

.highlight {
  color: var(--gold);
}

.hero-sub {
  font-size: 15px;
  line-height: 1.7;
  color: #d7e4ff;
  max-width: 560px;
  margin: 0 auto 24px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  margin: 0 auto;
}

.trust {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: #d7e4ff;
  font-size: 12px;
  margin-top: 16px;
  justify-content: center;
}

/* --- BUTTONS --- */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.1px;
  transition: 0.15s;
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--gold);
  color: #111;
  box-shadow: 0 8px 18px rgba(255, 204, 0, 0.25);
}

.btn-primary:hover {
  filter: brightness(0.96);
  transform: translateY(-1px);
}

.buy-btn {
  font-size: 17px;
  padding: 16px 24px;
  margin-top: 12px;
}

/* --- STATS BAR --- */
.stats-bar {
  background: #f0f4ff;
  border-top: 1px solid #e3e9ff;
  border-bottom: 1px solid #e3e9ff;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 16px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 70px;
}

.stat-value {
  font-size: 15px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1.2;
}

.stat-label {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 600;
  text-align: center;
}

.stat-sep {
  width: 1px;
  height: 28px;
  background: #d0d9f0;
  flex-shrink: 0;
}

/* --- CONTAINER --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 12px 24px;
}

/* --- SECTIONS --- */
.section {
  background: var(--white);
  border-radius: 18px;
  padding: 24px 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  margin: 16px 0;
}

.section h2 {
  color: var(--blue);
  text-align: center;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.3;
}

.section .lead {
  color: #334155;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

/* --- PROBLEM GRID --- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 16px;
}

.problem-card {
  border-radius: 14px;
  padding: 20px 16px;
}

.problem-card.bad {
  background: #fff5f5;
  border: 2px solid #fecaca;
}

.problem-card.good {
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
}

.problem-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.problem-card h3 {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--ink);
}

.problem-card li {
  font-size: 14px;
  color: var(--muted);
  padding: 4px 0;
  padding-left: 8px;
  line-height: 1.5;
}

.problem-card.bad li::before {
  content: "\2022 ";
  color: #ef4444;
}

.problem-card.good li::before {
  content: "\2022 ";
  color: #22c55e;
}

/* --- MODULES --- */
.modules {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.module {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: #f6f8ff;
  border: 1px solid #e3e9ff;
  border-radius: 14px;
}

.module-num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--blue);
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.module-content h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}

.module-content p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* --- AUDIENCE GRID --- */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.audience-card {
  background: #f6f8ff;
  border: 1px solid #e3e9ff;
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
}

.audience-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.audience-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}

.audience-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* --- TESTIMONIALS --- */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial {
  background: #f6f8ff;
  border: 1px solid #e3e9ff;
  border-radius: 14px;
  padding: 20px 16px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 8px;
}

.testimonial p {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 8px;
}

.testimonial cite {
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
}

/* --- OFFER --- */
.offer-section {
  background: linear-gradient(180deg, #f0f4ff, #fff);
}

.offer-box {
  max-width: 500px;
  margin: 0 auto;
}

.offer-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.offer-item {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid #e3e9ff;
  border-radius: 10px;
}

.offer-pricing {
  text-align: center;
  margin-bottom: 16px;
}

.price-old {
  font-size: 18px;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 600;
}

.price-new {
  font-size: 48px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1.1;
}

.price-cents {
  font-size: 24px;
  vertical-align: super;
}

.price-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.guarantee {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 14px;
}

.guarantee-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.guarantee strong {
  font-size: 14px;
  color: var(--ink);
}

.guarantee p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 4px;
}

/* --- FAQ --- */
.faq {
  margin-top: 16px;
}

.faq-item {
  border-top: 1px solid #eaeaea;
  padding: 14px 0;
  cursor: pointer;
}

.faq-item h3 {
  font-size: 15px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}

.faq-arrow {
  font-size: 10px;
  color: var(--muted);
  transition: 0.2s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-item p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--muted);
  margin-top: 0;
  line-height: 1.6;
  font-size: 14px;
}

.faq-item.open p {
  max-height: 300px;
  margin-top: 8px;
}

/* --- FINAL CTA --- */
.final-cta-section {
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(7, 44, 119, 0.95) 0%,
    rgba(11, 62, 169, 1) 100%
  );
}

.final-cta-section h2 {
  color: var(--white);
}

.final-cta-section .lead {
  color: #d7e4ff;
}

.final-cta-section .buy-btn {
  max-width: 400px;
  margin: 12px auto 0;
}

/* --- FOOTER --- */
.site-footer {
  background: var(--blue-800);
  color: #c8d6f5;
}

.footer-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 16px 20px;
}

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

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.footer-col a {
  display: block;
  color: #a4b8e0;
  font-size: 14px;
  padding: 4px 0;
  transition: 0.15s;
}

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

.footer-col p {
  font-size: 14px;
  color: #a4b8e0;
  padding: 2px 0;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  margin-bottom: 16px;
}

.footer-disclaimer p {
  font-size: 11px;
  color: #7b8db8;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  text-align: center;
  font-size: 12px;
  color: #7b8db8;
}

/* =============================================
   RESPONSIVE — Desktop (same breakpoints as M2)
   ============================================= */

@media (min-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .hero-wrap {
    padding: 64px 16px 56px;
  }

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

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

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

  .section {
    padding: 32px 28px;
  }

  .section h2 {
    font-size: 28px;
  }

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

  .stats-inner {
    gap: 32px;
  }

  .stat-value {
    font-size: 20px;
  }

  .stat-label {
    font-size: 11px;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 48px;
  }

  .modules {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
