@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;900&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ========================================
   CSS Variables
   ======================================== */
:root {
  --navy: #1B2A4A;
  --navy-light: #2D4066;
  --teal: #0D9488;
  --teal-light: #14B8A6;
  --teal-pale: #F0FDFA;
  --orange: #F97316;
  --orange-hover: #EA580C;
  --white: #FFFFFF;
  --off-white: #F8FAFB;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --text-primary: #1B2A4A;
  --text-secondary: #4B5563;
  --text-muted: #9CA3AF;
  --border: #E5E7EB;
  --font-heading: 'DM Sans', 'Noto Sans JP', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --max-width: 1120px;
  --header-height: 72px;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.8;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* ========================================
   Utility
   ======================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 640px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-desc {
  margin: 0 auto;
}

.photo-placeholder {
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: var(--gray-50);
}

/* ========================================
   Reveal Animation
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 1px 12px rgba(27, 42, 74, 0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
}

.logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.2;
}

.logo-text small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--gray-500);
  letter-spacing: 0.02em;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-desktop a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--navy);
}

.nav-desktop a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  border: 2px solid var(--orange);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 32px 24px;
  overflow-y: auto;
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}

.nav-mobile .mobile-cta {
  display: block;
  text-align: center;
  margin-top: 24px;
  background: transparent;
  color: var(--orange);
  font-size: 16px;
  font-weight: 600;
  padding: 16px;
  border-radius: 8px;
  border: 2px solid var(--orange);
}

/* ========================================
   Hero
   ======================================== */
.hero {
  padding: calc(var(--header-height) + 64px) 0 80px;
  background: var(--white);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 900;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.hero h1 span {
  color: var(--teal);
}

.hero-sub {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-features {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
}

.hero-feature {
  text-align: center;
}

.hero-feature-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.hero-feature-num small {
  font-size: 14px;
  font-weight: 500;
}

.hero-feature-label {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
}

.hero-visual {
  position: relative;
}

.hero-visual .photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
}

.hero-note {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 12px;
  line-height: 1.6;
}

/* ========================================
   CTA Button
   ======================================== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--orange);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 8px;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: none;
}

.btn-cta:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.25);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--teal);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: 2px solid var(--teal);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-cta-outline:hover {
  background: var(--teal);
  color: var(--white);
}

/* ========================================
   Floating CTA
   ======================================== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
}

.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta .btn-cta {
  font-size: 14px;
  padding: 14px 24px;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(27, 42, 74, 0.12);
}

/* ========================================
   Subjects Section
   ======================================== */
.subjects {
  padding: 80px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.subjects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.subject-item {
  background: var(--white);
  padding: 40px 32px;
  transition: background 0.2s;
}

.subject-item:hover {
  background: var(--teal-pale);
}

.subject-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.subject-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.5;
}

.subject-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.subject-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.subject-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.subject-link::after {
  content: '\2192';
  transition: transform 0.2s;
}

.subject-item:hover .subject-link::after {
  transform: translateX(4px);
}

/* ========================================
   Reasons Section
   ======================================== */
.reasons {
  padding: 96px 0;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--navy);
  border-bottom: 1px solid var(--border);
}

.reason-item {
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  position: relative;
}

.reason-item:last-child {
  border-right: none;
}

.reason-num {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.3;
}

.reason-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.reason-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   Flow Section
   ======================================== */
.flow {
  padding: 96px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.flow-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -1px;
  width: 24px;
  height: 2px;
  background: var(--teal);
  z-index: 1;
}

.flow-step-num {
  width: 56px;
  height: 56px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  background: var(--white);
  position: relative;
  z-index: 2;
}

.flow-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.flow-step-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 8px;
}

.flow-step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
  padding: 96px 0;
}

.testimonials-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.testimonial-item {
  background: var(--white);
  padding: 40px 32px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 10px;
}

.testimonial-meta h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-meta span {
  font-size: 12px;
  color: var(--gray-500);
}

.testimonial-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.testimonial-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 8px;
  display: inline-block;
  border-bottom: 1px solid var(--teal);
  padding-bottom: 2px;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
  padding: 96px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.6;
}

.faq-question::before {
  content: 'Q';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  border-radius: 4px;
}

.faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  margin-top: 2px;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gray-400);
  transition: transform 0.3s;
}

.faq-toggle::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-answer-inner {
  padding: 0 0 24px 44px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.footer-col p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-map {
  margin-top: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map iframe {
  width: 100%;
  height: 240px;
  border: none;
  border-radius: 8px;
  filter: contrast(1.05);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 24px;
}

/* ========================================
   Breadcrumb
   ======================================== */
.breadcrumb {
  padding: calc(var(--header-height) + 20px) 0 0;
  font-size: 12px;
  color: var(--gray-500);
}

.breadcrumb a {
  color: var(--gray-500);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--navy);
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--gray-300);
}

/* ========================================
   Sub Page Hero
   ======================================== */
.sub-hero {
  padding: 40px 0 64px;
  border-bottom: 1px solid var(--border);
}

.sub-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.sub-hero .hero-badges {
  margin-bottom: 20px;
}

.sub-hero h1 {
  font-size: 32px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 12px;
}

.sub-hero h1 span {
  color: var(--teal);
}

.sub-hero-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
}

.sub-hero-visual .photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
}

.sub-hero-note {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 16px;
  line-height: 1.6;
}

/* ========================================
   Concerns Section
   ======================================== */
.concerns {
  padding: 80px 0;
}

.concerns-list {
  max-width: 760px;
  margin: 0 auto;
}

.concern-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.concern-item:first-child {
  border-top: 1px solid var(--border);
}

.concern-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid var(--teal);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.concern-check svg {
  width: 14px;
  height: 14px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
}

.concern-item p {
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
}

/* ========================================
   About Disease Section
   ======================================== */
.about-disease {
  padding: 80px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-disease-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-disease-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.4;
}

.about-disease-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-disease-visual .photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
}

/* ========================================
   Pricing Tables
   ======================================== */
.pricing {
  padding: 96px 0;
}

.pricing-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--navy);
}

.pricing-info {
  display: flex;
  gap: 16px;
}

.pricing-info-item {
  font-size: 13px;
  color: var(--text-secondary);
}

.pricing-info-item strong {
  color: var(--teal);
  font-weight: 700;
}

.pricing-table {
  width: 100%;
  margin-bottom: 48px;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.pricing-table thead th {
  font-weight: 600;
  color: var(--navy);
  background: var(--gray-50);
  font-size: 13px;
  border-bottom: 2px solid var(--border);
}

.pricing-table tbody tr:hover {
  background: var(--teal-pale);
}

.pricing-table .plan-name {
  font-weight: 600;
  color: var(--navy);
}

.pricing-table .plan-drugs {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
}

.pricing-table .price-main {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.pricing-table .price-main small {
  font-size: 12px;
  font-weight: 500;
}

.pricing-table .price-tax {
  font-size: 11px;
  color: var(--gray-500);
}

.pricing-note {
  font-size: 11px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-top: 16px;
}

/* ========================================
   Cases / Before-After
   ======================================== */
.cases {
  padding: 80px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.case-item {
  background: var(--white);
  padding: 32px;
}

.case-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.case-photos .photo-placeholder {
  aspect-ratio: 1;
  border-radius: 4px;
  font-size: 11px;
}

.case-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
}

.case-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 4px;
}

.case-label-before {
  color: var(--gray-500);
  background: var(--gray-100);
}

.case-label-after {
  color: var(--teal);
  background: var(--teal-pale);
}

.case-photo-wrap {
  position: relative;
}

.case-photo-wrap span {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  background: rgba(27, 42, 74, 0.7);
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.case-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.case-item p {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ========================================
   Drug Comparison
   ======================================== */
.drug-compare {
  padding: 80px 0;
}

.compare-table {
  width: 100%;
  border: 1px solid var(--border);
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: center;
  font-size: 14px;
  border: 1px solid var(--border);
  vertical-align: middle;
}

.compare-table thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
}

.compare-table thead th:first-child {
  background: var(--gray-700);
}

.compare-table tbody th {
  background: var(--gray-50);
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  font-size: 13px;
}

.compare-table tbody td {
  font-size: 13px;
  color: var(--text-secondary);
}

.compare-highlight {
  background: var(--teal-pale);
  font-weight: 600;
  color: var(--teal) !important;
}

/* ========================================
   Trial Plan Section
   ======================================== */
.trial {
  padding: 80px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.trial-item {
  background: var(--white);
  padding: 32px;
}

.trial-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.trial-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.trial-price {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.trial-price small {
  font-size: 13px;
  font-weight: 500;
}

.trial-price-tax {
  font-size: 11px;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.trial-drugs {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.7;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ========================================
   GLP-1 Section (Diet specific)
   ======================================== */
.glp1 {
  padding: 80px 0;
}

.glp1-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 40px;
}

.glp1-type {
  background: var(--white);
  padding: 40px 32px;
}

.glp1-type-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  border: 1px solid var(--teal);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.glp1-type h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.glp1-type p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.glp1-type .drug-list {
  font-size: 13px;
  color: var(--gray-600);
}

.glp1-type .drug-list dt {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.glp1-type .drug-list dd {
  margin-bottom: 12px;
  padding-left: 16px;
  border-left: 2px solid var(--border);
}

/* ========================================
   CTA Band
   ======================================== */
.cta-band {
  padding: 64px 0;
  background: var(--navy);
  text-align: center;
}

.cta-band h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-band p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

.cta-band .btn-cta {
  font-size: 18px;
  padding: 18px 48px;
  color: var(--orange);
  border-color: var(--orange);
  background: transparent;
}

.cta-band .btn-cta:hover {
  background: var(--orange);
  color: var(--white);
}

/* ========================================
   Legal Section
   ======================================== */
.legal-notice {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.legal-notice h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.legal-notice p {
  font-size: 11px;
  color: var(--gray-400);
  line-height: 1.8;
}

/* ========================================
   Sub-page Reasons (compact)
   ======================================== */
.reasons-compact {
  padding: 80px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reasons-compact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--navy);
  border-bottom: 1px solid var(--border);
}

.reasons-compact-grid .reason-item {
  background: var(--white);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-visual {
    order: -1;
    max-width: 480px;
  }

  .sub-hero-inner {
    grid-template-columns: 1fr;
  }

  .sub-hero-visual {
    order: -1;
    max-width: 480px;
  }

  .subjects-grid {
    grid-template-columns: 1fr;
  }

  .reasons-grid,
  .reasons-compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reason-item:nth-child(2) {
    border-right: none;
  }

  .flow-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .flow-step:not(:last-child)::after {
    display: none;
  }

  .testimonials-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cases-grid,
  .trial-grid {
    grid-template-columns: 1fr;
  }

  .about-disease-grid {
    grid-template-columns: 1fr;
  }

  .glp1-types {
    grid-template-columns: 1fr;
  }

  .compare-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  body {
    font-size: 14px;
  }

  .nav-desktop, .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .container {
    padding: 0 16px;
  }

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

  .hero {
    padding: calc(var(--header-height) + 40px) 0 56px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero-features {
    gap: 16px;
  }

  .hero-feature-num {
    font-size: 22px;
  }

  .sub-hero h1 {
    font-size: 24px;
  }

  .reasons-grid,
  .reasons-compact-grid {
    grid-template-columns: 1fr;
  }

  .reason-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .flow-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .pricing-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 12px;
    font-size: 13px;
  }

  .pricing-table .price-main {
    font-size: 16px;
  }

  .cta-band h2 {
    font-size: 20px;
  }

  .cta-band .btn-cta {
    font-size: 16px;
    padding: 16px 32px;
    width: 100%;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }

  .floating-cta .btn-cta {
    width: 100%;
    justify-content: center;
  }
}
