/* Landing page styles for whitepaper download */
@import url("colors_and_type.css");

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #fff;
  font-family: var(--font-sans);
  color: var(--ink-900);
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
}

/* ── Site header ──────────────────────────────────────────────── */
.site-hdr {
  background: #fff;
  border-bottom: 1px solid var(--ink-200);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-hdr-in {
  max-width: 1200px; margin: 0 auto;
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.site-hdr-logo { height: 36px; }
.site-hdr a.scroll-cta {
  background: var(--grad-cta-warm);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-cta);
}

/* ── Hero ──────────────────────────────────────────────────────── */
.lp-hero {
  background: linear-gradient(170deg, #aeedf5 0%, #c8f3f8 60%, #e0f7fa 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.lp-hero::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0; height: 60px;
  background: linear-gradient(180deg, transparent 0%, #fff 100%);
}
.lp-hero-in {
  max-width: 1180px; margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.lp-hero-left .eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid var(--blue-800);
  color: var(--blue-800);
  font-weight: 800;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.lp-hero-left .eyebrow-pill::before {
  content: "📘";
  font-size: 14px;
}
.lp-hero h1 {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.12;
  color: var(--blue-800);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.lp-hero h1 .marker {
  background-image: linear-gradient(180deg, transparent 70%, #fff080 70%);
  padding: 0 4px;
}
.lp-hero .sub {
  font-size: 19px;
  font-weight: 700;
  color: var(--blue-700);
  line-height: 1.5;
  margin: 0 0 18px;
}
.lp-hero .desc {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ink-700);
  margin: 0 0 22px;
}
.lp-hero .hero-cta {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding-top: 13px;
}
.lp-hero .hero-cta-micro {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  white-space: nowrap;
  background: #fff;
  border: 1.5px solid var(--blue-600);
  color: var(--blue-800);
  font-size: 12.5px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 999px;
  box-shadow: 0 2px 5px rgba(0, 78, 162, 0.10);
}
.lp-hero .hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-cta-warm);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  padding: 18px 34px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-cta);
  transition: transform .15s ease, box-shadow .15s ease;
}
.lp-hero .hero-cta:hover .hero-cta-btn {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 95, 100, 0.34);
}
.lp-hero .hero-cta-btn .hero-cta-ic {
  font-size: 16px;
  line-height: 1;
}

/* book preview mockup */
.book-mock {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 460px;
}
.book-cover {
  width: 320px;
  height: 440px;
  background: linear-gradient(170deg, #aeedf5 0%, #c8f3f8 65%, #ffffff 100%);
  border-radius: 4px 16px 16px 4px;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.06) inset,
    8px 22px 50px rgba(0, 60, 120, 0.28),
    -2px 0 0 #d9e8ee;
  padding: 30px 28px 0;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
  overflow: hidden;
  transform: rotate(-3deg);
  transition: transform .4s ease;
}
.book-cover:hover { transform: rotate(-1deg) translateY(-4px); }
.book-cover::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 18px;
  background: linear-gradient(90deg, rgba(0,0,0,0.06), transparent);
}
.book-cover .bc-eyebrow {
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--teal-700);
  font-weight: 700;
}
.book-cover .bc-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--blue-800);
  line-height: 1.15;
  margin: 8px 0 4px;
  letter-spacing: -0.01em;
}
.book-cover .bc-title .marker { background-image: linear-gradient(180deg, transparent 70%, #fff080 70%); padding: 0 2px; }
.book-cover .bc-sub {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-700);
  margin: 6px 0 0;
  line-height: 1.5;
}
.book-cover .bc-art {
  flex: 1;
  margin-top: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.book-cover .bc-art img { width: 180px; height: auto; }
.book-cover .bc-foot {
  background: #fff;
  margin: 0 -28px;
  padding: 8px 28px;
  border-top: 4px solid var(--blue-800);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  color: var(--ink-500);
}
.book-cover .bc-foot img { height: 18px; }

.book-pages-1, .book-pages-2 {
  position: absolute;
  width: 304px;
  height: 424px;
  background: #fff;
  border-radius: 4px 12px 12px 4px;
  box-shadow: 4px 8px 24px rgba(0,60,120,0.10);
  /* sample interior lines so the "page" reads as content, not a blank slab */
  background-image:
    linear-gradient(180deg, transparent 0, transparent 40px, #eef3f7 40px, #eef3f7 41px, transparent 41px, transparent 60px, #eef3f7 60px, #eef3f7 61px, transparent 61px, transparent 80px, #eef3f7 80px, #eef3f7 81px, transparent 81px),
    linear-gradient(180deg, var(--blue-50), #ffffff 70%);
  background-repeat: no-repeat;
  background-size: 100% 120px, 100% 100%;
  background-position: 22px 30px, 0 0;
}
.book-pages-1 { transform: rotate(1deg) translate(6px, 6px); z-index: 1; }
.book-pages-2 { transform: rotate(3deg) translate(14px, 12px); z-index: 0; }

/* badges floating around */
.float-badge {
  position: absolute;
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  color: var(--blue-800);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
}
.float-badge.fb1 { top: 30px; right: 30px; }
.float-badge.fb2 { bottom: 60px; left: -10px; }

/* ── Section base ─────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section.gray { background: var(--paper-2); }
.section.aqua { background: var(--teal-200); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-eyebrow {
  text-align: center;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--teal-700);
  margin-bottom: 6px;
}
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--ink-900);
  margin: 0 0 8px;
  line-height: 1.3;
}
.section-deck {
  text-align: center;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-700);
  margin: 0 auto 44px;
  max-width: 640px;
}

/* ── "Are you this person?" ─────────────────────────────────── */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}
.persona-card {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.persona-card .check {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-800);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 14px;
  margin-top: 2px;
}
.persona-card .text { font-size: 14.5px; line-height: 1.75; color: var(--ink-900); font-weight: 600; }
.persona-foot {
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 800;
  color: var(--blue-800);
}
.persona-foot .em { background-image: linear-gradient(180deg, transparent 65%, #fff080 65%); padding: 0 4px; }

/* ── Contents preview ─────────────────────────────────────────── */
.contents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}
.chapter-tile {
  background: #fff;
  border-radius: 14px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--ink-200);
}
.chapter-tile .ct-num {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 900;
  color: var(--teal-700);
  line-height: 1;
}
.chapter-tile .ct-num .small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--teal-500);
}
.chapter-tile .ct-title { font-size: 14.5px; font-weight: 800; color: var(--ink-900); line-height: 1.45; margin: 0 0 6px; }
.chapter-tile .ct-desc { font-size: 13px; color: var(--ink-500); line-height: 1.7; }

/* ── Inside preview ─────────────────────────────────────────── */
.inside-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.inside-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.inside-card .img {
  aspect-ratio: 16/10;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.inside-card .img.b1 { background: linear-gradient(170deg, #aeedf5 0%, #ffffff 100%); }
.inside-card .img.b2 { background: linear-gradient(170deg, #e5f1fb 0%, #ffffff 100%); }
.inside-card .img.b3 { background: linear-gradient(170deg, var(--teal-200) 0%, #ffffff 100%); }
.inside-card .body { padding: 18px 20px 22px; }
.inside-card .label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--teal-700);
  margin-bottom: 4px;
}
.inside-card .ttl { font-weight: 800; font-size: 15px; color: var(--ink-900); margin: 0 0 8px; line-height: 1.45; }
.inside-card .desc { font-size: 12.5px; color: var(--ink-500); line-height: 1.7; }

/* Inside preview mock content */
.mock-checklist {
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: var(--shadow-xs);
  width: 100%;
}
.mock-checklist .mock-row {
  display: flex; gap: 8px; align-items: center; padding: 4px 0;
  font-size: 11px; color: var(--ink-700);
}
.mock-checklist .mock-row::before {
  content: ""; width: 11px; height: 11px;
  border: 1.5px solid var(--blue-800); border-radius: 2px; background: #fff;
  flex: 0 0 11px;
}
.mock-checklist .mock-head { font-weight: 800; color: var(--blue-800); font-size: 11px; margin-bottom: 4px; }
.mock-table {
  background: #fff; border-radius: 8px; overflow: hidden; width: 100%; font-size: 10px;
  box-shadow: var(--shadow-xs);
}
.mock-table .h { background: var(--blue-800); color: #fff; padding: 6px 8px; display: flex; font-weight: 800; }
.mock-table .h span { flex: 1; text-align: center; }
.mock-table .r { padding: 6px 8px; display: flex; border-top: 1px solid var(--ink-200); }
.mock-table .r span { flex: 1; text-align: center; font-weight: 600; color: var(--ink-700); }
.mock-table .r .good { color: var(--blue-600); font-weight: 900; }
.mock-quote {
  background: #fff; border: 2px solid var(--cyan-300); border-radius: 10px;
  padding: 10px 12px 10px 28px; font-size: 11px; line-height: 1.6;
  color: var(--ink-700); position: relative; width: 100%;
}
.mock-quote::before {
  content: "“"; position: absolute; left: 6px; top: -4px;
  font-size: 28px; font-family: serif; color: var(--cyan-300); line-height: 1;
}
.mock-quote .who { font-weight: 700; color: var(--blue-800); font-size: 9.5px; margin-top: 4px; }

/* ── Form section ─────────────────────────────────────────────── */
.lp-form-wrap {
  background: linear-gradient(170deg, #aeedf5 0%, #ffffff 80%);
  padding: 80px 0 100px;
  position: relative;
}
.lp-form-grid {
  max-width: 1080px; margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.form-left h2 {
  font-size: 30px;
  font-weight: 900;
  color: var(--blue-800);
  margin: 0 0 16px;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.form-left .benefits {
  list-style: none;
  padding: 0; margin: 18px 0 0;
  display: grid; gap: 10px;
}
.form-left .benefits li {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
  padding-left: 26px;
  position: relative;
  line-height: 1.6;
}
.form-left .benefits li::before {
  content: "✓";
  position: absolute; left: 0; top: 1px;
  width: 18px; height: 18px;
  background: var(--blue-800); color: #fff;
  border-radius: 50%;
  font-size: 11px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.form-left .pages-info {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink-700);
  font-weight: 600;
  box-shadow: var(--shadow-xs);
}
.form-left .pages-info b { color: var(--blue-800); font-weight: 800; font-family: var(--font-en); font-size: 14px; }

.form-card {
  background: #fff;
  border-radius: 18px;
  padding: 36px 38px 32px;
  box-shadow: 0 20px 50px rgba(0, 60, 120, 0.18);
  position: relative;
}
.form-card::before {
  content: "無料";
  position: absolute;
  top: -16px; right: 28px;
  background: var(--red-500); color: #fff;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 16px;
  padding: 8px 22px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
}
.form-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-800);
  margin: 0 0 6px;
}
.form-card .form-sub { font-size: 13px; color: var(--ink-500); margin: 0 0 22px; line-height: 1.7; }

.field { margin-bottom: 14px; }
.field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 6px;
}
.field label .req {
  background: var(--red-500); color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px; border-radius: 3px;
}
.field label .opt {
  background: var(--ink-300); color: var(--ink-700);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px; border-radius: 3px;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid var(--ink-200);
  border-radius: 10px;
  background: var(--paper-2);
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink-900);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  background: #fff;
}
.field .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-700);
  margin: 12px 0 18px;
  line-height: 1.6;
}
.privacy input { margin-top: 3px; flex: 0 0 16px; width: 16px; height: 16px; accent-color: var(--blue-800); }
.privacy a { color: var(--blue-600); }

.btn-submit {
  width: 100%;
  background: var(--grad-cta-warm);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 18px 24px;
  font-size: 17px;
  font-weight: 900;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-cta);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255, 95, 100, 0.32); }
.btn-submit:active { transform: translateY(0); }

.form-foot {
  font-size: 11px;
  color: var(--ink-500);
  text-align: center;
  margin-top: 14px;
  line-height: 1.7;
}

/* Download grid (thank-you state) */
.dl-grid { display: grid; gap: 10px; margin: 22px 0 8px; }
.dl-btn {
  display: grid;
  grid-template-columns: 42px 1fr 18px;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1.5px solid var(--ink-200);
  border-radius: 14px;
  padding: 14px 18px;
  text-decoration: none;
  color: var(--ink-900);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.dl-btn:hover { border-color: var(--blue-600); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.dl-btn.primary { background: var(--grad-btn-primary); color: #fff; border-color: transparent; box-shadow: var(--shadow-md); }
.dl-btn.primary:hover { box-shadow: var(--shadow-lg); }
.dl-btn .dl-ic {
  font-size: 24px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex; align-items: center; justify-content: center;
}
.dl-btn.primary .dl-ic { background: rgba(255,255,255,0.2); }
.dl-btn .dl-meta { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.dl-btn .dl-t { font-weight: 800; font-size: 14.5px; line-height: 1.35; }
.dl-btn .dl-d { font-size: 11.5px; color: var(--ink-500); line-height: 1.5; }
.dl-btn.primary .dl-d { color: rgba(255,255,255,0.85); }
.dl-btn .dl-arr { font-size: 18px; font-weight: 900; color: var(--blue-600); justify-self: end; }
.dl-btn.primary .dl-arr { color: #fff; }

/* Thank-you state */
.thank-you {
  text-align: center;
  padding: 40px 20px 24px;
  display: none;
}
.thank-you.show { display: block; }
.thank-you .ty-ic {
  width: 72px; height: 72px;
  background: var(--blue-800);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 36px; font-weight: 900;
  margin-bottom: 18px;
}
.thank-you h3 { color: var(--blue-800); font-size: 24px; margin: 0 0 12px; }
.thank-you p { font-size: 14px; color: var(--ink-700); line-height: 1.8; margin: 0 0 22px; }
.thank-you .ty-cta {
  display: inline-flex;
  background: var(--grad-btn-primary);
  color: #fff;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  box-shadow: var(--shadow-md);
  gap: 8px;
  align-items: center;
}
.form-active.hidden { display: none; }

/* ── Trust strip ──────────────────────────────────────────────── */
.trust-strip {
  background: var(--blue-800);
  color: #fff;
  padding: 36px 24px;
  text-align: center;
}
.trust-grid {
  max-width: 1080px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.trust-stat .v {
  font-family: var(--font-en);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}
.trust-stat .v .unit { font-size: 18px; margin-left: 2px; font-weight: 800; }
.trust-stat .l { font-size: 12px; opacity: 0.9; margin-top: 8px; }

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}
.testimonial {
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px 22px;
  box-shadow: var(--shadow-sm);
}
.testimonial .stars { color: #ffba2a; font-size: 14px; margin-bottom: 8px; }
.testimonial .quote-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-900);
  font-weight: 500;
  margin: 0 0 14px;
}
.testimonial .who-row {
  display: flex; gap: 10px; align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--ink-200);
}
.testimonial .who-row .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: var(--blue-800);
  font-size: 14px;
}
.testimonial .who-row .meta { font-size: 12px; color: var(--ink-700); line-height: 1.45; }
.testimonial .who-row .meta b { color: var(--ink-900); display: block; font-weight: 800; font-size: 13px; }

/* ── FAQ ──────────────────────────────────────────────────────── */
.lp-faq { max-width: 720px; margin: 0 auto; }
.lp-faq .item { border-bottom: 1px solid var(--ink-200); }
.lp-faq .q {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 4px; cursor: pointer;
  font-weight: 700; color: var(--ink-900); font-size: 15px;
}
.lp-faq .q .qm {
  width: 30px; height: 30px; border-radius: 999px;
  border: 2px solid var(--blue-600); color: var(--blue-600);
  font-weight: 900; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 30px;
  font-family: var(--font-en);
}
.lp-faq .q .qt { flex: 1; }
.lp-faq .q .car { color: var(--blue-600); transition: transform .2s ease; font-size: 16px; }
.lp-faq .item.open .q .car { transform: rotate(180deg); }
.lp-faq .a {
  display: none;
  padding: 0 10px 18px 58px;
  font-size: 13.5px;
  color: var(--ink-700);
  line-height: 1.85;
}
.lp-faq .item.open .a { display: block; }

/* ── Footer ─────────────────────────────────────────────────── */
.lp-footer {
  background: #fff;
  border-top: 1px solid var(--ink-200);
  padding: 32px 24px 24px;
}
.lp-footer-in {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.lp-footer img { height: 36px; }
.lp-footer .footer-meta { font-size: 12px; color: var(--ink-500); line-height: 1.8; }
.lp-footer .footer-links { display: flex; gap: 18px; font-size: 12px; }
.lp-footer .footer-links a { color: var(--ink-500); text-decoration: none; }
.lp-footer .footer-links a:hover { color: var(--blue-600); }
.lp-footer-copy {
  background: #66676a;
  color: #fff;
  text-align: center;
  padding: 16px;
  font-size: 12px;
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE  —  tablet (≤960px) and phone (≤600px)
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  /* Hero → stacked, text first then book */
  .lp-hero { padding: 44px 0 60px; }
  .lp-hero-in {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .lp-hero-left .eyebrow-pill { margin-left: auto; margin-right: auto; }
  .lp-hero h1 { font-size: 40px; }
  .lp-hero .sub { font-size: 18px; }
  .lp-hero .desc { max-width: 560px; margin-left: auto; margin-right: auto; }
  .lp-hero .hero-cta { align-self: center; }
  .book-mock { height: 420px; }

  /* Grids collapse a step */
  .inside-grid { grid-template-columns: 1fr; max-width: 460px; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 560px; }
  .contents-grid { max-width: 640px; }

  /* Form → stacked */
  .lp-form-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-left { text-align: center; }
  .form-left .benefits { max-width: 420px; margin-left: auto; margin-right: auto; text-align: left; }

  .section { padding: 60px 0; }
  .lp-form-wrap { padding: 56px 0 64px; }
}

@media (max-width: 600px) {
  /* Header */
  .site-hdr-in { padding: 10px 16px; }
  .site-hdr-logo { height: 30px; }
  .site-hdr a.scroll-cta { padding: 9px 16px; font-size: 12px; }

  /* Hero */
  .lp-hero { padding: 32px 0 44px; }
  .lp-hero-in { padding: 0 18px; gap: 22px; }
  .lp-hero h1 { font-size: 31px; line-height: 1.18; }
  .lp-hero .sub { font-size: 16px; }
  .lp-hero .desc { font-size: 14px; }
  .lp-hero .hero-cta-btn { font-size: 15px; padding: 16px 24px 14px; }
  .lp-hero .hero-cta-micro { font-size: 11.5px; padding: 4px 13px; }

  /* Book mock scaled to fit narrow screens */
  .book-mock { height: 360px; transform: scale(0.82); transform-origin: center; }
  .float-badge { font-size: 11px; padding: 7px 12px; }
  .float-badge.fb1 { right: 0; }
  .float-badge.fb2 { left: 0; }

  /* Sections */
  .section { padding: 48px 0; }
  .container { padding: 0 18px; }
  .section-title { font-size: 24px; }
  .section-deck { font-size: 14px; margin-bottom: 32px; }
  .section-eyebrow { font-size: 12px; letter-spacing: 0.14em; }

  /* Persona / contents → single column */
  .persona-grid { grid-template-columns: 1fr; gap: 12px; }
  .persona-card { padding: 16px 18px; }
  .persona-foot { font-size: 15px; }
  .contents-grid { grid-template-columns: 1fr; gap: 12px; }
  .chapter-tile { padding: 18px 20px; grid-template-columns: 46px 1fr; gap: 12px; }
  .chapter-tile .ct-num { font-size: 24px; }
  .chapter-tile .ct-title { font-size: 15px; }

  /* Inside preview */
  .inside-grid { gap: 14px; }

  /* Trust strip → 2×2 */
  .trust-strip { padding: 28px 18px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; }
  .trust-stat .v { font-size: 30px; }

  /* Form */
  .lp-form-wrap { padding: 44px 0 52px; }
  .lp-form-grid { padding: 0 18px; }
  .form-left h2 { font-size: 24px; }
  .form-card { padding: 28px 22px 26px; border-radius: 16px; }
  .form-card h3 { font-size: 20px; }
  .field .row2 { grid-template-columns: 1fr; gap: 12px; }
  .btn-submit { font-size: 16px; padding: 16px 20px; }
  .dl-btn { grid-template-columns: 38px 1fr 16px; gap: 12px; padding: 13px 15px; }
  .dl-btn .dl-t { font-size: 13.5px; }
  .dl-btn .dl-d { font-size: 11px; }

  /* FAQ */
  .lp-faq .q { font-size: 14px; gap: 12px; }
  .lp-faq .a { padding: 0 6px 16px 46px; }

  /* Footer → stacked, centered */
  .lp-footer { padding: 28px 18px 20px; }
  .lp-footer-in { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
  .lp-footer .footer-meta { font-size: 11.5px; }
  .lp-footer .footer-links { flex-wrap: wrap; justify-content: center; gap: 10px 16px; }
}
