/* ─── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0F2744;
  --navy-d:    #091C33;
  --navy-l:    #E8EFF8;
  --accent:    #2563EB;
  --accent-d:  #1D4ED8;
  --accent-l:  #DBEAFE;
  --slate:     #334155;
  --dark:      #111827;
  --grey:      #6B7280;
  --muted:     #94A3B8;
  --light:     #F8FAFC;
  --border:    #E2E8F0;
  --white:     #FFFFFF;
  --radius:    8px;
  --max-w:     1120px;
  --success:   #16A34A;
  --danger:    #DC2626;
}

html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
}

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

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

/* ─── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background .2s, transform .1s, box-shadow .2s;
  letter-spacing: -0.1px;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 99, 235, .3);
}
.btn-primary:hover {
  background: var(--accent-d);
  box-shadow: 0 6px 20px rgba(37, 99, 235, .4);
}

.btn-lg {
  padding: 20px 48px;
  font-size: 19px;
  border-radius: 10px;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent-l);
}

/* ─── Nav ──────────────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo:hover { text-decoration: none; }

.nav-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  border-radius: 8px;
  letter-spacing: -1px;
}

.nav-tagline {
  font-size: 13px;
  color: var(--grey);
  font-weight: 400;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 14px;
}

/* ─── Hero ─────────────────────────────────────────────────────── */
.hero {
  padding: 72px 0 64px;
  text-align: center;
  background: linear-gradient(180deg, #F0F5FF 0%, var(--white) 100%);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-l);
  color: var(--accent-d);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: var(--navy);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: 20px;
  color: var(--slate);
  max-width: 640px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.hero-dread {
  font-size: 16px;
  color: var(--grey);
  font-style: italic;
  margin-bottom: 32px;
}

.hero-includes {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
}
.hero-tag::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
}

.hero-price {
  font-size: 15px;
  color: var(--grey);
  margin-top: 16px;
}

.hero-price strong {
  font-size: 22px;
  color: var(--dark);
  font-weight: 700;
}

.was-price {
  color: var(--grey);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--danger);
  margin-left: 8px;
}

.offer-deadline {
  color: var(--grey);
  margin-left: 4px;
}

.hero-price-note {
  font-size: 15px;
  color: var(--grey);
  margin-top: 6px;
}

/* ─── Clock Running Section ───────────────────────────────────── */
.clock-running {
  padding: 72px 0;
  background: var(--light);
  text-align: center;
}

.clock-running .section-header {
  margin-bottom: 32px;
}

.clock-running .section-header h2 {
  font-size: 34px;
}

.clock-lead {
  font-size: 19px;
  color: var(--slate);
  max-width: 720px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.clock-text {
  font-size: 17px;
  color: var(--grey);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Pain Section ─────────────────────────────────────────────── */
.pain {
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
}

.pain h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 32px;
  max-width: 760px;
  color: var(--white);
}

.pain-intro {
  font-size: 18px;
  color: #CBD5E1;
  max-width: 760px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.pain-list {
  list-style: none;
  max-width: 760px;
  margin-bottom: 32px;
}

.pain-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 17px;
  color: #CBD5E1;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.pain-list li:last-child {
  border-bottom: none;
}

.pain-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #60A5FA;
  font-weight: 600;
}

.pain-close {
  font-size: 18px;
  color: #E2E8F0;
  max-width: 760px;
  line-height: 1.7;
  border-left: 3px solid #60A5FA;
  padding-left: 20px;
  margin-top: 8px;
}

/* ─── Real Cost Section ──────────────────────────────────────── */
.real-cost {
  padding: 80px 0;
  background: var(--white);
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.cost-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}

.cost-card-highlight {
  background: var(--accent-l);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(37, 99, 235, .12);
}

.cost-amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.cost-card-highlight .cost-amount {
  color: var(--accent-d);
}

.cost-label {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.5;
}

.cost-note {
  font-size: 17px;
  color: var(--slate);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
  font-style: italic;
}

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

/* ─── What's Inside ─────────────────────────────────────────────── */
.whats-inside {
  padding: 80px 0;
  background: var(--light);
}

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

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-l);
  color: var(--accent-d);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}

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

.content-card {
  background: var(--white);
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: box-shadow .2s, transform .2s;
}

.content-card:hover {
  box-shadow: 0 8px 30px rgba(15, 39, 68, .08);
  transform: translateY(-2px);
}

.content-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-l);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.content-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.content-card p {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.6;
}

/* ─── CTA Block ────────────────────────────────────────────────── */
.cta-block {
  padding: 80px 0;
  text-align: center;
  background: var(--white);
}

.cta-block h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.cta-block p {
  color: var(--grey);
  font-size: 17px;
  margin-bottom: 32px;
}

.cta-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
}

/* ─── Who It's For ──────────────────────────────────────────────── */
.who-for {
  padding: 80px 0;
  background: var(--light);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 8px;
}

.who-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 32px;
}

.who-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.who-card.yes h3 { color: var(--success); }
.who-card.no h3 { color: var(--danger); }

.who-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.who-list li {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.5;
}

.who-list.yes li::before {
  content: "✅ ";
}

.who-list.no li::before {
  content: "❌ ";
}

/* ─── FAQ ──────────────────────────────────────────────────────── */
.faq {
  padding: 80px 0;
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}

.faq-q {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  user-select: none;
}

.faq-q::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .2s;
}

.faq-item.open .faq-q::after {
  content: "−";
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-item.open .faq-a {
  max-height: 600px;
}

.faq-a p {
  padding-bottom: 20px;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.7;
}

/* ─── Guarantee ────────────────────────────────────────────────── */
.guarantee {
  padding: 64px 0;
  background: #F0F5FF;
  text-align: center;
  border-top: 1px solid #C7D7F5;
  border-bottom: 1px solid #C7D7F5;
}

.guarantee-inner {
  max-width: 640px;
  margin: 0 auto;
}

.guarantee-badge {
  font-size: 52px;
  margin-bottom: 16px;
}

.guarantee h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.guarantee p {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.7;
}

/* ─── Social Proof ─────────────────────────────────────────────── */
.social-proof {
  padding: 72px 0;
  background: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}

.review-stars {
  font-size: 20px;
  margin-bottom: 12px;
  color: #F59E0B;
  letter-spacing: 2px;
}

.review-placeholder {
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
}

/* ─── Final CTA ────────────────────────────────────────────────── */
.final-cta {
  padding: 80px 0;
  background: var(--navy);
  text-align: center;
}

.final-cta h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.final-cta p {
  font-size: 18px;
  color: #94A3B8;
  margin-bottom: 40px;
}

.final-cta .btn-primary {
  background: var(--accent);
  box-shadow: 0 4px 24px rgba(37, 99, 235, .5);
}

.final-cta .btn-primary:hover {
  background: #3B82F6;
}

.final-cta-note {
  margin-top: 20px;
  font-size: 15px;
  color: #64748B;
}

/* ─── Footer ───────────────────────────────────────────────────── */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.footer-logo a {
  color: var(--navy);
}

.footer-disclaimer {
  font-size: 13px;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.6;
}

.footer-right {
  font-size: 13px;
  color: var(--muted);
  text-align: right;
}

/* ─── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .contents-grid,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .who-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 32px;
    letter-spacing: -0.5px;
  }
  .hero-sub { font-size: 17px; }

  .pain h2 { font-size: 26px; }
  .pain-intro { font-size: 16px; }
  .pain-list li { font-size: 16px; }
  .pain-close { font-size: 16px; }

  .section-header h2 { font-size: 28px; }
  .contents-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .btn-lg {
    padding: 16px 32px;
    font-size: 17px;
  }

  .final-cta h2 { font-size: 26px; }
  .footer-inner { flex-direction: column; }
  .footer-right { text-align: left; }
}

/* ─── MTD Ready Assets ─────────────────────────────────────────── */
.nav-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(15, 39, 68, 0.18);
}

.hero-visual {
  max-width: 760px;
  margin: 44px auto 0;
}

.hero-cover {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(15, 39, 68, 0.22);
  border: 1px solid rgba(37, 99, 235, 0.14);
}

@media (max-width: 640px) {
  .nav-logo-img {
    width: 34px;
    height: 34px;
  }

  .hero-visual {
    margin-top: 32px;
  }

  .hero-cover {
    border-radius: 16px;
  }
}

/* ─── Legal Pages + Cookie Banner ─────────────────────────────── */
.legal-page {
  max-width: 860px;
  padding-top: 64px;
  padding-bottom: 80px;
}

.legal-page h1 {
  font-size: 42px;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 8px;
}

.legal-page .effective {
  color: var(--grey);
  margin-bottom: 36px;
}

.legal-page h2 {
  font-size: 22px;
  color: var(--navy);
  margin: 32px 0 12px;
}

.legal-page p,
.legal-page li {
  color: var(--slate);
  margin-bottom: 12px;
}

.legal-page ul {
  margin: 0 0 18px 1.5rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(15, 39, 68, 0.97);
  color: var(--white);
  box-shadow: 0 20px 60px rgba(15, 39, 68, 0.32);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__text {
  font-size: 14px;
  line-height: 1.5;
  color: #E2E8F0;
}

.cookie-banner__text a {
  color: var(--white);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 18px;
  font-size: 14px;
}

.cookie-banner .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
}

.cookie-banner .btn-outline:hover {
  background: rgba(255,255,255,0.12);
}

@media (max-width: 720px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner__actions {
    justify-content: flex-end;
  }
}
