/* ============================================================
   iTTTi Global Education — CVR-optimized LP
   ============================================================ */
:root {
  --blue: #1f63c4;
  --blue-l: #4a8ee0;
  --blue-bg: #eaf2fc;
  --green: #5fb24a;
  --green-bg: #eaf6e3;
  --orange: #f0a23a;
  --orange-bg: #fdf1de;
  --ink: #0f1a33;
  --body: #3b4660;
  --sub: #5b6478;
  --line: #e5e9f0;
  --bg-soft: #f6f9fd;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;
  --shadow-sm: 0 4px 12px rgba(15, 26, 51, 0.06);
  --shadow-md: 0 10px 28px rgba(15, 26, 51, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 26, 51, 0.14);
  --font-jp: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  --font-en: "Plus Jakarta Sans", "Poppins", sans-serif;
  --font-display: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 1.75;
  color: var(--body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, p { margin: 0; }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 24px;
  border-radius: var(--r-pill);
  font-weight: 700; font-size: 15px;
  transition: transform .15s, box-shadow .15s, background .15s;
  white-space: nowrap; cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(31, 99, 196, .35); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--xl { padding: 20px 40px; font-size: 17px; }

/* === Section helpers === */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 26px; line-height: 1.4; font-weight: 900;
  color: var(--ink); letter-spacing: 0.01em;
}
.section-title em { font-style: normal; }
.section-title__sub {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--sub);
  margin-top: 10px;
}
.section-title__sub s { color: #aaa; }

/* ============================================================
   TopBar
   ============================================================ */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; max-width: 1200px; margin: 0 auto;
}
.topbar__brand { display: flex; align-items: center; gap: 10px; flex: 1; }
.topbar__brand img { width: 36px; height: 36px; object-fit: contain; }
.topbar__name { display: block; font-family: var(--font-en); font-weight: 800; font-size: 15px; color: var(--blue); line-height: 1; }
.topbar__sub { display: block; font-size: 10px; color: var(--sub); margin-top: 2px; }
.topbar__right { display: flex; align-items: center; gap: 8px; }
.topbar__lang {
  display: inline-flex; border: 1px solid var(--line);
  border-radius: var(--r-pill); overflow: hidden; background: #fff;
}
.topbar__lang button {
  padding: 5px 10px; font-size: 11px; font-weight: 700; color: var(--sub);
}
.topbar__lang button.is-active { background: var(--ink); color: #fff; }
.topbar__cta {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--blue); color: #fff;
  padding: 9px 14px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700;
}
.persona-tabs {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 1200px; margin: 0 auto;
  padding: 0 12px 8px;
  gap: 8px;
}
.persona-tab {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  background: #fff;
  font-size: 12px; font-weight: 700;
  color: var(--sub);
  transition: all .15s;
}
.persona-tab.is-on { border-color: var(--ink); background: var(--ink); color: #fff; }
.persona-tab__dot { width: 8px; height: 8px; border-radius: 50%; }
.persona-tab__hint { margin-left: auto; font-size: 10px; opacity: .7; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 24px 16px 0;
  background:
    radial-gradient(800px 400px at 100% -10%, var(--blue-bg) 0%, transparent 60%),
    radial-gradient(600px 300px at -10% 30%, var(--orange-bg) 0%, transparent 60%),
    #fff;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(31, 99, 196, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 80%);
}
.hero__grid {
  position: relative;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 28px; padding: 16px 0 32px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.hero__dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.hero__title {
  font-family: var(--font-display);
  font-size: 32px; line-height: 1.35; font-weight: 900;
  letter-spacing: 0.005em;
  color: var(--ink);
}
.hero__hl em { font-style: normal; display: inline; }
.hero__lead {
  margin-top: 18px;
  font-size: 14.5px; line-height: 1.85;
  color: var(--sub);
}
.hero__bullets {
  margin-top: 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.hero__bullets li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 12px 16px; background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 13.5px; font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.hero__check { font-weight: 800; font-size: 18px; line-height: 1.4; }
.hero__cta { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.hero__cta .btn { width: 100%; }
.hero__remain {
  margin-top: 14px; font-size: 12px; color: var(--orange);
  font-weight: 700; display: flex; align-items: center; gap: 6px;
}
.hero__remain-flame { animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero__art { position: relative; }
.hero__photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; top: 16px; right: 16px;
  background: #fff; border-radius: var(--r-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.hero__badge-num { font-family: var(--font-en); font-weight: 800; font-size: 22px; color: var(--ink); line-height: 1; }
.hero__badge-stars { color: var(--orange); font-size: 10px; letter-spacing: 1px; margin-top: 2px; }
.hero__badge-sub { font-size: 10px; color: var(--sub); margin-top: 2px; }
.hero__tag {
  position: absolute; background: #fff;
  border-radius: var(--r-pill);
  padding: 8px 14px;
  font-size: 11px;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  display: flex; align-items: baseline; gap: 6px;
}
.hero__tag strong { font-family: var(--font-en); font-size: 16px; font-weight: 800; }
.hero__tag--blue { bottom: 80px; left: -8px; color: var(--blue); }
.hero__tag--blue strong { color: var(--blue); }
.hero__tag--green { bottom: 20px; left: 30%; color: var(--green); }
.hero__tag--green strong { color: var(--green); }

/* === Live ticker === */
.ticker {
  margin: 0 auto;
  max-width: 1200px;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 12px; color: var(--sub);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.ticker__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ef4444; flex-shrink: 0;
  box-shadow: 0 0 0 0 #ef444466;
  animation: pulseRing 1.6s infinite;
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 #ef444466; }
  100% { box-shadow: 0 0 0 8px transparent; }
}
.ticker__label {
  font-family: var(--font-en); font-weight: 800; font-size: 10px;
  color: #ef4444; letter-spacing: 0.1em;
}
.ticker__msg { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; animation: tickerIn .5s ease; }
@keyframes tickerIn { from { opacity: 0; transform: translateY(6px); } }
.ticker__msg strong { color: var(--ink); }
.ticker__t { color: #999; margin-left: 6px; font-size: 11px; }

/* ============================================================
   Stats bar (marquee)
   ============================================================ */
.statsbar {
  background: var(--ink);
  overflow: hidden;
  padding: 18px 0;
  margin-top: 16px;
}
.statsbar__track {
  display: flex; gap: 48px;
  animation: scroll 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.statsbar__item {
  display: flex; align-items: baseline; gap: 10px;
  color: #fff;
}
.statsbar__n {
  font-family: var(--font-en); font-weight: 800; font-size: 22px;
  color: #fff;
  background: linear-gradient(90deg, var(--orange), #ffd47e);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.statsbar__l { font-size: 12px; color: #cfd5e3; }

/* ============================================================
   Worry
   ============================================================ */
.worry {
  padding: 64px 16px 32px;
  background: linear-gradient(180deg, #fff 0%, #fffaf2 100%);
}
.worry__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.worry__list {
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.worry__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #f5dcc0;
  border-left: 4px solid var(--orange);
  border-radius: var(--r-md);
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.worry__ic {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  color: var(--blue, #1f63c4); background: var(--blueBg, #eaf2fc);
}
.worry__item p { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.55; }
.worry__check {
  font-size: 10px; font-weight: 800;
  padding: 4px 10px;
  background: var(--green-bg); color: var(--green);
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.worry-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 28px;
}
@media (min-width: 640px) { .worry-groups { grid-template-columns: 1fr 1fr; } }
.worry-group__label {
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 14px;
  border: 2px solid;
  border-radius: var(--r-pill);
  display: inline-block;
  margin-bottom: 12px;
}
.worry__bridge {
  margin-top: 28px;
  font-size: 14px; font-weight: 700;
  color: var(--ink);
}
.worry__bridge span {
  display: inline-block;
  padding: 10px 22px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-pill);
  animation: bob 1.6s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ============================================================
   Reasons
   ============================================================ */
.reasons {
  padding: 64px 16px 40px;
  background: #fff;
}
.reasons__inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.reasons__list {
  margin-top: 36px;
  display: grid; grid-template-columns: 1fr;
  gap: 16px;
}
.reason {
  position: relative;
  padding: 24px 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  text-align: left;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.reason::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--c);
}
.reason__top { display: flex; align-items: center; gap: 12px; }
.reason__n {
  font-family: var(--font-en); font-weight: 800; font-size: 28px;
  color: var(--c);
  line-height: 1;
}
.reason__eyebrow {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--c);
  padding: 4px 10px;
  background: var(--cbg);
  border-radius: var(--r-pill);
}
.reason__icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 14px 0 4px;
  color: var(--c); background: var(--cbg);
}
.reason__title {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 800; line-height: 1.45;
  color: var(--ink);
  margin-top: 8px;
}
.reason__body {
  margin-top: 10px;
  font-size: 13.5px; line-height: 1.8;
  color: var(--sub);
}
.reason__stat {
  margin-top: 18px;
  padding: 12px 14px;
  background: var(--cbg);
  border-radius: var(--r-md);
  display: flex; align-items: baseline; gap: 10px;
}
.reason__stat-n {
  font-family: var(--font-en); font-weight: 800; font-size: 26px;
  color: var(--c); line-height: 1;
}
.reason__stat-l { font-size: 12px; font-weight: 700; color: var(--ink); }

/* ============================================================
   Quiz
   ============================================================ */
.quiz {
  padding: 56px 16px;
  background: linear-gradient(135deg, var(--ink) 0%, #1c2647 60%, #1f63c4 130%);
  color: #fff;
}
.quiz__inner {
  max-width: 760px; margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-xl);
  padding: 28px 22px;
  backdrop-filter: blur(6px);
}
.quiz__head {
  display: flex; flex-direction: column; gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.quiz__eyebrow {
  font-family: var(--font-en); font-weight: 800;
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--orange);
}
.quiz__title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800; line-height: 1.5;
  color: #fff;
  margin-top: 6px;
}
.quiz__progress {
  position: relative; height: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--r-pill); overflow: hidden;
}
.quiz__progress-bar {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--orange);
  transition: width .4s cubic-bezier(.2,.8,.2,1);
}
.quiz__progress-txt {
  position: relative; z-index: 1;
  display: block; text-align: center;
  font-family: var(--font-en); font-weight: 700; font-size: 12px;
  line-height: 30px; color: #fff;
}
.quiz__card { margin-top: 24px; }
.quiz__q {
  font-size: 18px; font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.quiz__opts { display: flex; flex-direction: column; gap: 10px; }
.quiz__opt {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  color: #fff;
  font-size: 14px; font-weight: 600; text-align: left;
  transition: all .15s;
}
.quiz__opt:hover {
  background: #fff; color: var(--ink);
  border-color: var(--orange);
  transform: translateX(4px);
}
.quiz__opt:hover .quiz__opt-k { background: var(--orange); }
.quiz__opt-k {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-weight: 800; font-size: 13px;
  transition: background .15s;
}
.quiz__opt-arrow { margin-left: auto; font-size: 18px; opacity: .5; }
.quiz__opt:hover .quiz__opt-arrow { opacity: 1; }
.quiz__back {
  margin-top: 14px; padding: 6px 12px;
  font-size: 12px; color: rgba(255, 255, 255, 0.7);
}

/* Result */
.quiz__result {
  position: relative;
  margin-top: 24px;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px 22px;
  color: var(--ink);
  text-align: center;
  overflow: hidden;
}
.quiz__result-confetti {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.quiz__result-confetti span {
  position: absolute; width: 8px; height: 8px; border-radius: 2px;
  animation: confetti 2.2s ease-out forwards;
}
.quiz__result-confetti span:nth-child(1) { top: 10%; left: 12%; animation-delay: 0s; }
.quiz__result-confetti span:nth-child(2) { top: 18%; left: 80%; animation-delay: .2s; }
.quiz__result-confetti span:nth-child(3) { top: 8%; left: 50%; animation-delay: .4s; }
.quiz__result-confetti span:nth-child(4) { top: 20%; left: 30%; animation-delay: .1s; }
.quiz__result-confetti span:nth-child(5) { top: 14%; left: 65%; animation-delay: .3s; }
@keyframes confetti {
  0% { transform: translateY(-30px) rotate(0); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(140px) rotate(540deg); opacity: 0; }
}
.quiz__result-badge {
  display: inline-block;
  padding: 5px 14px; border-radius: var(--r-pill);
  font-family: var(--font-en); font-weight: 800; font-size: 11px;
  letter-spacing: 0.1em;
  color: #fff;
}
.quiz__result-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800; line-height: 1.4;
  margin-top: 14px;
}
.quiz__result-note { margin-top: 14px; font-size: 13.5px; color: var(--sub); line-height: 1.8; }
.quiz__result-price { margin-top: 16px; font-size: 14px; }
.quiz__result-price strong { font-family: var(--font-en); font-size: 22px; color: var(--ink); }
.quiz__result-cta {
  margin-top: 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.quiz__result-cta .btn { width: 100%; }

/* ============================================================
   Reviews
   ============================================================ */
.reviews {
  padding: 64px 16px;
  background: var(--bg-soft);
}
.reviews__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.reviews__rating {
  display: inline-flex; align-items: baseline; gap: 8px;
  margin-top: 14px; padding: 8px 18px;
  background: #fff; border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}
.reviews__rating-n { font-family: var(--font-en); font-weight: 800; font-size: 22px; color: var(--ink); }
.reviews__rating-stars { color: var(--orange); letter-spacing: 1px; }
.reviews__rating-l { font-size: 12px; color: var(--sub); }
.reviews__stage {
  position: relative;
  margin-top: 28px;
  min-height: 320px;
}
.review {
  position: absolute; inset: 0;
  background: #fff;
  border-radius: var(--r-lg);
  border-top: 4px solid var(--c);
  padding: 28px 20px 26px;
  text-align: left;
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateX(20px);
  transition: opacity .5s, transform .5s;
  pointer-events: none;
}
.review.is-on { opacity: 1; transform: translateX(0); pointer-events: auto; }
.review__stars { color: var(--orange); letter-spacing: 2px; font-size: 14px; }
.review__t {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 19px; font-weight: 800; line-height: 1.5;
  color: var(--ink);
}
.review__body {
  margin-top: 12px;
  font-size: 13.5px; line-height: 1.85;
  color: var(--sub);
}
.review__who {
  margin-top: 18px;
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.review__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-en); font-weight: 800;
}
.review__who strong { display: block; color: var(--ink); font-size: 13px; }
.review__who span { display: block; color: var(--sub); font-size: 11px; }
.reviews__dots {
  margin-top: 22px;
  display: flex; justify-content: center; gap: 8px;
}
.reviews__dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: #d6dde7;
}
.reviews__dots button.is-on { background: var(--ink); width: 24px; border-radius: 4px; }

/* ============================================================
   Pricing
   ============================================================ */
.pricing {
  padding: 64px 16px;
  background: #fff;
}
.pricing__inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.pricing__list {
  margin-top: 32px;
  display: grid; grid-template-columns: 1fr;
  gap: 14px;
}
.plan {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 20px 22px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan--featured {
  border: 2px solid var(--c);
  background: linear-gradient(180deg, #fff 0%, #fafffa 100%);
  box-shadow: 0 16px 40px rgba(95, 178, 74, 0.18);
}
.plan__badge {
  position: absolute; top: -12px; left: 20px;
  background: var(--ink); color: #fff;
  padding: 5px 14px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700;
}
.plan__tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  color: #fff;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.1em;
}
.plan__name {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800; line-height: 1.4;
  color: var(--ink);
}
.plan__dur { font-size: 12px; color: var(--sub); margin-top: 4px; font-family: var(--font-en); }
.plan__desc { font-size: 13px; color: var(--body); margin-top: 8px; }
.plan__price {
  margin-top: 18px;
  display: flex; align-items: baseline; gap: 2px;
  color: var(--c);
  border-bottom: 1px dashed var(--line);
  padding-bottom: 14px;
}
.plan__price-c { font-family: var(--font-en); font-size: 14px; font-weight: 700; }
.plan__price-n { font-family: var(--font-en); font-size: 40px; font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.plan__price-s { font-family: var(--font-en); font-size: 13px; color: var(--sub); font-weight: 600; margin-left: 4px; }
.plan__feats {
  margin-top: 14px;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px;
  color: var(--body);
}
.plan__feats li { display: flex; gap: 8px; }
.plan__feats span { font-weight: 800; }
.plan__cta {
  display: block;
  margin-top: 20px;
  padding: 12px 0;
  text-align: center;
  border: 1.5px solid;
  border-radius: var(--r-pill);
  font-weight: 700; font-size: 13px;
  transition: all .15s;
}
.plan__cta:hover { background: var(--c); color: #fff !important; }
.pricing__note { margin-top: 24px; font-size: 12px; color: var(--sub); }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 64px 16px;
  background: var(--bg-soft);
}
.faq__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.faq__list { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; text-align: left; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq__item.is-open { box-shadow: var(--shadow-md); border-color: var(--blue); }
.faq__q {
  width: 100%;
  display: grid;
  grid-template-columns: 32px 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 18px 18px;
  text-align: left;
}
.faq__q-mark {
  width: 28px; height: 28px;
  background: var(--blue); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-weight: 800; font-size: 13px;
}
.faq__q-txt { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.5; }
.faq__q-toggle { font-size: 22px; color: var(--blue); font-weight: 600; }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  display: grid; grid-template-columns: 32px 1fr; gap: 12px;
  padding: 0 18px;
}
.faq__item.is-open .faq__a { max-height: 400px; padding: 0 18px 20px; }
.faq__a-mark {
  width: 28px; height: 28px;
  background: var(--orange-bg); color: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-weight: 800; font-size: 13px;
}
.faq__a p { font-size: 13.5px; color: var(--sub); line-height: 1.85; }

/* ============================================================
   Booking
   ============================================================ */
.book {
  padding: 64px 16px;
  background:
    radial-gradient(800px 400px at 100% 0%, var(--orange-bg) 0%, transparent 50%),
    radial-gradient(600px 300px at 0% 100%, var(--blue-bg) 0%, transparent 50%),
    #fff;
}
.book__inner { max-width: 1200px; margin: 0 auto; }
.book__head { text-align: center; }
.book__title {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 900; line-height: 1.4;
  color: var(--ink);
  margin-top: 6px;
}
.book__title em { font-style: normal; padding: 0 6px; }
.book__title-sub {
  display: block; margin-top: 12px;
  font-size: 13px; font-weight: 600;
  color: var(--sub);
}

.countdown {
  margin: 18px auto 0;
  max-width: 460px;
  display: flex; flex-direction: column; gap: 8px;
  padding: 14px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-md);
  text-align: center;
}
.countdown__lbl { font-size: 11px; color: #ffd9a8; }
.countdown__time {
  display: flex; justify-content: center; gap: 14px;
  font-family: var(--font-en);
  font-size: 12px; color: #fff;
}
.countdown__time strong {
  font-size: 24px; font-weight: 800;
  margin-right: 2px;
}

.book__grid {
  margin-top: 28px;
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
.book__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-md);
}
.book__steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.book__step {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  position: relative;
}
.book__step::after {
  content: ""; position: absolute; top: 12px; left: 60%; width: 80%; height: 2px;
  background: var(--line);
  z-index: 0;
}
.book__step:last-child::after { display: none; }
.book__step.is-on::after { background: var(--orange); }
.book__step-n {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid var(--line);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-weight: 800; font-size: 12px;
  color: var(--sub);
  position: relative; z-index: 1;
}
.book__step.is-current .book__step-n { transform: scale(1.1); }
.book__step-l { font-size: 11px; font-weight: 700; color: var(--sub); }
.book__step.is-on .book__step-l { color: var(--ink); }

.book__panel { display: flex; flex-direction: column; gap: 12px; }
.book__lbl {
  font-size: 12px; font-weight: 800;
  color: var(--ink); margin-top: 8px;
  display: block;
}
.book__dates {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.book__date {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  padding: 10px 4px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  font-family: var(--font-en);
  transition: all .15s;
}
.book__date.is-on { border-color: var(--ink); background: var(--ink); color: #fff; }
.book__date-d { font-size: 10px; color: var(--sub); font-weight: 700; }
.book__date.is-on .book__date-d { color: #ffd9a8; }
.book__date-n { font-size: 20px; font-weight: 800; line-height: 1; }
.book__date-m { font-size: 10px; color: var(--sub); margin-top: 2px; }
.book__date.is-on .book__date-m { color: #cfd5e3; }
.book__date-hot {
  position: absolute; top: -7px; right: -3px;
  background: #ef4444; color: #fff;
  padding: 2px 6px; border-radius: var(--r-pill);
  font-size: 8px; font-weight: 800;
  font-family: var(--font-jp);
}
.book__slots {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.book__slot {
  padding: 10px 4px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  background: #fff;
  font-family: var(--font-en);
  font-size: 13px; font-weight: 700;
  transition: all .15s;
}
.book__slot.is-on { border-color: var(--ink); background: var(--ink); color: #fff; }
.book__modes { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.book__mode {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  font-size: 13px; font-weight: 700;
}
.book__mode.is-on { border-color: var(--ink); background: var(--ink); color: #fff; }
.book__mode-ic { font-size: 24px; }
.book__courses { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.book__course {
  padding: 14px 10px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  font-size: 13px; font-weight: 700;
  text-align: left;
}
.book__course.is-on { border-color: var(--ink); background: var(--ink); color: #fff; }
.book__select, .book__input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  font-size: 15px;
  background: #fff;
  font-family: inherit;
}
.book__select:focus, .book__input:focus { outline: none; border-color: var(--blue); }
.book__privacy { font-size: 11px; color: var(--sub); margin-top: 4px; }
.book__nav { display: flex; gap: 10px; margin-top: 14px; }
.book__back {
  padding: 14px 20px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 14px; font-weight: 700;
  background: #fff;
  color: var(--sub);
}
.book__next {
  flex: 1;
  padding: 16px 20px;
  border-radius: var(--r-pill);
  font-size: 15px; font-weight: 800;
  color: #fff;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform .15s, box-shadow .15s;
}
.book__next:disabled { opacity: 0.4; cursor: not-allowed; }
.book__next:not(:disabled):hover { transform: translateY(-2px); }
.book__next-sub { font-size: 11px; font-weight: 600; opacity: 0.8; }

.book__done { text-align: center; padding: 14px 0; }
.book__done-ring {
  width: 80px; height: 80px;
  border: 4px solid;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; font-weight: 800;
  animation: pop .5s ease;
}
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }
.book__done h3 { font-size: 22px; font-weight: 800; color: var(--ink); }
.book__done p { font-size: 13.5px; color: var(--sub); margin-top: 10px; line-height: 1.8; }
.book__done-detail {
  margin: 22px auto 0; max-width: 360px;
  background: var(--bg-soft);
  border-radius: var(--r-md);
  padding: 14px 18px;
}
.book__done-detail > div { display: flex; justify-content: space-between; padding: 8px 0; font-size: 13px; border-bottom: 1px dashed var(--line); }
.book__done-detail > div:last-child { border: 0; }
.book__done-detail span { color: var(--sub); }
.book__done-detail strong { color: var(--ink); }
.book__again {
  margin-top: 20px; padding: 10px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 13px; color: var(--sub);
}

.book__side { display: flex; flex-direction: column; gap: 14px; }
.book__perk, .book__assure, .book__contact {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 18px;
  box-shadow: var(--shadow-sm);
}
.book__perk { position: relative; border: 2px dashed var(--orange); background: #fffaf0; }
.book__perk-tag {
  position: absolute; top: -10px; left: 16px;
  background: var(--orange); color: #fff;
  padding: 3px 10px; border-radius: var(--r-pill);
  font-family: var(--font-en); font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
}
.book__perk h4, .book__assure h4 {
  font-size: 14px; font-weight: 800; color: var(--ink); margin-bottom: 12px;
}
.book__perk ul, .book__assure ul, .book__contact { display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--body); }
.book__perk li, .book__assure li { line-height: 1.6; }
.book__perk s { color: #aaa; }
.book__contact p { font-size: 12px; color: var(--sub); margin-bottom: 6px; }
.book__line, .book__tel {
  display: block;
  padding: 12px 14px;
  border-radius: var(--r-md);
  background: var(--green); color: #fff;
  font-weight: 700; font-size: 13px;
  text-align: center;
}
.book__tel { background: var(--ink); }

/* ============================================================
   Closing band
   ============================================================ */
.closing { padding: 80px 16px; text-align: center; }
.closing__inner { max-width: 700px; margin: 0 auto; }
.closing__title {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 900; line-height: 1.4;
  color: var(--ink);
  margin-top: 10px;
}
.closing__lead { margin: 18px auto; font-size: 14px; line-height: 1.85; color: var(--sub); }
.closing__small { margin-top: 14px; font-size: 11px; color: var(--sub); }

/* ============================================================
   Sticky bottom CTA
   ============================================================ */
.sticky {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 24px rgba(15, 26, 51, 0.10);
  animation: slideUp .3s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } }
.sticky__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
}
.sticky__msg { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.sticky__pulse {
  width: 10px; height: 10px; border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.4s ease-in-out infinite;
}
.sticky__msg strong { display: block; font-size: 12.5px; font-weight: 800; color: var(--ink); line-height: 1.3; }
.sticky__msg span { display: block; font-size: 10.5px; color: var(--sub); }
.sticky__cta {
  padding: 12px 18px;
  border-radius: var(--r-pill);
  background: var(--orange); color: #fff;
  font-size: 13px; font-weight: 800;
  white-space: nowrap;
}

/* ============================================================
   Footer
   ============================================================ */
.foot {
  background: var(--ink);
  color: #cfd5e3;
  padding: 48px 16px 100px;
}
.foot__inner { max-width: 1200px; margin: 0 auto; }
.foot__brand { display: flex; align-items: center; gap: 12px; padding-bottom: 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.10); }
.foot__brand img { width: 40px; height: 40px; background: #fff; padding: 4px; border-radius: 8px; }
.foot__brand strong { display: block; color: #fff; font-family: var(--font-en); font-size: 16px; }
.foot__brand span { display: block; font-size: 11px; color: #8a93a8; }
.foot__cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 28px 0;
}
.foot__cols h5 { color: #fff; font-size: 13px; margin-bottom: 10px; font-weight: 800; }
.foot__cols a { display: block; padding: 4px 0; font-size: 12px; color: #8a93a8; }
.foot__copy { padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.10); font-size: 11px; color: #6a7388; }

/* ============================================================
   Desktop (768+)
   ============================================================ */
@media (min-width: 768px) {
  body { font-size: 16px; }
  .topbar__inner { padding: 14px 32px; }
  .topbar__name { font-size: 17px; }
  .topbar__sub { font-size: 11px; }
  .topbar__cta { font-size: 13px; padding: 10px 18px; }
  .persona-tabs { padding: 0 32px 10px; max-width: 460px; }

  .section-title { font-size: 34px; }

  /* Hero */
  .hero { padding: 32px 32px 0; }
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; padding: 36px 0 48px; align-items: center; }
  .hero__title { font-size: 50px; line-height: 1.25; }
  .hero__lead { font-size: 16px; margin-top: 22px; }
  .hero__bullets li { font-size: 14.5px; }
  .hero__cta { flex-direction: row; }
  .hero__cta .btn { width: auto; }
  .hero__photo { aspect-ratio: 4 / 5; max-width: 480px; margin-left: auto; }
  .ticker { padding: 12px 22px; font-size: 13px; }

  /* Worry */
  .worry { padding: 96px 32px 48px; }
  .worry__item p { font-size: 15.5px; }

  /* Reasons */
  .reasons { padding: 96px 32px; }
  .reasons__list { grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
  .reason { padding: 32px 28px; }
  .reason__title { font-size: 21px; }

  /* Quiz */
  .quiz { padding: 88px 32px; }
  .quiz__inner { padding: 40px 36px; }
  .quiz__title { font-size: 28px; }
  .quiz__head { flex-direction: row; align-items: center; justify-content: space-between; }
  .quiz__progress { width: 200px; flex-shrink: 0; }
  .quiz__result-cta { flex-direction: row; justify-content: center; }
  .quiz__result-cta .btn { width: auto; }

  /* Reviews */
  .reviews { padding: 96px 32px; }
  .reviews__stage { min-height: 280px; }

  /* Pricing */
  .pricing { padding: 96px 32px; }
  .pricing__list { grid-template-columns: repeat(3, 1fr); gap: 20px; }

  /* FAQ */
  .faq { padding: 96px 32px; }

  /* Booking */
  .book { padding: 96px 32px; }
  .book__title { font-size: 38px; }
  .book__grid { grid-template-columns: 1.4fr 0.8fr; gap: 24px; margin-top: 40px; }
  .book__form { padding: 36px 32px; }
  .book__dates { grid-template-columns: repeat(7, 1fr); }

  /* Closing */
  .closing { padding: 120px 32px; }
  .closing__title { font-size: 44px; }

  /* Sticky stays only on mobile-ish viewports; keep it for tablet */
  .foot__cols { grid-template-columns: 1fr 1fr 1fr; }
  .foot { padding: 64px 32px 48px; }
}

@media (min-width: 1024px) {
  .hero__title { font-size: 58px; }
  .section-title { font-size: 38px; }
  .closing__title { font-size: 52px; }
  .sticky { display: none; }
}
