/* ==========================================================================
   ゆうやけ整体院 デモサイト / デザイントークン
   ========================================================================== */
:root {
  --color-green: #1F4D3B;
  --color-green-dark: #163829;
  --color-green-tint: #EDF3EF;
  --color-orange: #E8792C;
  --color-orange-dark: #C8621E;
  --color-white: #FFFFFF;
  --color-beige: #F7F2EA;
  --color-wood: #9C6B41;
  --color-text: #2B2B27;
  --color-text-light: #48453F;
  --color-border: #E4DED0;

  --font-base: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Yu Gothic', sans-serif;

  --font-size-base: 16px;
  --line-height-base: 1.85;

  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 20px;
  --shadow-card: 0 4px 16px rgba(31, 77, 59, 0.08);

  --header-height: 84px;
  --header-height-sp: 64px;
  --mobile-cta-height: 60px;

  --content-max: 1120px;
  --transition-base: 0.25s ease;
}

/* ==========================================================================
   リセット & ベース
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--mobile-cta-height);
}

h1, h2, h3, p, ul, ol, table, dl, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; background: none; border: none; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }

.icon { width: 1.1em; height: 1.1em; fill: none; stroke: none; flex-shrink: 0; }
.sr-only-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.sp-only { display: none; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

.section-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 64px 0; }
.section:nth-of-type(odd) { background: var(--color-white); }
.section:nth-of-type(even) { background: var(--color-beige); }

.section-kicker {
  color: var(--color-orange);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-bottom: 28px;
  line-height: 1.5;
}

/* ==========================================================================
   アニメーション
   ========================================================================== */

/* スクロールライズイン（見出し・写真・カード・CTAグループ共通）
   グループの親要素1つに .reveal を付け、子要素はまとめて一度に立ち上がる。
   --d は隣接グループの表示を少しずらすためのステップ数（1 = 0.08秒）。 */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: calc(var(--d, 0) * 0.08s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ファーストビュー専用の入場アニメーション（スクロール演出とは別の動き）
   ページ読み込み時に自動再生されるため、IntersectionObserver は使わない。
   --hd は要素ごとの開始タイミング（秒）。 */
.hero-reveal {
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  animation: heroReveal 0.6s ease-out forwards;
  animation-delay: var(--hd, 0s);
}
@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* 数字のカウントアップ（実績・料金） */
.count-num { font-variant-numeric: tabular-nums; }

/* ==========================================================================
   ボタン共通
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-m);
  font-weight: 700;
  font-size: 1rem;
  min-height: 44px;
  transition: transform var(--transition-base), box-shadow var(--transition-base), opacity var(--transition-base);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); opacity: 0.95; }
.btn-primary { background: var(--color-orange-dark); color: var(--color-white); box-shadow: 0 6px 16px rgba(200, 98, 30, 0.35); }
.btn-primary:hover { background: #a8541a; }
.btn-line { background: #06C755; color: var(--color-white); box-shadow: 0 6px 16px rgba(6, 199, 85, 0.25); }
.btn-line:hover { background: #05a847; }
.btn-large { padding: 16px 30px; font-size: 1.05rem; }

.demo-note {
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-light);
  text-align: center;
}

/* ==========================================================================
   ヘッダー
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid transparent;
  box-shadow: none;
  height: var(--header-height-sp);
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}
.site-header.is-scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: 0 4px 16px rgba(22, 56, 41, 0.08);
}

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

.brand { display: flex; flex-direction: column; line-height: 1.3; }
.brand-name { font-size: 1.1rem; font-weight: 900; color: var(--color-green); }
.brand-tagline { display: none; font-size: 0.68rem; color: var(--color-text-light); }

.main-nav { display: none; }
.main-nav ul { display: flex; gap: 20px; }
.main-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-base), border-color var(--transition-base);
}
.main-nav a:hover { color: var(--color-orange); border-color: var(--color-orange); }

.header-cta { display: none; align-items: center; gap: 12px; }
.header-tel { display: flex; align-items: center; gap: 8px; color: var(--color-green-dark); }
.header-tel .icon { width: 1.4em; height: 1.4em; stroke: var(--color-orange); }
.header-tel-text { display: flex; flex-direction: column; line-height: 1.3; }
.header-tel-text small { font-size: 0.68rem; color: var(--color-text-light); white-space: nowrap; }
.header-tel-text strong { font-size: 1.05rem; white-space: nowrap; }

.hamburger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--color-green);
  transition: transform var(--transition-base), opacity var(--transition-base);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルナビ展開 */
.main-nav.nav-open {
  display: block;
  position: fixed;
  top: var(--header-height-sp);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  padding: 24px 20px;
  overflow-y: auto;
}
.main-nav.nav-open ul { flex-direction: column; gap: 4px; }
.main-nav.nav-open a {
  display: block;
  padding: 14px 8px;
  font-size: 1rem;
  line-height: 1.3;
  white-space: nowrap;
  border-bottom: 1px solid var(--color-border);
}

/* ==========================================================================
   ファーストビュー
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 64px;
  background:
    linear-gradient(180deg, rgba(22, 56, 41, 0.86) 0%, rgba(22, 56, 41, 0.82) 45%, rgba(22, 56, 41, 0.62) 100%),
    url('images/01-hero.jpg') center 22% / cover no-repeat;
}

.hero-inner {
  position: relative;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 20px;
}

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-green-dark);
  background: rgba(255, 255, 255, 0.95);
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero-text h1 {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--color-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  line-height: 1.5;
  margin-bottom: 18px;
}

.hero-lead {
  font-size: 0.98rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 24px;
}

.hero-cta { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }

.hero-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.hero-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-green-dark);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-s);
  padding: 12px 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}
.hero-badges .icon { color: var(--color-orange); stroke: var(--color-orange); width: 1.2em; height: 1.2em; }

/* ==========================================================================
   写真フレーム
   ========================================================================== */
.photo-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ph-wide { aspect-ratio: 4 / 3; }
.ph-portrait { aspect-ratio: 3 / 4; max-width: 320px; margin: 0 auto; }

.map-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-l);
  margin-top: 24px;
  box-shadow: var(--shadow-card);
  background: var(--color-green-tint);
}

/* ==========================================================================
   信頼実績
   ========================================================================== */
.trust { text-align: center; }
.trust h2 { max-width: 600px; margin-left: auto; margin-right: auto; }

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.trust-card {
  background: var(--color-green-tint);
  border-radius: var(--radius-l);
  padding: 24px 10px;
}
.trust-number {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--color-green);
}
.trust-unit { font-size: 1rem; margin-left: 2px; }
.trust-label {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-weight: 700;
}

/* ==========================================================================
   お悩みセクション
   ========================================================================== */
.concern-list {
  display: grid;
  gap: 12px;
}
.concern-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-m);
  padding: 14px 16px;
  font-weight: 500;
}
.concern-list .icon { color: var(--color-orange); stroke: var(--color-orange); width: 1.3em; height: 1.3em; }

.concern-closing {
  margin-top: 24px;
  text-align: center;
  font-weight: 700;
  color: var(--color-green-dark);
  font-size: 1.05rem;
}

/* ==========================================================================
   選ばれる理由
   ========================================================================== */
.reason-lead {
  color: var(--color-text-light);
  margin-bottom: 32px;
  font-size: 0.95rem;
  font-weight: 500;
}
.reason-grid {
  display: grid;
  gap: 24px;
}
.reason-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-l);
  padding: 18px;
  box-shadow: var(--shadow-card);
}
.reason-card .photo-frame { margin-bottom: 16px; }
.reason-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-bottom: 8px;
  line-height: 1.5;
}
.reason-card p { font-size: 0.92rem; font-weight: 500; color: var(--color-text-light); }

/* ==========================================================================
   施術内容
   ========================================================================== */
.menu-lead { color: var(--color-text-light); margin-bottom: 28px; font-size: 0.95rem; font-weight: 500; }
.menu-grid { display: grid; gap: 16px; }
.menu-card {
  background: var(--color-white);
  border-left: 4px solid var(--color-green);
  border-radius: var(--radius-s);
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
}
.menu-card h3 { color: var(--color-green-dark); font-size: 1.05rem; margin-bottom: 6px; }
.menu-card p { font-size: 0.92rem; font-weight: 500; color: var(--color-text-light); }

/* ==========================================================================
   料金
   ========================================================================== */
.price-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--color-white);
  border: 2px solid var(--color-green);
  border-radius: var(--radius-l);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.price-normal {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text-light);
}
.price-normal span { text-decoration: line-through; font-weight: 700; }
.price-normal small { display: block; font-size: 0.78rem; margin-top: 2px; }
.price-arrow { color: var(--color-orange); font-size: 1.3rem; line-height: 1; }
.price-first {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-green-dark);
}
.price-first-num {
  display: block;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--color-orange-dark);
  line-height: 1.2;
}
.price-first-num small { font-size: 1.4rem; margin-left: 4px; }

.price-includes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}
.price-includes li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-green-dark);
}
.price-includes .icon { color: var(--color-orange-dark); stroke: var(--color-orange-dark); }

.price-notes {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  background: var(--color-beige);
  border-radius: var(--radius-m);
  padding: 18px 20px;
}
.price-notes p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--color-text);
}
.price-notes .icon {
  flex-shrink: 0;
  margin-top: 3px;
  width: 1.1em;
  height: 1.1em;
  color: var(--color-orange-dark);
  stroke: var(--color-orange-dark);
}
.price-notes-strong { font-weight: 700; color: var(--color-green-dark); }

.mini-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  margin: 28px auto 0;
}

/* ==========================================================================
   お客様の声
   ========================================================================== */
.voice-grid { display: grid; gap: 18px; margin-bottom: 8px; }
.voice-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-l);
  padding: 22px;
  box-shadow: var(--shadow-card);
}
.voice-person { font-weight: 700; color: var(--color-green-dark); margin-bottom: 10px; font-size: 0.95rem; }
.voice-text { font-size: 0.95rem; font-weight: 500; color: var(--color-text); margin-bottom: 12px; }
.voice-disclaimer { font-size: 0.78rem; color: var(--color-text-light); }

/* ==========================================================================
   初回の流れ
   ========================================================================== */
.flow-list { display: grid; gap: 20px; }
.flow-list li { display: flex; gap: 16px; align-items: flex-start; }
.flow-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.05rem;
}
.flow-list h3 { font-size: 1rem; color: var(--color-green-dark); margin-bottom: 4px; }
.flow-list p { font-size: 0.92rem; font-weight: 500; color: var(--color-text-light); }
.flow-note {
  margin-top: 28px;
  text-align: center;
  font-weight: 700;
  color: var(--color-green-dark);
  background: var(--color-green-tint);
  border-radius: var(--radius-m);
  padding: 14px;
  font-size: 0.88rem;
}

/* ==========================================================================
   院長紹介
   ========================================================================== */
.director-inner { display: flex; flex-direction: column; gap: 28px; }
.director-title { color: var(--color-orange); font-weight: 700; margin: 6px 0 18px; }
.director-history { display: grid; gap: 8px; margin-bottom: 20px; }
.director-history li {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-light);
  padding-left: 18px;
  position: relative;
}
.director-history li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-orange);
}
.director-message {
  font-size: 0.92rem;
  line-height: 2;
  color: var(--color-text);
  background: var(--color-beige);
  border-left: 4px solid var(--color-orange);
  border-radius: var(--radius-s);
  padding: 20px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 44px 16px 20px;
  font-weight: 700;
  color: var(--color-green-dark);
  font-size: 0.92rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-orange);
  font-size: 1.3rem;
  font-weight: 900;
  transition: transform var(--transition-base);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { padding: 0 20px 18px; font-size: 0.92rem; font-weight: 500; line-height: 1.7; color: var(--color-text-light); }

/* ==========================================================================
   アクセス
   ========================================================================== */
.access-grid { display: grid; gap: 24px; }
.access-table th, .access-table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.92rem;
  font-weight: 500;
  vertical-align: top;
}
.access-table th {
  width: 90px;
  color: var(--color-green-dark);
  font-weight: 700;
}
.access-table a { color: var(--color-orange); font-weight: 700; }

/* ==========================================================================
   夕焼けディバイダー & 最終CTA
   ========================================================================== */
.sunset-divider {
  height: 64px;
  background: linear-gradient(90deg, var(--color-green-dark) 0%, var(--color-orange) 50%, #F4C88A 100%);
}

.section.final-cta {
  background: var(--color-green-dark);
  color: var(--color-white);
  text-align: center;
}
.final-cta h2 {
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.final-cta p { color: rgba(255,255,255,0.95); margin-bottom: 28px; font-size: 0.95rem; font-weight: 500; }
.final-cta .hero-cta { max-width: 420px; margin: 0 auto; }
.final-cta .btn-primary { background: var(--color-white); color: var(--color-green-dark); box-shadow: none; }
.final-cta .btn-primary:hover { background: #f2f2f2; }

/* ==========================================================================
   フッター
   ========================================================================== */
.site-footer {
  background: var(--color-green-dark);
  color: rgba(255,255,255,0.85);
  padding: 40px 0 24px;
}
.footer-brand { font-weight: 900; font-size: 1.1rem; color: var(--color-white); margin-bottom: 16px; }
.footer-table th, .footer-table td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  font-size: 0.85rem;
}
.footer-table th { width: 80px; color: rgba(255,255,255,0.75); font-weight: 500; }
.footer-table td { color: rgba(255,255,255,0.92); }
.footer-copy { margin-top: 20px; font-size: 0.78rem; color: rgba(255,255,255,0.65); }

/* ==========================================================================
   モバイル下部固定CTA
   ========================================================================== */
.mobile-fixed-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--mobile-cta-height);
  display: flex;
  z-index: 200;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.12);
}
.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-white);
}
.mobile-cta-tel { background: var(--color-green); }
.mobile-cta-line { background: var(--color-orange-dark); }

/* ==========================================================================
   タブレット
   ========================================================================== */
@media (min-width: 768px) {
  .sp-only { display: inline; }
  .hero-text { max-width: 640px; }
  .hero-text h1 { font-size: 2.3rem; }
  .hero-badges { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: row; }
  .reason-grid, .menu-grid, .voice-grid { grid-template-columns: repeat(2, 1fr); }
  .price-first-num { font-size: 4rem; }
  .director-inner { flex-direction: row; align-items: center; gap: 48px; }
  .director-photo { flex: 0 0 300px; }
  .director-text { flex: 1; }
  .access-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .final-cta .hero-cta { flex-direction: row; }
  .mini-cta { flex-direction: row; justify-content: center; }
}

/* ==========================================================================
   デスクトップ
   ========================================================================== */
@media (min-width: 1024px) {
  body { padding-bottom: 0; }
  .mobile-fixed-cta { display: none; }
  .site-header { height: var(--header-height); }
  .header-inner { gap: 10px; }
  .brand { margin-right: 28px; }
  .brand-tagline { display: none; }
  .main-nav { display: block !important; position: static; padding: 0; background: none; }
  .main-nav ul { flex-direction: row !important; gap: 13px; }
  .main-nav a { font-size: 0.82rem; border-bottom: 2px solid transparent; padding: 6px 1px; white-space: nowrap; }
  .header-cta { display: flex; gap: 8px; }
  .header-tel-text small { display: none; }
  .header-cta .btn-line { padding: 10px 16px; font-size: 0.85rem; }
  .hamburger { display: none; }

  .section { padding: 96px 0; }
  .section h2 { font-size: 2rem; }
  .hero {
    padding: 84px 0 96px;
    background:
      linear-gradient(100deg, rgba(22, 56, 41, 0.92) 0%, rgba(22, 56, 41, 0.8) 40%, rgba(22, 56, 41, 0.32) 68%, rgba(22, 56, 41, 0.08) 88%),
      url('images/01-hero.jpg') center 25% / cover no-repeat;
  }
  .hero-text { max-width: 560px; }
  .hero-text h1 { font-size: 2.9rem; }
  .hero-lead { font-size: 1.02rem; }
  .hero-badges { grid-template-columns: repeat(2, 1fr); max-width: 460px; }

  .trust-cards { gap: 24px; }
  .trust-number { font-size: 2.6rem; }

  .reason-grid { grid-template-columns: repeat(4, 1fr); }
  .menu-grid { grid-template-columns: repeat(4, 1fr); }
  .voice-grid { grid-template-columns: repeat(3, 1fr); }

  .price-card { padding: 48px; max-width: 640px; margin: 0 auto; }
  .price-first-num { font-size: 5.2rem; }

  .flow-list { grid-template-columns: repeat(5, 1fr); gap: 20px; }
  .flow-list li { flex-direction: column; text-align: center; align-items: center; }
}
