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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #FAF6EF;
  color: #062B4F;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ========== Section ========== */
.section {
  padding: 80px 0;
}

/* ========== Header ========== */
.header {
  position: sticky;
  top: 0;
  background: #FAF6EF;
  border-bottom: 1px solid rgba(6, 43, 79, 0.08);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #062B4F;
}

.logo-icon {
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #5F6470;
  transition: color 0.2s;
}

.nav a:hover {
  color: #062B4F;
}

.nav-cta {
  background: #E95F45;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: #d64d34 !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #062B4F;
  border-radius: 2px;
}

/* ========== Hero (Full-bleed backdrop) ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero .hero-bg-full {
  position: absolute;
  inset: 0;
}

.hero .hero-bg-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 43, 79, 0.82) 0%, rgba(6, 43, 79, 0.3) 60%, rgba(0,0,0,0.1) 100%);
}

.hero .hero-content-center {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
}

.hero .label-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 4.2rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 20px;
}

.hero h1 sup {
  font-size: 1.2rem;
  font-weight: 400;
  top: -1em;
}

.hero-sub {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 28px;
}

.hero .hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero .btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.hero .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  justify-content: center;
}

.hero .hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.hero .hero-meta svg {
  flex-shrink: 0;
  stroke: rgba(255,255,255,0.7);
}

/* ========== Audience ========== */
.audience {
  background: #FFF8F0;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: #062B4F;
  margin-bottom: 52px;
  letter-spacing: 0.01em;
}

.section-title.left {
  text-align: left;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.audience-card {
  text-align: center;
  padding: 28px 12px;
  border-radius: 12px;
  background: #FAF6EF;
  transition: all 0.25s;
}

.audience-card:hover {
  background: #fff;
  box-shadow: 0 6px 24px rgba(6, 43, 79, 0.06);
}

.audience-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(233, 95, 69, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.audience-card p {
  font-size: 0.85rem;
  font-weight: 500;
  color: #062B4F;
  line-height: 1.3;
}

/* ========== What's Inside ========== */
.inside {
  background: #FAF6EF;
}

.inside-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.inside-list {
  list-style: none;
  margin-top: 8px;
}

.inside-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #062B4F;
  padding: 11px 0;
  border-bottom: 1px solid rgba(6, 43, 79, 0.06);
}

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

.inside-list svg {
  flex-shrink: 0;
}

.workbook-mockup {
  background: #FFF8F0;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(6, 43, 79, 0.08);
}

.workbook-preview {
  width: 100%;
  border-radius: 4px;
}

.inside-caption {
  text-align: center;
  font-size: 0.88rem;
  color: #5F6470;
  margin-top: 16px;
  font-style: italic;
}

/* ========== Pricing ========== */
.pricing {
  background: #FAF6EF;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: #FFF8F0;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 8px 32px rgba(6, 43, 79, 0.06);
  display: flex;
  flex-direction: column;
}

.pricing-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(6, 43, 79, 0.06);
  margin-bottom: 20px;
}

.pricing-cover {
  width: 90px;
  border-radius: 4px;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(6, 43, 79, 0.12);
}

.pricing-header h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #062B4F;
  margin-bottom: 4px;
}

.pricing-sub {
  font-size: 0.85rem;
  color: #5F6470;
  margin-bottom: 12px;
}

.pricing-amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #062B4F;
  line-height: 1;
}

.pricing-includes {
  list-style: none;
  margin-bottom: 20px;
}

.pricing-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #062B4F;
  padding: 6px 0;
}

.pricing-includes svg {
  flex-shrink: 0;
}

.pricing-trust {
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(6, 43, 79, 0.06);
}

.pt-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
}

.pt-item svg {
  flex-shrink: 0;
}

.pt-item div {
  display: flex;
  flex-direction: column;
}

.pt-item strong {
  font-size: 0.82rem;
  font-weight: 600;
  color: #062B4F;
}

.pt-item span {
  font-size: 0.75rem;
  color: #5F6470;
}

.pricing-card .btn {
  margin-top: auto;
}

.btn-outline {
  background: transparent;
  color: #062B4F;
  border: 2px solid #062B4F;
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.btn-outline:hover {
  background: #062B4F;
  color: #fff;
  transform: translateY(-2px);
}

/* ========== CTA Banner ========== */
.cta-banner {
  background: #062B4F;
  padding: 80px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.cta-banner-content {
  text-align: center;
  max-width: 620px;
}

.cta-banner-content blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 32px;
}

.cta-deco-left,
.cta-deco-right {
  flex-shrink: 0;
  opacity: 0.5;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  padding: 16px 32px;
}

.btn-primary {
  background: #E95F45;
  color: #fff;
}

.btn-primary:hover {
  background: #d64d34;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233, 95, 69, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #062B4F;
  border: 2px solid #062B4F;
  padding: 14px 32px;
  font-size: 0.95rem;
}

.btn-secondary:hover {
  background: #062B4F;
  color: #fff;
  transform: translateY(-2px);
}

.btn-large {
  padding: 20px 44px;
  font-size: 1.1rem;
}

/* ========== Footer ========== */
.footer {
  background: #FAF6EF;
  border-top: 1px solid rgba(6, 43, 79, 0.06);
  padding: 48px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: #062B4F;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: #5F6470;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #5F6470;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #062B4F;
}

.footer-social {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

.footer-social a {
  transition: opacity 0.2s;
}

.footer-social a:hover {
  opacity: 0.7;
}

/* ========== Result Pages (success / cancelled) ========== */
.simple-page {
  background: #FAF6EF;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.result-card {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 48px 0;
}

.result-card h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #062B4F;
  margin: 24px 0 12px;
}

.result-subtitle {
  font-size: 1.15rem;
  color: #062B4F;
  margin-bottom: 8px;
}

.result-card p {
  color: #5F6470;
  margin-bottom: 24px;
}

.result-download {
  margin: 8px 0;
}

.result-note {
  font-size: 0.85rem;
  color: #5F6470;
  margin-top: 24px;
}

.result-icon svg {
  display: block;
  margin: 0 auto;
}

/* ========== Loading Overlay ========== */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(250, 246, 239, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  gap: 16px;
}

.loading-overlay p {
  font-size: 1rem;
  color: #5F6470;
}

.spinner {
  width: 38px;
  height: 38px;
  border: 3px solid rgba(6, 43, 79, 0.1);
  border-top-color: #E95F45;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hidden {
  display: none;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .footer-social {
    justify-content: center;
  }
}

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

  .hero {
    min-height: 90vh;
    padding: 40px 0;
  }

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

  .hero .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero .btn-outline-light {
    width: 100%;
    max-width: 400px;
  }

  .nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #FAF6EF;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(6, 43, 79, 0.08);
  }

  .nav.open {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .section-title {
    font-size: 1.7rem;
    margin-bottom: 36px;
  }

  .section-title.left {
    text-align: center;
  }

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

  .inside-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .btn {
    width: 100%;
  }

  .cta-banner {
    padding: 60px 0;
  }

  .cta-banner-inner {
    flex-direction: column;
    gap: 24px;
  }

  .cta-banner-content blockquote {
    font-size: 1.3rem;
  }

  .cta-deco-left,
  .cta-deco-right {
    display: none;
  }
}

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

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