/* ============================================================
   Mika's Voice Lesson — LP専用スタイルシート
   このファイルは /service/voicelesson/ 内で完結し、
   コーポレートサイト(assets/)の影響を一切受けません。
   ============================================================ */

:root {
  /* --- Color tokens（PDFモックアップから確定） --- */
  --c-bg:            #FFFFFF;   /* 全体の背景（白） */
  --c-bg-alt:        #FAF9F7;   /* セクション背景の切替用（わずかに暖かい白） */
  --c-surface:       #FFFFFF;   /* カード等の地 */
  --c-purple:        #9E52FF;   /* メインアクセント：ビビッドパープル（CTA・番号・リンク） */
  --c-purple-deep:   #5B3A8C;   /* 見出し等で使う濃いパープル（#9E52FFより視認性を上げた派生色） */
  --c-purple-pale:   #F1E6FF;   /* パープルの淡色（背景・枠） */
  --c-olive:         #577C00;   /* 見出し・FAQアクセントのオリーブグリーン */
  --c-olive-pale:    #EEF3DE;   /* オリーブの淡色（背景用） */
  --c-gray:          #8A8782;   /* サブテキストのグレー */
  --c-gray-line:     #E2DFDA;   /* ボーダー線 */
  --c-ink:           #333333;  /* 本文の濃いインク色 */
  --c-terracotta:    #9E52FF;   /* CTAアクセント（パープルに統一） */
  --c-terracotta-dk: #8636E8;   /* CTAホバー */

  /* --- Type tokens --- */
  --f-display: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --f-serif-jp: 'Noto Serif JP', serif;
  --f-sans-jp: 'Noto Sans JP', sans-serif;

  /* --- Layout tokens --- */
  --header-h: 76px;
  --container-w: 1120px;
  --container-w-narrow: 760px;
  --radius-s: 4px;
  --radius-m: 8px;
}

/* ============================================================
   Reset & base
   ============================================================ */
.voicelesson-scope,
#top, .site-header, .site-footer {
  box-sizing: border-box;
}

* { box-sizing: inherit; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--f-sans-jp);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.85;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, ol, dl { margin: 0; padding: 0; }
li { list-style: none; }

h1, h2, h3, h4, p { margin: 0; }

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

.container--narrow {
  max-width: var(--container-w-narrow);
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ============================================================
   Typography helpers
   ============================================================ */
.eyebrow {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: none;
  color: var(--c-gray);
  margin-bottom: 10px;
}
.eyebrow.center { text-align: center; }

.section-title {
  font-family: var(--f-serif-jp);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 30px);
  color: var(--c-ink);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  line-height: 1.5;
}
.section-title.center { text-align: center; }

.lead.center { text-align: center; }   /* ← この行を追加 */

.lead {
  font-family: var(--f-serif-jp);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.9;
  color: var(--c-olive);
  margin-bottom: 36px;
}

.prose p {
  margin-bottom: 1.4em;
  color: var(--c-ink);
  font-size: 15.5px;
}
.prose p:last-child { margin-bottom: 0; }

.prose-emphasis {
  font-family: var(--f-serif-jp);
  font-weight: 500;
  font-size: 17px;
  color: var(--c-ink);
  border-top: 1px solid var(--c-gray-line);
  padding-top: 1.4em;
  margin-top: 1.6em !important;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 16px 38px;
  border-radius: 999px;
  font-family: var(--f-sans-jp);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  white-space: nowrap;   /* ← この行を追加 */
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn--cta {
  background: var(--c-purple);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(158, 82, 255, 0.5);
}
.btn--cta:hover,
.btn--cta:focus-visible {
  background: var(--c-terracotta-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(158, 82, 255, 0.55);
}
.btn--lg {
  padding: 18px 48px;
  font-size: 16px;
}
.trial-card .btn--cta {
  border-radius: var(--radius-m);
  flex-shrink: 0;
  padding: 16px 28px;
  font-size: 13.5px;
  line-height: 1.7;
}

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--c-purple);
  outline-offset: 3px;
}

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-gray-line);
}

.header-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-en {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 20px;
  color: var(--c-purple-deep);
}
.logo-jp {
  font-family: var(--f-serif-jp);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--c-gray);
}

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

.nav-link {
  font-size: 13.5px;
  color: var(--c-ink);
  white-space: nowrap;
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--c-purple);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-link:hover::after { transform: scaleX(1); }

.nav-link--cta {
  background: var(--c-terracotta);
  color: #fff;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 500;
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover { background: var(--c-terracotta-dk); }


.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-purple-deep);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(58, 55, 51, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 90;
}
.nav-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 66vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-image:
    linear-gradient(135deg, rgba(247,241,232,0.55) 0%, rgba(244,238,227,0.5) 40%, rgba(239,231,218,0.55) 100%),
    url('../images/texture-gold.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: var(--header-h);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-w);
  width: 100%;
  margin: 0 auto;
  padding: 64px 32px 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-text { min-width: 0; }

.hero-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  color: #6B6560;
  line-height: 1.55;
  max-width: 620px;
}
.hero-title-accent {
  color: var(--c-purple);
  font-style: italic;
}

.hero-sub {
  margin-top: 26px;
  font-family: var(--f-serif-jp);
  font-size: 15px;
  color: var(--c-ink);
  letter-spacing: 0.02em;
}

.hero-desc {
  display: inline-block;
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--c-ink);
  text-align: center;
  border: 1px solid var(--c-purple);
  border-radius: 999px;
  padding: 14px 28px;
  line-height: 1.7;
  background: rgba(255,255,255,0.5);
}

.hero-media img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-m);
  box-shadow: 0 20px 40px -16px rgba(91, 58, 140, 0.3);
}

.hero-cta-wrap {
  position: relative;
  z-index: 2;
  max-width: var(--container-w);
  width: 100%;
  margin: 0 auto;
  padding: 8px 32px 48px;
}
.hero-cta-wrap .btn { }

/* ============================================================
   Section base / alternating backgrounds
   ============================================================ */
.section {
  padding: 96px 0;
}
@media (max-width: 700px) {
  .section { padding: 68px 0; }
}

.section--intro { background: var(--c-surface); }
.section--foryou {
  position: relative;
  background: var(--c-bg-alt);
  overflow: hidden;
}

.foryou-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 46%;
  z-index: 0;
  overflow: hidden;
  background-image: url('../images/for-you.jpg');
  background-repeat: no-repeat;
  background-size: 230% auto;
  background-position: 50% 67%;
}
.foryou-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--c-bg-alt) 0%, rgba(250,249,247,0.35) 22%, rgba(250,249,247,0.18) 45%, rgba(250,249,247,0.32) 100%);
}

.section--foryou .container {
  position: relative;
  z-index: 1;
}
.section--about { background: var(--c-surface); }
.section--gain { background: var(--c-bg-alt); }
.section--flow { background: var(--c-surface); }
.section--price { background: var(--c-bg-alt); }
.section--profile { background: var(--c-surface); }
.section--faq { background: var(--c-bg-alt); }
.section--final-cta {
  position: relative;
  background-color: var(--c-surface);
  background-image: url('../images/cta-texture.jpg');
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 45% auto;
  min-height: 420px;   /* ← この行を追加。画像が見切れないよう高さを確保 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}


/* 質感背景セクション（金箔テクスチャ＋読みやすさのための白オーバーレイ） */
.section--has-texture {
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.93) 100%),
    url('../images/texture-gold.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================================================
   For You
   ============================================================ */
.foryou-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.foryou-text {
  grid-column: 1;
}

.check-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  font-size: 15.5px;
  line-height: 1.7;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border: 1.5px solid var(--c-purple);
  border-radius: 50%;
  background: var(--c-purple-pale);
}
.check-list li::after {
  content: '';
  position: absolute;
  left: 5px; top: 8px;
  width: 8px; height: 5px;
  border-left: 1.5px solid var(--c-purple-deep);
  border-bottom: 1.5px solid var(--c-purple-deep);
  transform: rotate(-45deg);
}

/* ============================================================
   About lesson
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-media img {
  border-radius: var(--radius-m);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-media-caption {
  margin-top: 8px;
  font-size: 12px;
  color: var(--c-gray);
}

/* ============================================================
   What you'll gain
   ============================================================ */
.gain-note {
  max-width: 560px;
  margin: 0 auto 48px;
  color: var(--c-gray);
  font-size: 14.5px;
}

.gain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.gain-card {
  background: var(--c-surface);
  border: 1px solid var(--c-gray-line);
  border-radius: var(--radius-m);
  padding: 36px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -16px rgba(79, 66, 99, 0.25);
}

.gain-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 22px;
  color: var(--c-purple);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gain-icon svg { width: 100%; height: 100%; }
.gain-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gain-title {
  font-family: var(--f-serif-jp);
  font-weight: 600;
  font-size: 16px;
  color: var(--c-purple-deep);
  margin-bottom: 14px;
  line-height: 1.6;
}

.gain-desc {
  font-size: 13px;
  color: var(--c-gray);
  line-height: 1.85;
  text-align: left;
}

/* ============================================================
   Lesson flow (timeline)
   ============================================================ */
.flow-note {
  color: var(--c-ink);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto 40px;
}

.flow-menu-label {
  text-align: center;
  font-family: var(--f-serif-jp);
  font-weight: 600;
  font-size: 16px;
  color: var(--c-purple-deep);
  background: var(--c-purple-pale);
  border-radius: 999px;
  padding: 12px 24px;
  max-width: 360px;
  margin: 0 auto 8px;
}

.flow-caption {
  text-align: center;
  font-size: 12.5px;
  color: var(--c-gray);
  margin-bottom: 48px;
}

.flow-timeline {
  position: relative;
  padding-left: 0;
}

.flow-step {
  position: relative;
  display: flex;
  gap: 24px;
  padding-bottom: 44px;
  padding-left: 64px;
}
.flow-step:last-child { padding-bottom: 0; }

.flow-step::before {
  /* connecting line */
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: -4px;
  width: 1px;
  background: var(--c-gray-line);
}
.flow-step:last-child::before { display: none; }

.flow-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-purple);
  color: #fff;
  font-family: var(--f-display);
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-title {
  font-family: var(--f-serif-jp);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--c-purple-deep);
  margin-bottom: 10px;
  line-height: 1.6;
}

.flow-desc {
  font-size: 14.5px;
  color: var(--c-ink);
  line-height: 1.85;
}

/* ============================================================
   Price
   ============================================================ */
.price-note {
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 15px;
  color: var(--c-ink);
}

.price-note.center { text-align: center; }   /* ← この行を追加 */

.price-table {
  background: var(--c-surface);
  border: 1px solid var(--c-gray-line);
  border-radius: var(--radius-m);
  overflow: hidden;
  margin-bottom: 56px;
}

.price-row {
  display: grid;
  grid-template-columns: 200px 1fr;
}
.price-row + .price-row {
  border-top: 1px solid var(--c-gray-line);
}

.price-label {
  background: var(--c-purple-pale);
  color: var(--c-purple-deep);
  font-family: var(--f-serif-jp);
  font-weight: 500;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  padding: 22px 24px;
}

.price-value {
  padding: 22px 28px;
  font-size: 15px;
  line-height: 1.8;
}

.price-plan {
  display: block;
  font-weight: 500;
}
.price-plan--option {
  margin-top: 6px;
  color: var(--c-gray);
  font-size: 13.5px;
  font-weight: 400;
}

.price-sub {
  display: block;
  font-size: 12.5px;
  color: var(--c-gray);
  margin-top: 6px;
}

.trial-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  text-align: left;
  background: var(--c-surface);
  border: 1px solid var(--c-purple);
  border-radius: var(--radius-m);
  padding: 36px 40px;
}
.trial-card-text { flex: 1; min-width: 240px; }
.trial-eyebrow {
  font-family: var(--f-serif-jp);
  font-weight: 600;
  font-size: 16px;
  color: var(--c-ink);
  margin-bottom: 10px;
}
.trial-desc {
  font-size: 14px;
  color: var(--c-gray);
  margin-bottom: 0;
  line-height: 1.8;
}
.trial-price {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--c-ink);
  margin-top: 10px;
  margin-bottom: 0;
}
/* ============================================================
   Profile
   ============================================================ */
.profile-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: flex-start;
}

.profile-photo img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-name {
  font-family: var(--f-serif-jp);
  font-weight: 600;
  font-size: 18px;
  color: var(--c-purple-deep);
  margin-bottom: 18px;
}

.profile-meta {
  margin-top: 24px;
  border-top: 1px solid var(--c-gray-line);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.profile-meta-row {
  display: flex;
  gap: 16px;
  font-size: 13.5px;
}
.profile-meta-row dt {
  flex-shrink: 0;
  width: 88px;
  color: var(--c-purple);
  font-weight: 500;
}
.profile-meta-row dd {
  margin: 0;
  color: var(--c-gray);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-gray-line);
  border-radius: var(--radius-m);
  overflow: hidden;
}

.faq-q {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--c-ink);
  position: relative;
}
.faq-q::-webkit-details-marker { display: none; }

.faq-mark {
  flex-shrink: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--c-olive);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-mark--a {
  background: none;
  color: var(--c-gray);
  margin-top: 2px;
}

.faq-toggle {
  margin-left: auto;
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--c-olive);
  transition: transform 0.25s ease;
}
.faq-toggle::before {
  left: 0; top: 8px; width: 18px; height: 2px;
}
.faq-toggle::after {
  left: 8px; top: 0; width: 2px; height: 18px;
}
.faq-item[open] .faq-toggle::after {
  transform: rotate(90deg);
}
.faq-item[open] .faq-q {
  border-bottom: 1px solid var(--c-olive);
}
.faq-item[open] .faq-mark {
  color: var(--c-olive);
  font-weight: 700;
}

.faq-a {
  display: flex;
  gap: 14px;
  padding: 18px 26px 24px 26px;
  font-size: 14px;
  color: var(--c-ink);
  line-height: 1.85;
}
.faq-a p { margin-bottom: 1em; }
.faq-a p:last-child { margin-bottom: 0; }

.faq-sublabel {
  font-weight: 500;
  color: var(--c-ink);
  margin-top: 1.2em !important;
}

.faq-ul {
  margin: 10px 0 0;
  padding-left: 1.2em;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-ul li {
  list-style: disc;
  font-size: 13.5px;
}
.faq-ul--plain li { list-style: none; padding-left: 0; }

.faq-note {
  color: var(--c-gray);
  font-size: 12.5px;
}

/* ============================================================
   Final CTA
   ============================================================ */
.final-cta-text {
  position: relative;
  z-index: 1;
  font-family: var(--f-serif-jp);
  font-weight: 500;
  font-size: clamp(17px, 2.4vw, 21px);
  color: var(--c-purple-deep);
  line-height: 1.9;
  margin-bottom: 36px;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #2F2A38;
  color: #C9C2D2;
  padding: 64px 0 32px;
}

.footer-top {
  text-align: center;
  margin-bottom: 36px;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.footer-logo .logo-en {
  color: #fff;
  font-size: 24px;
}
.footer-logo .logo-jp {
  color: #B7AEC4;
}
.footer-tagline {
  margin-top: 14px;
  font-family: var(--f-serif-jp);
  font-size: 13.5px;
  color: #B7AEC4;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 28px;
}
.footer-nav a {
  font-size: 12.5px;
  color: #C9C2D2;
}
.footer-nav a:hover { color: #fff; }

.footer-bottom {
  text-align: center;
}
.footer-area {
  font-size: 12px;
  color: #8E84A0;
  margin-bottom: 10px;
}
.footer-copy {
  font-size: 11.5px;
  color: #756B89;
  letter-spacing: 0.02em;
}

/* ============================================================
   Responsive — tablet
   ============================================================ */
@media (max-width: 960px) {
  .gain-grid { grid-template-columns: repeat(2, 1fr); }
  .foryou-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media { order: -1; }
  .price-row { grid-template-columns: 150px 1fr; }

  .section--foryou { padding-top: 0; }
  .foryou-media {
    position: relative;
    width: 100%;
    height: 280px;
    margin-bottom: 36px;
    background-size: auto 230%;
    background-position: 25% 70%;
  }
  .foryou-media::after { display: none; }
  .section--foryou .container { padding-top: 0; }
  .foryou-text { padding-bottom: 8px; }
}

/* ============================================================
   Responsive — mobile
   ============================================================ */
.sp-only { display: none; }

@media (max-width: 700px) {
  .sp-only { display: inline; }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(82vw, 320px);
    background: var(--c-surface);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-h) + 24px) 28px 28px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -8px 0 24px rgba(0,0,0,0.08);
    z-index: 95;
  }
  .site-nav.is-open {
    transform: translateX(0);
  }
  .nav-link {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--c-gray-line);
    font-size: 15px;
  }
  .nav-link::after { display: none; }
  .nav-link--cta {
    margin-top: 20px;
    text-align: center;
    border-bottom: none;
  }

  .nav-toggle { display: flex; }

  .hero { min-height: auto; padding-top: var(--header-h); }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 40px 20px 8px;
    gap: 28px;
  }
  .hero-media { order: -1; }
  .hero-media img { max-height: 280px; }
  .hero-title { font-size: clamp(24px, 7vw, 32px); }
  .hero-cta-wrap { padding: 8px 20px 40px; }
  .hero-cta-wrap .btn { width: 100%; }

  .section { padding: 56px 0; }

  .gain-grid { grid-template-columns: 1fr; gap: 18px; }
  .trial-card { flex-direction: column; align-items: stretch; }
  .trial-card .btn--cta { width: 100%; }
  .gain-desc { text-align: left; }

  .flow-step { padding-left: 56px; gap: 16px; }
  .flow-num { width: 40px; height: 40px; font-size: 16px; }
  .flow-step::before { left: 19px; top: 42px; }

  .price-row { grid-template-columns: 1fr; }
  .price-label { padding: 16px 20px 8px; }
  .price-value { padding: 8px 20px 20px; }

  .profile-card { grid-template-columns: 1fr; text-align: center; }
  .profile-photo { justify-self: center; }
  .profile-photo img { margin: 0 auto; }
  .profile-meta-row { flex-direction: column; gap: 2px; text-align: left; }

  .footer-nav { gap: 14px 18px; }
}

@media (max-width: 420px) {
  .btn { padding: 14px 28px; font-size: 14px; }
}
