/* ═══════════════════════════════════════════════════════════
   symptom-template.css
   症状別ページ共通テンプレートCSS
   seitai.co.jp デザイン準拠（角ばりデザイン）
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Colors — seitai.co.jp 準拠 */
  --color-primary: #027f41;
  --color-primary-dark: #026332;
  --color-primary-light: #eff4f1;
  --color-primary-gradient: linear-gradient(135deg, #027f41, #02994e);
  --color-bg: #f9fafb;
  --color-surface: #ffffff;
  --color-text: #333;
  --color-text-sub: #555;
  --color-text-light: #888;
  --color-border: #e5e7eb;
  --color-accent: #D4A24E;
  --color-accent-on-dark: #F0D090;
  --color-accent-light: #FFF8ED;
  --color-danger: #C4473A;
  --color-badge-bg: #eff4f1;
  --color-section-alt: #eff4f1;
  --color-dark: #1f2937;

  /* Fonts */
  --font-sans: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Noto Serif JP', 'Yu Mincho', serif;

  /* Border-radius — 角ばりデザイン */
  --radius-card: 0;
  --radius-btn: 50px;

  /* Shadows — seitai.co.jp 準拠 */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 20px rgba(0,0,0,0.08);

  /* Layout */
  --max-w: 720px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  overflow-x: hidden;
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.75;
  padding-top: 60px;
  padding-bottom: 80px;
  -webkit-font-smoothing: antialiased;
}

/* ─── Site Header (seitai.co.jp準拠) ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo { display: flex; align-items: center; text-decoration: none; }
.site-logo-img { height: 40px; width: auto; }
.header-right { display: flex; align-items: center; gap: 12px; }
.header-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #027f41;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease;
}
.header-store-btn:hover { background: #026030; }

/* Hamburger Button */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger-btn span {
  display: block;
  width: 32px;
  height: 2px;
  background: #027f41;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ─── Menu Overlay (seitai.co.jp準拠) ─── */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: clamp(14px, calc(10px + 1.4vw), 24px) clamp(19px, calc(13px + 1.8vw), 32px);
}
.menu-header .site-logo-img { height: 36px; }
.menu-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  min-width: clamp(32px, calc(27px + 1.7vw), 44px);
  min-height: clamp(32px, calc(27px + 1.7vw), 44px);
  cursor: pointer;
  padding: 6px;
}
.menu-close-btn svg { width: clamp(14px, calc(10px + 1.4vw), 24px); height: clamp(14px, calc(10px + 1.4vw), 24px); }
.menu-body {
  display: flex;
  flex: 1;
  gap: clamp(16px, calc(12px + 1.1vw), 24px);
  padding: clamp(29px, calc(20px + 2.7vw), 48px) clamp(19px, calc(13px + 1.8vw), 32px);
}
.menu-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
}
.menu-col-left { padding-right: clamp(29px, calc(20px + 2.7vw), 48px); }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-item {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: clamp(10px, calc(7px + 0.9vw), 16px);
  padding-bottom: clamp(10px, calc(7px + 0.9vw), 16px);
}
.menu-item-link {
  display: flex;
  align-items: baseline;
  gap: clamp(10px, calc(7px + 0.9vw), 16px);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.menu-item-link:hover { opacity: 0.7; }
.menu-item-english {
  color: #1f2937;
  font-size: clamp(14px, calc(12px + 0.6vw), 18px);
  font-weight: 600;
  min-width: clamp(84px, calc(59px + 8vw), 140px);
}
.menu-item-japanese {
  color: #6b7280;
  font-size: clamp(12px, calc(11px + 0.3vw), 14px);
}
.menu-footer-links {
  display: flex;
  gap: clamp(14px, calc(10px + 1.4vw), 24px);
  margin-top: clamp(14px, calc(10px + 1.4vw), 24px);
}
.menu-footer-links a {
  color: #6b7280;
  font-size: clamp(10px, calc(9px + 0.3vw), 12px);
  text-decoration: none;
}
.menu-footer-links a:hover { color: var(--color-primary); }

/* Menu overlay - catchphrase */
.menu-catchphrase {
  text-align: center;
  padding: clamp(12px, calc(3px + 2.8vw), 32px);
}
.menu-catchphrase-label {
  color: #6b7280;
  font-size: clamp(12px, calc(11px + 0.3vw), 14px);
  margin-bottom: clamp(5px, calc(3px + 0.5vw), 8px);
}
.menu-catchphrase-heading {
  color: #027f41;
  font-size: clamp(29px, calc(20px + 2.7vw), 48px);
  font-weight: 700;
  line-height: 1.2;
}

/* ─── Site Footer (seitai.co.jp準拠) ─── */
.site-footer {
  background-color: #eff4f1;
  padding: clamp(36px, calc(25px + 3.4vw), 60px) 0 0;
  margin-top: 32px;
}
.footer-content { margin: 0 auto; }
.footer-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: clamp(36px, calc(25px + 3.4vw), 60px);
}
.footer-logo {
  height: auto;
  max-width: clamp(180px, calc(125px + 17vw), 300px);
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 40px;
}
.footer-nav-title {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.footer-nav-list { list-style: none; margin: 0; padding: 0; }
.footer-nav-list li { margin-bottom: 10px; }
.footer-nav-list a {
  color: #555;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.6;
  transition: color 0.2s ease;
}
.footer-nav-list a:hover { color: #027f41; }
.footer-copyright {
  background-color: #3c3c3c;
  padding: clamp(12px, calc(8px + 1.1vw), 20px) 0;
  text-align: center;
  padding-bottom: max(clamp(12px, calc(8px + 1.1vw), 20px), calc(env(safe-area-inset-bottom) + 80px));
}
.footer-copyright p { color: #fff; font-size: 10px; margin: 0; }

/* ─── Breadcrumb ─── */
.breadcrumb {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 20px;
  font-size: 12px;
  color: var(--color-text-light);
}
.breadcrumb a { color: var(--color-text-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb span { margin: 0 4px; }

/* ─── Hero / First View ─── */
.hero {
  color: #fff;
  padding: 48px 20px 40px;
  position: relative;
  overflow: hidden;
  background-color: #027f41;
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: 70% center;
}
.hero--fv-image {
  position: relative;
  padding: 0;
  background: none;
}
.hero--fv-image::before { display: none; }
.hero--fv-image a:not(.fv-cta-btn) { display: block; line-height: 0; }
.hero--fv-image img { width: 100%; height: auto; }

/* ─── FV Carousel ─── */
.fv-carousel { position: relative; overflow: hidden; }
.fv-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.fv-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}
.fv-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.fv-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s;
}
.fv-carousel-dot.active {
  background: #fff;
}
.fv-carousel-prev,
.fv-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(0,0,0,0.25);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.fv-carousel-prev:hover,
.fv-carousel-next:hover { background: rgba(0,0,0,0.45); }
.fv-carousel-prev { left: 10px; }
.fv-carousel-next { right: 10px; }
.hero--fv-image .fv-cta-btn {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 88%;
  max-width: 520px;
  display: block;
  line-height: normal;
}
.hero--fv-image .fv-cta-btn img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 769px) {
  .hero--fv-image .fv-cta-btn {
    bottom: 18%;
    left: 27%;
    transform: translateX(-50%);
    width: 36%;
    max-width: 560px;
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2,127,65,0.72) 0%, rgba(2,153,78,0.62) 100%);
  z-index: 0;
}
.hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 0;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
}
.hero-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
/* Override accent TEXT color on dark/green backgrounds for readability (buttons unaffected) */
.hero h1 span[style*="color: var(--color-accent)"] {
  color: #F0D090 !important;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(24px, calc(20px + 1.5vw), 36px);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.hero-lead {
  font-size: 15px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 24px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-stat {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0;
  padding: 10px 14px;
  flex: 1;
  min-width: 140px;
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  display: block;
}
.hero-stat-label { font-size: 11px; }

/* Hero CTA */
.hero-cta {
  display: block;
  width: 100%;
  background: var(--color-accent);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(212,162,78,0.3);
}
.hero-cta:hover { background: #C49440; transform: translateY(-2px); }
.hero-cta-sub { display: block; font-size: 11px; font-weight: 400; opacity: 0.85; margin-top: 2px; }

/* Hero Image — now handled via background-image on .hero with --hero-bg CSS variable */

/* ─── Content Wrapper ─── */
.content { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ─── Section ─── */
.section { margin-top: 48px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--color-primary);
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, calc(18.36px + 1.14vw), 30px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
  color: var(--color-text);
}

h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 28px;
  margin-bottom: 10px;
  padding-left: 12px;
  border-left: 3px solid var(--color-primary);
}

p { margin-bottom: 16px; color: var(--color-text); font-size: 15px; }
p.sub { color: var(--color-text-sub); font-size: 14px; }

/* ─── Image Placeholder（共通） ─── */
.img-placeholder {
  background: #e5e7eb;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 13px;
  font-family: var(--font-sans);
  overflow: hidden;
}
.img-placeholder--sm { height: 120px; }
.img-placeholder--md { height: 180px; }
.img-placeholder--lg { height: 240px; }
.img-placeholder--full { width: 100%; }

/* ─── Answer Box (AIO target) ─── */
.answer-box {
  background: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  border-radius: 0;
  padding: 20px;
  margin: 20px 0;
  font-size: 15px;
  line-height: 1.8;
}
.answer-box strong { color: var(--color-primary-dark); }

/* ─── Stats Card ─── */
.stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 20px;
  margin: 20px 0;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.stat-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.stat-card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 12px;
}
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}
.stat-row:last-child { border-bottom: none; }
.stat-row-label { color: var(--color-text-sub); }
.stat-row-value { font-weight: 700; color: var(--color-primary-dark); }

/* ─── Evidence callout ─── */
.evidence {
  background: var(--color-accent-light);
  border: 1px solid rgba(212,162,78,0.25);
  border-radius: var(--radius-card);
  padding: 20px;
  margin: 24px 0;
}
.evidence-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.evidence-title svg { width: 16px; height: 16px; }
.evidence p { font-size: 14px; margin-bottom: 8px; }
.evidence p:last-child { margin-bottom: 0; }
.evidence-source { font-size: 12px; color: var(--color-text-light); }

/* ─── Type Cards ─── */
.type-grid { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.type-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.type-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.type-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}
.type-card-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.type-card-desc { font-size: 14px; color: var(--color-text-sub); line-height: 1.7; }
.type-card-gift {
  margin-top: 10px;
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 600;
  background: var(--color-primary-light);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 0;
}

/* ─── GIFT method ─── */
.gift-section {
  background: var(--color-section-alt);
  margin: 48px -20px 0;
  padding: 48px 20px;
}
.gift-section .section-inner { max-width: var(--max-w); margin: 0 auto; }
.gift-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 24px 0; }
.gift-item {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.gift-item:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.gift-item-img {
  width: 100%;
  height: auto;
  display: block;
  background: #f5f5f5;
}
.gift-item-body { padding: 14px 16px; }
.gift-letter {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 2px;
}
.gift-item-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.gift-item-desc { font-size: 13px; color: var(--color-text-sub); line-height: 1.6; }
@media (max-width: 560px) {
  .gift-grid { grid-template-columns: 1fr; }
}

/* ─── Hypothesis Section ─── */
.hypothesis-box {
  margin-top: 2.5rem;
  background: var(--color-section-alt);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  border-left: none;
}
.hypothesis-box h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-primary);
  margin: 0 0 0.4rem 0;
  border-left: none;
  padding-left: 0;
}
.hypothesis-sub { font-size: 0.82rem; color: var(--color-text-light); margin: 0 0 1rem 0; }
.hypothesis-lead { font-size: 0.95rem; line-height: 1.8; color: var(--color-text); margin: 0 0 1.2rem 0; }
.hypothesis-cards { display: flex; flex-direction: column; gap: 1rem; }
.hypothesis-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.hypothesis-card-title { font-weight: 700; color: var(--color-primary); font-size: 0.9rem; margin-bottom: 0.4rem; }
.hypothesis-card p { font-size: 0.88rem; line-height: 1.75; color: #444; margin: 0; }
.hypothesis-card p + p { margin-top: 0.6rem; }
.hypothesis-why {
  margin-top: 1.2rem;
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 1rem;
  border: 1px dashed var(--color-accent);
}
.hypothesis-why p { font-size: 0.85rem; line-height: 1.7; color: var(--color-text-sub); margin: 0; }
.hypothesis-why strong { color: var(--color-primary); }
.hypothesis-disclaimer { font-size: 0.85rem; color: var(--color-text-light); margin: 1rem 0 0 0; line-height: 1.6; }

/* ─── Flow (施術フロー) ─── */
.flow { margin: 20px 0; }
.flow-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}
.flow-step:last-child { border-bottom: none; }
.flow-num {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}
.flow-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.flow-desc { font-size: 13px; color: var(--color-text-sub); line-height: 1.6; }

/* ─── Pricing ─── */
.price-cards { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.price-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 20px;
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.price-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.price-card.recommended {
  border-color: var(--color-primary);
  border-width: 2px;
  box-shadow: var(--shadow-sm);
}
.price-card.recommended::before {
  content: 'おすすめ';
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
}
.price-card-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.price-card-price {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.price-card-price small { font-size: 14px; font-weight: 500; color: var(--color-text-sub); }
.price-card-desc { font-size: 13px; color: var(--color-text-sub); margin-top: 8px; line-height: 1.6; }

/* ─── CTA inline ─── */
.cta-inline {
  background: var(--color-primary-gradient);
  color: #fff;
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  margin: 40px 0;
}
.cta-inline h3 {
  border: none;
  padding: 0;
  color: #fff;
  font-size: 20px;
  font-family: var(--font-serif);
  margin: 0 0 8px;
}
.cta-inline p { color: #fff; font-size: 14px; margin-bottom: 20px; }
.cta-inline .btn-white {
  display: inline-block;
  background: #fff;
  color: var(--color-primary-dark);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-inline .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.cta-inline-micro { font-size: 12px; opacity: 0.7; margin-top: 10px; }

/* ─── FAQ ─── */
.faq-list { margin: 20px 0; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
}
.faq-q {
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q::before { content: 'Q.'; color: var(--color-primary); font-weight: 700; min-width: 24px; }
.faq-q::after {
  content: '+';
  font-size: 20px;
  color: var(--color-text-light);
  transition: transform 0.2s;
  min-width: 20px;
  text-align: center;
}
.faq-item.open .faq-q::after { content: '\2212'; }
.faq-a {
  display: none;
  padding: 12px 0 0 36px;
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.8;
}
.faq-item.open .faq-a { display: block; }

/* ─── Author / E-E-A-T ─── */
.author-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 20px;
  margin: 32px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 0;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
  overflow: hidden;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-name { font-size: 15px; font-weight: 700; }
.author-title { font-size: 12px; color: var(--color-text-sub); margin-top: 2px; }
.author-creds { font-size: 12px; color: var(--color-text-light); margin-top: 6px; line-height: 1.6; }
.author-link { font-size: 12px; color: var(--color-primary); text-decoration: none; margin-top: 4px; display: inline-block; }
.author-link:hover { text-decoration: underline; }

/* ─── Trust badges ─── */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 20px 0;
}
.trust-badge {
  background: var(--color-badge-bg);
  border-radius: 0;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-sub);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ─── Internal links ─── */
.related { margin: 32px 0; }
.related-title { font-size: 14px; font-weight: 700; margin-bottom: 12px; color: var(--color-text-sub); }
.related-links { display: flex; flex-direction: column; gap: 8px; }
.related-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  text-decoration: none;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.related-link:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.related-link-arrow { margin-left: auto; color: var(--color-text-light); font-size: 18px; }

/* ─── Floating CTA ─── */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--color-border);
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  display: flex;
  gap: 8px;
  z-index: 100;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
}
.floating-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.floating-btn:hover { opacity: 0.9; }
.floating-btn svg { width: 18px; height: 18px; }
.floating-btn.phone { background: var(--color-primary); color: #fff; }
.floating-btn.line { background: #06C755; color: #fff; }
.floating-btn.web { background: var(--color-accent); color: #fff; }

/* ─── Disclaimer ─── */
.disclaimer {
  font-size: 12px;
  color: var(--color-text-light);
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
  margin-top: 32px;
  line-height: 1.8;
}

/* ─── Lite YouTube Embed ─── */
.lite-yt {
  background-color: #000;
  position: relative;
  display: block;
  contain: content;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
  aspect-ratio: 16/9;
  border-radius: 0;
  overflow: hidden;
  margin: 20px 0;
}
.lite-yt::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}
.lite-yt::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 48px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 68 48'%3E%3Cpath d='M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55C3.97 2.33 2.27 4.81 1.48 7.74.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z' fill='%23f00'/%3E%3Cpath d='M45 24L27 14v20' fill='%23fff'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  z-index: 2;
  transition: opacity 0.15s;
}
.lite-yt:hover::after { opacity: 0.85; }
.lite-yt.activated { cursor: unset; }
.lite-yt.activated::before, .lite-yt.activated::after { display: none; }
.lite-yt iframe {
  width: 100%; height: 100%;
  position: absolute; top: 0; left: 0;
  border: 0;
}
.lite-yt-title {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  z-index: 3;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.video-context {
  font-size: 13px;
  color: var(--color-text-sub);
  margin: -12px 0 20px 0;
  padding-left: 2px;
}
.video-context a { color: var(--color-primary); text-decoration: none; }
.video-context a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   TOP page — additional components
   ═══════════════════════════════════════════════════════════ */

/* ─── TOP: Mosaic Hero ─── */
.hero--mosaic {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  position: relative;
}
.hero--mosaic::before { display: none; }
.hero--mosaic .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
}
.hero-mosaic-center {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 40px 48px;
  text-align: center;
  max-width: 640px;
  margin: 0 20px;
}
.hero--mosaic .hero-catchcopy {
  font-family: var(--font-serif);
  font-size: clamp(20px, calc(16px + 1.5vw), 28px);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.4;
  margin: 0 0 16px;
}
.hero--mosaic .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
}
.hero--mosaic .hero-badge-pill {
  font-size: 11px;
  padding: 4px 10px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: var(--radius-btn);
}
.hero--mosaic .hero-badge-pill svg {
  width: 12px;
  height: 12px;
}
.hero--mosaic .hero-badge-pill--accent {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.hero.hero--mosaic h1 {
  font-family: var(--font-serif);
  font-size: clamp(18px, calc(14px + 1.2vw), 24px);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
}
.hero-mosaic-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  padding: 20px 20px 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 70%, transparent 100%);
}
.hero-mosaic-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  margin-top: 8px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Hero Mosaic — Responsive */
@media (max-width: 600px) {
  .hero.hero--mosaic {
    min-height: 100svh;
  }
  .hero.hero--mosaic .hero-mosaic-center {
    padding: 28px 20px;
    margin: 0 16px;
    max-width: none;
  }
  .hero.hero--mosaic .hero-catchcopy {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .hero.hero--mosaic .hero-badges {
    gap: 5px;
    margin-bottom: 12px;
  }
  .hero.hero--mosaic .hero-badge-pill {
    font-size: 10px;
    padding: 3px 8px;
  }
  .hero.hero--mosaic h1 {
    font-size: 17px;
    line-height: 1.7;
  }
  .hero.hero--mosaic .hero-mosaic-bottom {
    padding: 16px 16px 24px;
  }
  .hero.hero--mosaic .hero-mosaic-sub {
    font-size: 11px;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .hero.hero--mosaic .hero-mosaic-center {
    padding: 36px 36px;
    margin: 0 24px;
    max-width: 560px;
  }
  .hero.hero--mosaic h1 {
    font-size: 22px;
  }
}

@media (min-width: 901px) {
  .hero.hero--mosaic .hero-mosaic-center {
    padding: 48px 56px;
    max-width: 680px;
  }
  .hero.hero--mosaic .hero-catchcopy {
    font-size: 28px;
  }
  .hero.hero--mosaic h1 {
    font-size: 24px;
  }
}

/* ─── TOP: Full-screen Hero ─── */
.hero--fullscreen {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  background: none;
}
.hero--fullscreen::before { display: none; }
.hero--fullscreen .hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #024d28 0%, #027f41 40%, #02994e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero--fullscreen .hero-bg-placeholder {
  color: rgba(255,255,255,0.25);
  font-size: 13px;
  text-align: center;
  line-height: 1.6;
}
.hero--fullscreen .hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  background: linear-gradient(to top, rgba(2,99,50,0.92) 0%, rgba(2,127,65,0.7) 50%, rgba(2,127,65,0.15) 80%, transparent 100%);
  padding: 120px 32px 32px;
}
.hero--fullscreen .hero-overlay-inner { max-width: 640px; }
.hero--fullscreen .hero-catchcopy {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.hero--fullscreen .hero-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero--fullscreen .hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.hero--fullscreen .hero-badge-pill svg { width: 10px; height: 10px; flex-shrink: 0; }
.hero--fullscreen .hero-badge-pill--accent {
  background: rgba(212,162,78,0.85);
  border-color: rgba(212,162,78,0.9);
  color: #fff;
}
.hero--fullscreen h1 {
  font-size: 1.375rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.hero--fullscreen h1 em { font-style: normal; color: #fff; }
.hero--fullscreen .hero-cta-block {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 0;
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
}
.hero--fullscreen .hero-price {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 2px;
}
.hero--fullscreen .hero-price small { font-size: 0.55em; font-weight: 500; }
.hero--fullscreen .hero-price-original {
  font-size: 0.55em;
  font-weight: 500;
  color: #fff;
  text-decoration: line-through;
  margin-right: 4px;
}
.hero--fullscreen .hero-price-note { font-size: 11px; color: #fff; margin-bottom: 8px; }
.hero--fullscreen .hero-micro { font-size: 11px; color: #fff; font-weight: 500; margin-bottom: 8px; }
.hero--fullscreen .hero-guarantee { font-size: 11px; color: #fff; margin-top: 8px; }

/* Buttons for TOP hero */
.btn-primary-top {
  display: block;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  padding: 16px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  min-height: 48px;
  box-shadow: 0 4px 12px rgba(212,162,78,0.3);
}
.btn-primary-top:hover { background: #C49440; transform: translateY(-2px); }
.btn-outline-light {
  display: block;
  width: 100%;
  padding: 12px;
  background: rgba(0,0,0,0.15);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-btn);
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
  min-height: 44px;
  margin-top: 8px;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.08); }
.btn-outline-primary {
  display: block;
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-btn);
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
  min-height: 44px;
  margin-top: 8px;
}
.btn-outline-primary:hover { background: rgba(2,127,65,0.06); }

/* ─── TOP: Trust Stats Bar ─── */
.trust-stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
}
.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
.trust-stats-num {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--color-primary-dark);
  line-height: 1.2;
}
.trust-stats-num small { font-size: 0.5em; }
.trust-stats-label { font-size: 11px; color: var(--color-text-sub); line-height: 1.3; }

/* ─── TOP: Section heading (centered) ─── */
.section-heading-center {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(22px, calc(18.36px + 1.14vw), 30px);
  line-height: 1.5;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 24px;
}
.section-lead-center {
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

/* ─── TOP: Flow Comparison ─── */
.flow-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.flow-compare-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 0;
  padding: 24px 16px;
}
.flow-compare-card--bad { opacity: 0.85; }
.flow-compare-card--good { border-color: var(--color-primary); box-shadow: 0 0 0 1px var(--color-primary); }
.flow-compare-title {
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.flow-compare-title--bad { color: var(--color-text-light); }
.flow-compare-title--good { color: var(--color-primary); }
.flow-compare-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.flow-compare-step { font-size: 12px; color: var(--color-text); text-align: center; line-height: 1.4; }
.flow-compare-arrow { color: var(--color-text-light); font-size: 12px; }
.flow-compare-loop { font-size: 11px; color: var(--color-danger); font-weight: 500; }
.flow-compare-result { font-size: 11px; color: var(--color-primary); font-weight: 700; }

/* ─── TOP: Features List ─── */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}
.feature-item {
  display: flex;
  gap: 16px;
  background: var(--color-primary-light);
  border-radius: 0;
  padding: 24px;
  border: 1px solid rgba(2,127,65,0.15);
}
.feature-icon {
  flex-shrink: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 18px;
  margin-top: 2px;
}
.feature-item strong { display: block; font-size: 15px; color: var(--color-text); margin-bottom: 4px; }
.feature-item p { font-size: 13px; color: var(--color-text-sub); line-height: 1.6; margin: 0; }

/* ─── TOP: Steps (treatment flow with images) ─── */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.step-item { display: flex; gap: 16px; }
.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.step-content { flex: 1; }
.step-title { font-weight: 700; font-size: 16px; color: var(--color-text); margin-bottom: 4px; }
.step-desc { font-size: 14px; color: var(--color-text-sub); line-height: 1.7; }
.step-desc a { color: var(--color-primary); }
.step-image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--color-section-alt);
  border-radius: 0;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--color-text-light);
  border: 1px dashed var(--color-border);
}
.flow-phase-label {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: var(--radius-btn);
  margin-bottom: 16px;
}

/* ─── TOP: Review Fact ─── */
.review-fact {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 0;
  padding: 24px;
}
.review-fact-icon { flex-shrink: 0; }
.review-fact-score {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text);
}
.review-fact-score small { font-size: 0.75em; font-weight: 500; color: var(--color-text-sub); }
.review-fact-note { font-size: 12px; color: var(--color-text-light); margin-top: 4px; }
.review-fact-note a { color: var(--color-primary); text-decoration: none; }
.review-fact-note a:hover { text-decoration: underline; }

/* ─── TOP: Persona Grid ─── */
.persona-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.persona-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 0;
}
.persona-check { color: var(--color-primary); flex-shrink: 0; margin-top: 2px; font-weight: 700; }

/* ─── TOP: Director Block ─── */
.director-block {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 0;
  padding: 24px;
}
.director-photo {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-section-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--color-text-light);
  overflow: hidden;
}
.director-photo img { width: 100%; height: 100%; object-fit: cover; }
.director-quote { font-size: 15px; line-height: 1.8; color: var(--color-text); margin-bottom: 8px; }
.director-name { font-size: 13px; font-weight: 700; color: var(--color-text); }

/* ─── TOP: CTA Block ─── */
.cta-block {
  text-align: center;
  background: #fff;
  border-radius: 0;
  padding: 32px 24px;
  border: 2px solid var(--color-primary);
}
.cta-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.5;
}
.cta-price {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 2px;
}
.cta-note { font-size: 13px; color: var(--color-text-sub); margin-bottom: 16px; }
.cta-micro { font-size: 12px; color: var(--color-primary); font-weight: 500; margin-bottom: 8px; }
.cta-guarantee { font-size: 12px; color: var(--color-text-sub); margin-top: 8px; }

/* ─── TOP: Price Table ─── */
.price-table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 14px;
  word-break: break-word;
}
.price-table th,
.price-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}
.price-table th { font-weight: 500; color: var(--color-text-light); font-size: 12px; background: var(--color-section-alt); }
.price-table td:last-child { text-align: right; font-weight: 700; }
.price-highlight { background: rgba(2,127,65,0.04); }

/* ─── TOP: Sports Section ─── */
.sports-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 0;
  padding: 16px;
}
.sports-card--highlight {
  background: var(--color-primary-gradient);
  color: #fff;
  border: none;
  padding: 24px;
  margin-bottom: 16px;
}
.sports-card-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.sports-card--highlight .sports-card-label { color: #fff; }
.sports-card-team { font-family: var(--font-serif); font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.sports-card--highlight .sports-card-team { font-size: 20px; }
.sports-card-desc { font-size: 12px; color: var(--color-text-light); margin-bottom: 8px; }
.sports-card--highlight .sports-card-desc { color: #fff; }
.sports-card-result { font-weight: 700; font-size: 13px; color: var(--color-primary); }
.sports-card--highlight .sports-card-result { color: #fff; font-size: 15px; font-weight: 700; }
.sports-card-result small { font-weight: 400; font-size: 0.75em; display: block; margin-top: 2px; color: #fff; }
.sports-card-note { font-size: 13px; line-height: 1.7; color: #fff; margin-top: 8px; }
.sports-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* ─── TOP: Research Card & Roadmap ─── */
.research-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 0;
  padding: 24px;
}
.research-journal { font-weight: 700; color: var(--color-accent); font-size: 14px; margin-bottom: 8px; }
.research-title { font-weight: 700; font-size: 14px; color: var(--color-text); margin-bottom: 8px; line-height: 1.5; }
.research-doi { font-size: 12px; color: var(--color-primary); word-break: break-all; }
.research-summary {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-sub);
}
.roadmap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.roadmap-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 0;
}
.roadmap-status {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  height: fit-content;
  margin-top: 2px;
}
.roadmap-item--done .roadmap-status { background: var(--color-primary); color: #fff; }
.roadmap-item--active .roadmap-status { background: var(--color-accent); color: #fff; }
.roadmap-item--planned .roadmap-status { background: var(--color-section-alt); color: var(--color-text-light); }
.roadmap-content strong { display: block; font-size: 14px; color: var(--color-text); margin-bottom: 4px; }
.roadmap-content p { font-size: 13px; color: var(--color-text-sub); line-height: 1.7; margin: 0; }

/* ─── TOP: Tech Grid ─── */
.tech-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tech-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 0;
  padding: 24px;
}
.tech-card-title { font-weight: 700; font-size: 16px; color: var(--color-text); margin-bottom: 8px; }
.tech-card-desc { font-size: 14px; color: var(--color-text-sub); line-height: 1.7; margin: 0; }

/* ─── TOP: Section background variants ─── */
.section-bg-alt { background: var(--color-section-alt); padding: 48px 0; }
.section-bg-white { background: #fff; padding: 48px 0; }
.section-bg-primary { background: var(--color-primary); color: #fff; padding: 48px 0; }
.section-bg-primary-light { background: var(--color-primary-light); padding: 48px 0; }

/* ─── TOP: Footer (dark) ─── */
.footer-dark {
  background: var(--color-dark);
  color: #fff;
  padding: 48px 0 32px;
}
.footer-dark-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 32px;
}
.footer-dark-nav a {
  color: #fff;
  font-size: 13px;
  padding: 4px 0;
  text-decoration: none;
}
.footer-dark-nav a:hover { color: #fff; }
.footer-dark-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-dark-badge {
  font-size: 11px;
  color: #fff;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-btn);
}
.footer-dark-company { font-size: 12px; color: #fff; margin-bottom: 8px; }
.footer-dark-copy { font-size: 11px; color: rgba(255,255,255,0.7); }
.footer-dark-supervisor {
  font-size: 12px;
  color: #fff;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.15);
  line-height: 1.7;
}
.footer-dark-supervisor a { color: #fff; text-decoration: none; }
.footer-dark-supervisor a:hover { color: #fff; }

/* ─── TOP: Gallery (auto-scroll) ─── */
.gallery-section { overflow: hidden; padding: 32px 0; }
.gallery-track {
  display: flex;
  gap: 16px;
  animation: gallery-scroll 20s linear infinite;
  width: max-content;
}
.gallery-slide {
  flex-shrink: 0;
  width: 280px;
  height: 200px;
  overflow: hidden;
  background: var(--color-section-alt);
  border: 1px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--color-text-light);
}
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; }
@keyframes gallery-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── TOP: Menu Card Grid ─── */
.menu-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.menu-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
  text-decoration: none;
  color: var(--color-text);
  transition: box-shadow 0.3s, transform 0.3s;
}
.menu-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.menu-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-section-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--color-text-light);
  overflow: hidden;
}
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-card-body { padding: 12px 14px; }
.menu-card-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.menu-card-link { font-size: 12px; color: var(--color-primary); font-weight: 600; }

/* ─── TOP: Symptom Category Cards ─── */
.symptom-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.symptom-category-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.symptom-category-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-primary);
}
.symptom-category-list { list-style: none; padding: 0; margin: 0 0 12px; }
.symptom-category-list li { font-size: 14px; padding: 4px 0; }
.symptom-category-list a { color: var(--color-text); text-decoration: none; }
.symptom-category-list a:hover { color: var(--color-primary); }
.symptom-category-more { font-size: 12px; color: var(--color-primary); font-weight: 600; text-decoration: none; }
.symptom-category-more:hover { text-decoration: underline; }
.section-cta-link { display: block; text-align: center; margin-top: 24px; }
.section-cta-link a {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 12px 32px;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-btn);
  transition: background 0.2s;
}
.section-cta-link a:hover { background: rgba(2,127,65,0.06); }

/* ─── TOP: 3ヶ条 Accordion (Declare) ─── */
.declare-section {
  background-color: #f0f7f2;
  padding: clamp(48px, calc(36px + 3.75vw), 80px) 0;
}
.declare-title {
  color: #333;
  font-size: clamp(22px, calc(18.36px + 1.14vw), 30px);
  font-weight: 700;
  letter-spacing: .08em;
  margin: 0 0 4px;
  text-align: center;
}
.declare-subtitle {
  color: var(--color-primary);
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: clamp(28px, calc(20px + 2.5vw), 52px);
  margin-top: 4px;
}
.declare-intro {
  color: #666;
  font-size: clamp(13px, calc(11.73px + .4vw), 15px);
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto 24px;
  text-align: center;
}
.declare-list {
  display: flex;
  flex-direction: column;
  max-width: 825px;
  margin: 0 auto;
  padding: 0 1rem;
}
.declare-item {
  background: #fff;
  border: 1px solid #d6e2d8;
  border-bottom: none;
}
.declare-item:last-child { border-bottom: 1px solid #d6e2d8; }
.declare-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 18px 22px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s;
  font-family: inherit;
}
.declare-btn:hover { background-color: #f7fbf8; }
.declare-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.declare-num {
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.declare-item-title {
  color: #333;
  font-size: clamp(16px, calc(14.73px + .4vw), 18px);
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
.declare-icon {
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
  transition: transform 0.25s;
}
.declare-item.open .declare-icon { transform: rotate(45deg); }
.declare-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.declare-item.open .declare-body {
  max-height: 500px;
}
.declare-body-inner {
  border-top: 2px solid #3b634c;
  padding: 22px 20px;
  color: #555;
  font-size: clamp(13px, calc(11.73px + .4vw), 15px);
  line-height: 1.9;
  padding-left: 3rem;
}
@media (max-width: 640px) {
  .declare-btn { padding: 14px 16px; }
  .declare-num { font-size: 22px; }
  .declare-intro { margin-bottom: 18px; }
  .declare-body-inner { border-top-width: 1px; padding: 16px; padding-left: 16px; }
}

/* ─── TOP: Brand Floating CTA ─── */
.floating-cta--brand { justify-content: center; }
.floating-cta--brand .floating-btn { max-width: 400px; border-radius: var(--radius-btn); }
.floating-cta--brand .floating-btn.store { background: var(--color-accent); color: #fff; }
.floating-cta.hidden { transform: translateY(100%); }

/* ─── TOP: Footer Policy Links ─── */
.footer-dark-policy { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.footer-dark-policy a { color: #fff; font-size: 11px; text-decoration: none; }
.footer-dark-policy a:hover { text-decoration: underline; }

/* ─── TOP: Responsive ─── */
@media (max-width: 560px) {
  .persona-grid { grid-template-columns: 1fr; }
  .flow-compare { grid-template-columns: 1fr; gap: 12px; }
  .trust-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-card-grid { grid-template-columns: 1fr; }
  .symptom-category-grid { grid-template-columns: 1fr; }
}

/* ─── Responsive ─── */
@media (max-width: 767px) {
  .footer-nav { grid-template-columns: 1fr; gap: 28px; padding: 0 24px 32px; }
  .footer-nav-title { font-size: 13px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid #ddd; }
  .footer-logo { max-width: clamp(144px, calc(100px + 14vw), 240px); }
  .footer-logo-wrap { padding-bottom: clamp(24px, calc(17px + 2.3vw), 40px); }
  .site-footer { padding-bottom: 0; }
}

@media (max-width: 1023px) {
  .menu-body { flex-direction: column; }
  .menu-col { padding-right: 0; width: 100%; }
  .menu-col-left { padding-right: 0; }
}

@media (max-width: 767px) {
  .menu-col-left { margin-bottom: clamp(12px, calc(7px + 1.7vw), 24px); order: 1; }
  .menu-col-right { order: 2; }
}

/* Sports card with photo - side by side on PC, stacked on mobile */
.sports-card--with-photo { display: flex; flex-wrap: wrap; gap: 24px; }
.sports-card--with-photo .sports-card-body { flex: 1 1 280px; }
.sports-card--with-photo .sports-card-photo { flex: 1 1 220px; max-width: 300px; }
.sports-card--with-photo .sports-card-photo img { width: 100%; height: auto; border-radius: 0; display: block; }

@media (max-width: 540px) {
  .sports-card--with-photo .sports-card-photo { max-width: 100%; }
}

@media (min-width: 768px) {
  .hero h1 { font-size: clamp(28px, calc(20px + 2vw), 38px); }
  h2 { font-size: clamp(24px, calc(20px + 1.14vw), 32px); }
  .hero-stats { flex-wrap: nowrap; }
  .type-grid { display: grid; grid-template-columns: 1fr 1fr; }
  /* TOP page desktop */
  .hero--fullscreen .hero-catchcopy { font-size: 2.25rem; }
  .hero--fullscreen h1 { font-size: 1.75rem; }
  .hero--fullscreen .hero-overlay { padding-left: calc((100% - 640px) / 2); padding-right: calc((100% - 640px) / 2); }
  .section-heading-center { font-size: clamp(24px, calc(20px + 1.14vw), 32px); }
  .floating-cta { display: none; }
  body { padding-bottom: 0; }
}

@media (min-width: 1024px) {
  .hero { padding: 64px 20px 56px; }
}

/* ─── 症状一覧ページ ─── */
.symptom-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.symptom-list-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  transition: background 0.15s;
}
.symptom-list-card:first-child {
  border-top: 1px solid var(--color-border);
}
.symptom-list-card:hover {
  background: var(--color-bg-light);
}
.symptom-list-card-body {
  flex: 1;
  min-width: 0;
}
.symptom-list-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}
.symptom-list-card-desc {
  font-size: 13px;
  color: var(--color-text-sub);
  line-height: 1.5;
}
.symptom-list-card-arrow {
  font-size: 20px;
  color: var(--color-primary);
  font-weight: 700;
  margin-left: 12px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .symptom-list-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
  }
  .symptom-list-card-title {
    font-size: 17px;
  }
}
