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

:root {
  --navy: #0A2540;
  --orange: #FF6B35;
  --text: #111111;
  --muted: #6B7280;
  --bg: #FFFFFF;
  --light: #F9FAFB;
  --border: #E5E7EB;
  --radius: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: inherit;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.18s, transform 0.15s;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--sm  { padding: 10px 20px; font-size: 14px; }
.btn--lg  { padding: 18px 40px; font-size: 18px; }
.btn:not(.btn--sm):not(.btn--lg) { padding: 14px 28px; font-size: 16px; }

/* ===== HELPERS ===== */
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: box-shadow 0.2s;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__logo {
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.25s;
}
.nav__mobile {
  display: none;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.nav__mobile.open { display: block; }

@media (max-width: 640px) {
  .nav__right { display: none; }
  .nav__hamburger { display: flex; }
}

/* ===== SECTION BASE ===== */
.section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.section__headline {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 700px;
}
.section__sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 52px;
}

/* ===== HERO ===== */
.hero { padding: 120px 0 100px; }
.hero__inner { text-align: center; }
.hero__pre {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero__headline {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
  max-width: 900px;
  margin: 0 auto 28px;
}
.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 40px;
}
.hero__trust {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
}

/* ===== VIDEO ===== */
.video-section {
  padding: 80px 0;
  background: var(--navy);
  border-top: none;
}
.video-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.video-placeholder {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  border: 2px dashed rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.video-placeholder:hover { background: rgba(255,255,255,0.1); }
.video-caption {
  color: rgba(255,255,255,0.65);
  text-align: center;
  max-width: 580px;
  font-size: 15px;
  font-style: italic;
}

/* ===== PROBLEM ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 768px) { .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--light);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border);
}
.card__icon { margin-bottom: 20px; }
.card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}
.card p { color: var(--muted); font-size: 15px; }

/* ===== FOUNDER ===== */
.founder__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
}
.founder__photo-placeholder {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--light);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--muted);
  font-size: 15px;
  text-align: center;
}
.founder__copy h2 {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.2;
}
.founder__copy p { color: var(--muted); margin-bottom: 16px; }
.founder__copy ol { padding-left: 20px; color: var(--muted); }
.founder__copy ol li { margin-bottom: 12px; }

@media (max-width: 768px) {
  .founder__inner { grid-template-columns: 1fr; gap: 36px; }
  .founder__photo { display: flex; justify-content: center; }
  .founder__photo-placeholder { width: 200px; height: 200px; }
}

/* ===== MECHANISM ===== */
.mechanism { background: var(--light); }
.mechanism .section__headline,
.mechanism .section__sub { text-align: center; margin-left: auto; margin-right: auto; }

.comparison-table {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.comparison-row {
  display: flex;
  align-items: center;
  padding: 18px 28px;
  gap: 24px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.comparison-row:last-child { border-bottom: none; }
.comparison-row--good { background: #F0FDF4; }
.comparison-label {
  font-weight: 700;
  min-width: 150px;
  font-size: 15px;
}
.comparison-row--good .comparison-label { color: #15803D; }
.comparison-desc { color: var(--muted); font-size: 15px; }
.comparison-row--good .comparison-desc { color: #166534; font-weight: 500; }

@media (max-width: 560px) {
  .comparison-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .comparison-label { min-width: auto; }
}

/* ===== HOW IT WORKS ===== */
.step {
  display: flex;
  gap: 40px;
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.step:last-child { border-bottom: none; }
.step__number {
  font-size: 72px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  min-width: 90px;
  letter-spacing: -0.05em;
  user-select: none;
}
.step__content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.step__week {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  background: rgba(255,107,53,0.1);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.step__content p { color: var(--muted); }

@media (max-width: 560px) {
  .step { flex-direction: column; gap: 12px; }
  .step__number { font-size: 44px; min-width: auto; }
}

/* ===== INCLUDED ===== */
.included { background: var(--light); }
.included-table {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 32px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.included-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  gap: 16px;
  font-size: 15px;
}
.included-row:last-child { border-bottom: none; }
.included-row--header {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.included-row span:last-child {
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.included-row--header span:last-child { color: rgba(255,255,255,0.65); }
.included-pricing { text-align: center; padding: 8px 0 0; }
.included-pricing__elsewhere { color: var(--muted); font-size: 16px; margin-bottom: 8px; }
.included-pricing__yours { font-size: 20px; font-weight: 600; }

@media (max-width: 560px) {
  .included-row { flex-direction: column; align-items: flex-start; gap: 2px; }
  .included-row span:last-child { color: var(--orange); }
  .included-row--header span:last-child { color: rgba(255,255,255,0.65); }
}

/* ===== GUARANTEE ===== */
.guarantee {
  background: var(--navy);
  padding: 96px 0;
  color: #fff;
  text-align: center;
}
.guarantee__inner { max-width: 760px; margin: 0 auto; }
.guarantee__badge {
  display: inline-block;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 32px;
}
.guarantee h2 {
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 28px;
}
.guarantee p { color: rgba(255,255,255,0.72); font-size: 18px; margin-bottom: 16px; }

/* ===== LEAD MAGNET ===== */
.lead-magnet { background: var(--light); }
.lead-magnet__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lead-magnet__copy h2 {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.lead-magnet__copy p { color: var(--muted); font-size: 16px; }
.lead-magnet__form form { display: flex; flex-direction: column; gap: 12px; }
.lead-magnet__form input {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.lead-magnet__form input:focus { border-color: var(--navy); }
.lead-magnet__form .btn { width: 100%; }
.form__note { font-size: 12px; color: var(--muted); text-align: center; }

@media (max-width: 768px) { .lead-magnet__inner { grid-template-columns: 1fr; } }

/* ===== FIT ===== */
.fit__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.fit__col h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 20px;
}
.fit__col--yes h3::before { content: "✅ "; }
.fit__col--no  h3::before { content: "❌ "; }
.fit__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fit__col ul li { padding: 13px 16px; border-radius: var(--radius); font-size: 15px; }
.fit__col--yes ul li { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }
.fit__col--no  ul li { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

@media (max-width: 768px) { .fit__inner { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.accordion { max-width: 760px; margin: 0 auto; }
.accordion__item { border-bottom: 1px solid var(--border); }
.accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  gap: 16px;
  line-height: 1.4;
}
.accordion__icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.22s;
  line-height: 1;
}
.accordion__item.open .accordion__icon { transform: rotate(45deg); }
.accordion__body { display: none; padding-bottom: 24px; }
.accordion__item.open .accordion__body { display: block; }
.accordion__body p { color: var(--muted); font-size: 16px; }

/* ===== FINAL CTA ===== */
.final-cta { text-align: center; }
.final-cta__inner { max-width: 700px; margin: 0 auto; }
.final-cta h2 {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.final-cta p { color: var(--muted); font-size: 18px; margin-bottom: 36px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__logo {
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.footer__brand p:last-child { font-size: 14px; }
.footer__links { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer__links a:hover { color: #fff; }
.footer__contact { font-size: 14px; }
.footer__contact a { color: var(--orange); }
.footer__contact a:hover { opacity: 0.8; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 768px) { .footer__inner { grid-template-columns: 1fr; gap: 32px; } }
