:root {
  --bg: #ffffff;
  --bg-soft: #f8f5f1;
  --bg-soft-2: #fcfaf6;
  --bg-card: #ffffff;
  --line: #e8e3dd;
  --line-soft: #f0ede7;
  --ink: #1a1816;
  --ink-mid: #57524a;
  --ink-soft: #8a857c;
  --ink-muted: #b5b0a6;
  --red: #c8102e;
  --red-dark: #a50c25;
  --red-soft: #fceef0;
  --red-tint: #fdf5f6;
  --green-line: #06c755;
  --green-line-dark: #05a548;
  --serif: "Noto Serif JP", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  --shadow-card: 0 2px 8px rgba(26, 24, 22, 0.04), 0 8px 24px rgba(26, 24, 22, 0.06);
  --shadow-cta-line: 0 8px 0 0 var(--green-line-dark), 0 12px 24px rgba(6, 199, 85, 0.32);
  --shadow-cta-line-press: 0 2px 0 0 var(--green-line-dark), 0 4px 8px rgba(6, 199, 85, 0.32);
  --shadow-cta-red: 0 8px 0 0 var(--red-dark), 0 12px 24px rgba(200, 16, 46, 0.3);
  --shadow-cta-red-press: 0 2px 0 0 var(--red-dark), 0 4px 8px rgba(200, 16, 46, 0.3);
  --shadow-float: 0 12px 32px rgba(26, 24, 22, 0.1), 0 4px 12px rgba(26, 24, 22, 0.06);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  background: #ede8e2;
}
body {
  font-family: var(--sans);
  background: #ede8e2;
  color: var(--ink);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}

/* ====== Layout shell ====== */
.lp-shell {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}

.container {
  padding: 0 20px;
}

/* ====== Typography ====== */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-block;
  margin-bottom: 12px;
}
h1 {
  font-family: var(--sans);
  font-size: 44px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
}
h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  color: var(--red);
}
/* HERO h1 — split sizes for ED (large) vs treatment (smaller, accent) */
.hero h1 em.hero-display {
  display: block;
  font-size: 96px;
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 0;
}
.hero h1 em.hero-display .h-treatment {
  display: block;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-top: 2px;
}
h2 {
  font-family: var(--sans);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 14px;
}
h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  color: var(--red);
}
h3 {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -0.012em;
  color: var(--ink);
}
h4 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.lede {
  font-size: 14.5px;
  color: var(--ink-mid);
  line-height: 1.7;
}

/* ====== Buttons - 立体的・押したくなる ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 28px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.005em;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
  text-align: center;
  line-height: 1.2;
  width: 100%;
  position: relative;
}
.btn-line {
  background: var(--green-line);
  color: #fff;
  box-shadow: var(--shadow-cta-line);
}
.btn-line:hover {
  background: #07d860;
  transform: translateY(2px);
  box-shadow:
    0 6px 0 0 var(--green-line-dark),
    0 10px 20px rgba(6, 199, 85, 0.32);
}
.btn-line:active {
  transform: translateY(6px);
  box-shadow: var(--shadow-cta-line-press);
}
.btn-line .line-mark {
  background: #fff;
  color: var(--green-line);
  font-size: 11px;
  padding: 5px 9px;
  border-radius: 6px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-cta-red);
}
.btn-primary:hover {
  background: #d72240;
  transform: translateY(2px);
  box-shadow:
    0 6px 0 0 var(--red-dark),
    0 10px 20px rgba(200, 16, 46, 0.3);
}
.btn-primary:active {
  transform: translateY(6px);
  box-shadow: var(--shadow-cta-red-press);
}
.btn-large {
  padding: 22px 32px;
  font-size: 18px;
}
.btn-arrow::after {
  content: "→";
  font-size: 19px;
  margin-left: 4px;
  transition: transform 0.2s ease;
}
.btn:hover.btn-arrow::after {
  transform: translateX(3px);
}

/* ====== Coupon Banner — compact ticket with bold ¥3,000 OFF ====== */
.coupon-bar {
  position: relative;
  padding: 14px 18px;
  color: #fff;
  line-height: 1.2;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 8px, rgba(255, 255, 255, 0) 8px 18px),
    linear-gradient(135deg, #d31739 0%, #a50c25 100%);
}
/* Scalloped left/right edges via tiny notch pseudo-elements */
.coupon-bar::before,
.coupon-bar::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  background: #ede8e2;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.coupon-bar::before {
  left: -8px;
}
.coupon-bar::after {
  right: -8px;
}
.coupon-ribbon {
  position: absolute;
  top: 6px;
  left: -28px;
  background: #ffd23f;
  color: #1a1816;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 3px 32px;
  transform: rotate(-38deg);
  transform-origin: 50% 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  z-index: 3;
  text-transform: uppercase;
}
.coupon-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-left: 24px;
}
.coupon-amount-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.coupon-eyebrow {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.coupon-amount {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 46px;
  letter-spacing: -0.035em;
  line-height: 0.92;
  color: #fff;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
}
.coupon-amount .yen {
  font-size: 30px;
  font-weight: 800;
  vertical-align: super;
  line-height: 1;
}
.coupon-amount .off {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-left: 6px;
  align-self: center;
  opacity: 0.95;
}
.coupon-pill {
  background: #ffd23f;
  color: #1a1816;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border-radius: 4px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
}

/* ====== TOPBAR — fixed, shown on scroll-up only ====== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  transform: translateY(-100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.topbar.show {
  transform: translateY(0);
}
.topbar-wrap {
  max-width: 480px;
  margin: 0 auto;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.logo .dot {
  color: var(--red);
}
.logo .sub {
  font-size: 9px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.logo-img {
  height: 26px;
  width: auto;
  display: block;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-line);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  box-shadow: 0 2px 0 0 var(--green-line-dark);
  cursor: pointer;
  text-decoration: none;
}
.topbar-line:hover {
  background: #07d860;
}
.topbar-line .line-mark {
  background: #fff;
  color: var(--green-line);
  font-size: 9px;
  padding: 3px 6px;
  border-radius: 4px;
  font-weight: 900;
}
.topbar-menu {
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 8px;
  transition: background 0.15s ease;
}
.topbar-menu:hover {
  background: rgba(26, 24, 22, 0.06);
}
.topbar-menu svg {
  width: 22px;
  height: 22px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* ====== MENU DRAWER (slides in from right) ====== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 24, 22, 0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}
.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  max-width: 360px;
  background: #fbf7f1;
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(26, 24, 22, 0.18);
}
.menu-drawer.open {
  transform: translateX(0);
}
.menu-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.menu-drawer-head .logo {
  font-size: 18px;
}
.menu-close {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.menu-close:hover {
  background: rgba(26, 24, 22, 0.06);
}
.menu-close svg {
  width: 22px;
  height: 22px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.menu-drawer-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 22px 24px 12px;
}
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0 16px;
  flex: 1;
  overflow-y: auto;
}
.menu-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
  text-decoration: none;
  transition: color 0.15s ease;
}
.menu-list li a:hover {
  color: var(--red);
}
.menu-list li a::after {
  content: "›";
  color: var(--red);
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
}
.menu-drawer-foot {
  padding: 16px 20px 24px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.menu-line-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green-line);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 0 0 var(--green-line-dark);
  text-decoration: none;
}
.menu-line-cta:hover {
  background: #07d860;
}
.menu-line-cta .line-mark {
  background: #fff;
  color: var(--green-line);
  font-size: 10px;
  padding: 4px 7px;
  border-radius: 4px;
  font-weight: 900;
}

/* ====== HERO ====== */
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
  background: #fbf7f1;
}

/* HERO STAGE — full-bleed image clipped to viewport-friendly height; all overlays sit on top */
.hero-stage {
  position: relative;
  margin: 0;
  padding: 0;
  aspect-ratio: 480 / 720;
  overflow: hidden;
  background: #fbf7f1;
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-image-wrap picture,
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  display: block;
}
.hero-stage-inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 22px 24px 0;
  pointer-events: none;
}
.hero-stage-inner > * {
  pointer-events: auto;
}
.hero-copy {
  position: relative;
  z-index: 3;
}
.hero h1 {
  margin: 0 0 14px;
  padding-right: 8px;
}
.hero h1 .h1-sub {
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  color: var(--ink-mid);
  letter-spacing: 0;
  line-height: 1.35;
  margin-top: 14px;
  max-width: none;
}
.hero-tagline {
  display: none;
}
.hero-image-area {
  display: none;
}
.hero-price-tag-wrap {
  position: absolute;
  z-index: 4;
  bottom: 220px;
  left: 0;
  right: 0;
  padding: 0 24px;
  display: flex;
  justify-content: flex-start;
  pointer-events: auto;
}

/* PRICE TAG - left-aligned, fits content */
.hero-price-tag {
  background: #fff;
  padding: 14px 22px 16px;
  border-radius: 14px;
  box-shadow:
    0 12px 28px rgba(200, 16, 46, 0.14),
    0 3px 10px rgba(26, 24, 22, 0.06);
  border: 2px solid var(--red);
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0;
  width: auto;
}
.hero-price-tag .lbl {
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 800;
}
.hero-price-tag .v-row {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 1px;
}
.hero-price-tag .v {
  font-size: 56px;
  font-weight: 900;
  color: var(--red);
  line-height: 0.92;
  letter-spacing: -0.04em;
}
.hero-price-tag .v small {
  font-size: 22px;
  font-weight: 800;
}
.hero-price-tag .unit {
  font-size: 14px;
  color: var(--ink-mid);
  font-weight: 700;
  letter-spacing: 0.02em;
  align-self: flex-end;
  padding-bottom: 4px;
}

/* HERO STATS - 3 transparent overlay cards on image bottom */
.hero-stats-wrap {
  position: absolute;
  z-index: 4;
  bottom: 110px;
  left: 0;
  right: 0;
  padding: 0 24px;
  pointer-events: auto;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.hero-stat {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 10px 6px 9px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(26, 24, 22, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.hero-stat .stat-ic {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: var(--red);
}
.hero-stat .stat-ic svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.8;
}
.hero-stat .stat-ic-text {
  font-size: 11px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.02em;
}
.hero-stat .num {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: var(--red);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.hero-stat .num small {
  font-size: 12px;
}
.hero-stat .lbl {
  font-size: 8.5px;
  color: var(--ink-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 800;
}
.hero-stat .stat-ic {
  display: none;
}

/* HERO CTA — overlay near bottom of hero stage */
.hero-cta-wrap {
  position: absolute;
  z-index: 5;
  bottom: 22px;
  left: 0;
  right: 0;
  padding: 0 24px;
  pointer-events: auto;
}
.hero-cta-stack {
  padding-top: 0;
}
.hero-fineprint {
  margin-top: 6px;
  font-size: 9px;
  color: var(--ink-soft);
  line-height: 1.4;
  text-align: center;
}

/* ====== TOC - 2-column button grid ====== */
.toc {
  background: var(--bg-soft);
  padding: 32px 20px 36px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.toc-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.toc-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 100%);
  margin: 12px auto 20px;
  border-radius: 2px;
}
.toc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.toc-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  box-shadow: 0 1px 3px rgba(26, 24, 22, 0.05);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
  text-align: left;
  line-height: 1.25;
}
.toc-grid a:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(200, 16, 46, 0.12);
}
.toc-grid a::after {
  content: "›";
  font-size: 22px;
  color: var(--red);
  font-weight: 400;
  line-height: 1;
  margin-left: 8px;
  flex-shrink: 0;
}

/* ====== Sections ====== */
section {
  padding: 50px 0;
  position: relative;
}
.sec-head {
  text-align: center;
  margin-bottom: 28px;
}
.sec-head .lede {
  margin-top: 12px;
}

/* ====== B03 Who it's for ====== */
.who-section {
  background: var(--bg-soft);
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.who-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  border: 1px solid var(--line);
}
.who-icon {
  width: 40px;
  height: 40px;
  background: var(--red-soft);
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--red);
}
.who-card p {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}
.who-card p em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--red);
  font-weight: 700;
}
.who-helpline {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-mid);
}

/* ====== B04 Why Mimipo ====== */
.why-stack {
  display: grid;
  gap: 12px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
}
.why-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  font-weight: 700;
}
.why-card .body {
  flex: 1;
}
.why-card h3 {
  margin-bottom: 6px;
  font-size: 16px;
}
.why-list {
  list-style: none;
  margin: 0;
}
.why-list li {
  padding: 4px 0;
  color: var(--ink-mid);
  font-size: 13px;
  display: flex;
  gap: 8px;
  line-height: 1.5;
}
.why-list li::before {
  content: "✓";
  color: var(--red);
  font-weight: 800;
  flex-shrink: 0;
}

/* ====== B05 PDE5 edu ====== */
.pde5-section {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.pde5-content {
  text-align: center;
}
.pde5-illust {
  margin: 8px auto 24px;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 380px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--bg-soft);
  box-shadow: 0 8px 24px rgba(26, 24, 22, 0.06);
}
.pde5-illust picture,
.pde5-illust img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pde5-content p {
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 14px;
  text-align: left;
}
.pde5-content p strong {
  color: var(--ink);
  font-weight: 700;
}
.pde5-content p em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--red);
  font-weight: 700;
  font-size: 1.05em;
}
.pde5-list {
  list-style: none;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line);
  margin: 16px 0;
  overflow: hidden;
}
.pde5-list li {
  padding: 12px 18px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.pde5-list li:last-child {
  border-bottom: none;
}
.pde5-list li strong {
  font-weight: 800;
  color: var(--ink);
}
.pde5-list li span {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pde5-note {
  text-align: center !important;
  font-size: 12px !important;
  color: var(--ink-soft) !important;
  margin-top: 16px !important;
}

/* ====== B06 Compare with Accordion (NEW UNIFIED) ====== */
.comp-section {
  background: var(--bg-soft);
}
.comp-list {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.comp-row {
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.15s ease;
}
.comp-row:last-child {
  border-bottom: none;
}
.comp-row.open {
  background: var(--bg-soft-2);
}
.comp-row.featured {
  background: linear-gradient(180deg, var(--red-tint) 0%, #fff 100%);
}
.comp-row.featured.open {
  background: linear-gradient(180deg, var(--red-tint) 0%, var(--bg-soft-2) 100%);
}
.comp-row-head {
  padding: 16px 18px;
  cursor: pointer;
  user-select: none;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
}
.comp-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.comp-name small {
  display: block;
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 3px;
}
.comp-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 7px;
  border-radius: 4px;
  margin-left: 6px;
  text-transform: uppercase;
  vertical-align: middle;
  line-height: 1.3;
}
.comp-price {
  font-size: 24px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.025em;
  line-height: 1;
}
.comp-price small {
  display: block;
  font-size: 10px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-top: 3px;
  text-transform: uppercase;
}
.comp-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.2s ease;
}
.comp-row.open .comp-toggle {
  transform: rotate(180deg);
}
.comp-row.open .comp-toggle::before {
  content: "−";
}
.comp-toggle::before {
  content: "+";
}
.comp-row.open .comp-toggle::before {
  content: "";
}
.comp-row.open .comp-toggle::after {
  content: "−";
  transform: rotate(180deg);
}

/* Compare quick-stats row (always visible) */
.comp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0 18px 14px;
  border-bottom: 1px solid var(--line-soft);
}
.comp-row:not(.open) .comp-stats {
  border-bottom: none;
  padding-bottom: 16px;
}
.comp-stat-item {
  text-align: center;
  padding: 8px 4px;
  border-right: 1px solid var(--line-soft);
}
.comp-stat-item:last-child {
  border-right: none;
}
.comp-stat-item .lbl {
  font-size: 9px;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 5px;
}
.comp-stat-item .val {
  font-size: 13px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.3;
}
.comp-stat-item .val.h {
  color: var(--red);
}

/* Compare details (accordion content) */
.comp-details {
  padding: 16px 18px 22px;
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding-top: 0;
  padding-bottom: 0;
}
.comp-row.open .comp-details {
  max-height: 600px;
  padding-top: 6px;
  padding-bottom: 22px;
}
.comp-tagline {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.45;
  font-weight: 600;
}
.comp-feat-list {
  list-style: none;
  margin-bottom: 16px;
}
.comp-feat-list li {
  padding: 5px 0;
  color: var(--ink-mid);
  font-size: 13.5px;
  display: flex;
  gap: 8px;
  line-height: 1.55;
}
.comp-feat-list li::before {
  content: "✓";
  color: var(--red);
  font-weight: 800;
  flex-shrink: 0;
}

/* ====== B07 Trust band (red) ====== */
.trust-band {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.trust-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
}
.trust-band-head {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}
.trust-band-head .eyebrow {
  color: rgba(255, 255, 255, 0.85);
  font-size: 9px;
  margin-bottom: 8px;
}
.trust-band-head h2 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 0;
}
.trust-band-head h2 em {
  color: #fff;
  opacity: 0.7;
}
.tb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  text-align: center;
  position: relative;
}
.tb-item {
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.tb-item:nth-child(2n) {
  border-right: none;
}
.tb-item:nth-last-child(-n + 2) {
  border-bottom: none;
}
.tb-item .num {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}
.tb-item .num small {
  font-size: 19px;
}
.tb-item .lbl {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  font-weight: 700;
}

/* ====== B08 Counterfeit ====== */
.warn-section {
  background: var(--bg-soft);
}
.warn-stat {
  text-align: center;
  margin: 24px auto 28px;
}
.warn-stat .big {
  font-size: 96px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
  font-family: var(--sans);
}
.warn-stat .big sup {
  font-size: 0.45em;
}
.warn-stat .label {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.65;
}
.warn-stat .label strong {
  color: var(--ink);
  font-weight: 700;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.compare-table th,
.compare-table td {
  padding: 13px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
  vertical-align: middle;
}
.compare-table tr:last-child th,
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-table thead th {
  background: var(--bg-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 800;
}
.compare-table thead th.col-good {
  color: var(--red);
}
.compare-table tbody th {
  color: var(--ink-mid);
  font-weight: 700;
  width: 38%;
  font-size: 12px;
}
.compare-table .bad {
  color: var(--ink-soft);
}
.compare-table .bad::before {
  content: "✗ ";
  color: #c8c2b8;
  font-weight: 800;
}
.compare-table .good {
  color: var(--red);
  font-weight: 700;
}
.compare-table .good::before {
  content: "✓ ";
  font-weight: 800;
}

.warn-cta-row {
  text-align: center;
  margin-top: 24px;
}
.warn-source {
  margin-top: 12px;
  font-size: 10px;
  color: var(--ink-soft);
  text-align: center;
}

/* ====== B09 ED+PE Combo ====== */
.combo-section {
  background: #fff;
}
.combo-stat {
  text-align: center;
  margin: 0 auto 24px;
}
.combo-stat .pct {
  font-size: 110px;
  font-weight: 900;
  color: var(--red);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-family: var(--sans);
}
.combo-stat .pct sup {
  font-size: 0.42em;
}
.combo-stat .desc {
  font-size: 16px;
  color: var(--ink);
  margin-top: 8px;
  line-height: 1.45;
  font-weight: 600;
}
.combo-stat .desc em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--red);
  font-weight: 700;
}
.combo-intro {
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 22px;
}
.combo-intro strong {
  color: var(--ink);
  font-weight: 700;
}
.combo-cards {
  display: grid;
  gap: 12px;
}
.combo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.combo-card.featured {
  border-color: var(--red);
  background: linear-gradient(180deg, var(--red-tint) 0%, #fff 70%);
  box-shadow:
    0 0 0 2px var(--red-soft),
    var(--shadow-card);
}
.combo-card .cmb-icon {
  width: 44px;
  height: 44px;
  background: var(--red-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--red);
  margin-bottom: 14px;
  font-weight: 800;
}
.combo-card .cmb-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.combo-card .cmb-card-text {
  flex: 1;
  min-width: 0;
}
.combo-card .cmb-thumb {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(26, 24, 22, 0.08);
}
.combo-card .cmb-thumb picture,
.combo-card .cmb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.combo-card .cmb-card-head .alt {
  display: block;
}
.combo-card .cmb-card-head h3 {
  margin-bottom: 0;
}
.combo-card h3 {
  font-size: 22px;
  margin-bottom: 4px;
}
.combo-card .alt {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
}
.combo-card ul {
  list-style: none;
  margin-bottom: 16px;
}
.combo-card li {
  padding: 5px 0;
  color: var(--ink-mid);
  font-size: 13px;
  display: flex;
  gap: 8px;
  line-height: 1.5;
}
.combo-card li::before {
  content: "✓";
  color: var(--red);
  font-weight: 800;
}
.combo-card .price-row {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.combo-card .price-row .lbl {
  font-size: 9px;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.combo-card .price-row .v {
  font-size: 22px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.02em;
}
.combo-card .price-row .v sup {
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ====== B10 How it works ====== */
.steps-section {
  background: var(--bg-soft);
}
.steps-stack {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow-card);
}
.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.25);
}
.step-body {
  flex: 1;
}
.step-time {
  display: inline-block;
  font-size: 9px;
  color: var(--red);
  background: var(--red-soft);
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
}
.step h3 {
  margin-bottom: 6px;
  font-size: 16px;
}
.step p {
  color: var(--ink-mid);
  font-size: 13px;
  line-height: 1.65;
}
.steps-cta {
  margin-top: 22px;
}
.steps-cta-note {
  text-align: center;
  margin-top: 10px;
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* ====== B11 Discreet packaging ====== */
.privacy-visual {
  margin: 0 -20px 24px;
  aspect-ratio: 4 / 3;
  background: #f0ede7;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.privacy-visual picture,
.privacy-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.privacy-features {
  display: grid;
  gap: 10px;
}
.priv-feat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--bg-soft);
  border-radius: 12px;
  border: 1px solid var(--line);
}
.priv-feat .ic {
  font-size: 14px;
  color: var(--red);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.priv-feat strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  margin-bottom: 2px;
  font-weight: 700;
}
.priv-feat span {
  color: var(--ink-mid);
  font-size: 12px;
  line-height: 1.5;
}

/* ====== B12 Doctor profile ====== */
.doctor-section {
  background: var(--bg-soft);
}
.doctor-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.doctor-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow:
    0 0 0 1px var(--line),
    0 6px 18px rgba(26, 24, 22, 0.1);
  margin: 0 auto 18px;
}
.doctor-photo picture,
.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.doctor-info .role {
  font-size: 10px;
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.doctor-info h3 {
  font-size: 22px;
  margin-bottom: 4px;
}
.doctor-info .org {
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.5;
}
.doctor-info ul {
  text-align: left;
  margin-bottom: 18px;
}
.doctor-info details {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  text-align: left;
}
.doctor-info summary {
  cursor: pointer;
  font-size: 12px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.05em;
  list-style: none;
  text-align: center;
  padding: 6px 0;
}
.doctor-info summary::after {
  content: " ▾";
  font-size: 10px;
}
.doctor-info details[open] summary::after {
  content: " ▴";
}
.doctor-info .career {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border-radius: 10px;
}
.doctor-info .career h4 {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
  font-weight: 800;
}
.doctor-info .career p {
  font-size: 11px;
  color: var(--ink-mid);
  line-height: 1.7;
  margin: 0;
}

/* ====== B13 Voices - Carousel ====== */
.voice-section {
  overflow: hidden;
}
.voice-carousel-wrap {
  position: relative;
  margin: 0 -20px;
}
.voice-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 20px 20px;
  gap: 12px;
}
.voice-carousel::-webkit-scrollbar {
  display: none;
}
.voice-card {
  flex-shrink: 0;
  width: calc(100% - 40px);
  scroll-snap-align: center;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow-card);
}
.voice-stars {
  color: var(--red);
  margin-bottom: 10px;
  letter-spacing: 0.12em;
  font-size: 12px;
}
.voice-card .quote {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 14px;
  font-weight: 500;
}
.voice-card .author {
  font-size: 11px;
  color: var(--ink-soft);
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  line-height: 1.5;
}
.voice-card .author strong {
  color: var(--ink);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
}
.voice-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}
.voice-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-muted);
  transition: all 0.2s ease;
}
.voice-dot.active {
  background: var(--red);
  width: 18px;
  border-radius: 999px;
}

/* ====== B14 Pricing ====== */
.pricing-section {
  background: var(--bg-soft);
}
.price-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--line);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.price-tabs::-webkit-scrollbar {
  display: none;
}
.price-tab {
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  margin-bottom: -2px;
  flex-shrink: 0;
}
.price-tab.active {
  color: var(--red);
  border-bottom-color: var(--red);
}
.dose-toggle {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 18px;
  background: #fff;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.dose-toggle span {
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  cursor: pointer;
  border-radius: 999px;
}
.dose-toggle span.active {
  background: var(--red);
  color: #fff;
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.price-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--red);
  background: linear-gradient(180deg, var(--red-tint) 0%, #fff 60%);
  box-shadow:
    0 0 0 2px var(--red-soft),
    var(--shadow-card);
}
.price-card .badge-top {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card .plan-name {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.price-card .plan-qty {
  font-size: 11px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.price-card .per-tab {
  font-size: 26px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.025em;
}
.price-card .per-tab sup {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 600;
}
.price-card .per-tab small {
  display: block;
  font-size: 9px;
  color: var(--ink-soft);
  margin-top: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.price-card .total {
  font-size: 12px;
  color: var(--ink-mid);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line-soft);
}
.price-card .total strong {
  color: var(--ink);
  font-weight: 700;
}
.price-card .savings {
  font-size: 10px;
  color: var(--red);
  font-weight: 800;
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.price-card .extra {
  font-size: 10px;
  color: var(--ink-soft);
  margin-top: auto;
  padding-top: 10px;
}
.price-fineprint {
  font-size: 10px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-top: 12px;
}

/* Trial Bundle Cards (お試しセット) */
.trial-bundles {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px dashed var(--line);
}
.trial-bundles-head {
  text-align: center;
  margin-bottom: 16px;
}
.trial-bundles-head .eyebrow {
  margin-bottom: 6px;
}
.trial-bundles-head h3 {
  font-size: 18px;
}
.trial-bundles-head h3 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--red);
  font-weight: 700;
}
.trial-bundles-head p {
  font-size: 12px;
  color: var(--ink-mid);
  margin-top: 6px;
}
.trial-grid {
  display: grid;
  gap: 12px;
}
.trial-card {
  background: #fff;
  border: 1.5px solid var(--red);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.trial-card .ribbon {
  position: absolute;
  top: -10px;
  left: 16px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}
.trial-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.trial-card .name {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}
.trial-card .price {
  font-size: 24px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1;
  flex-shrink: 0;
}
.trial-card .desc {
  font-size: 12px;
  color: var(--ink-mid);
  margin-bottom: 14px;
  line-height: 1.55;
}
.trial-card .desc strong {
  color: var(--ink);
  font-weight: 700;
}
.trial-card .meds {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 14px;
  background: var(--red-tint);
  border-radius: 10px;
  margin-bottom: 14px;
}
.trial-card .med-pill {
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  background: #fff;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid var(--red-soft);
}
.trial-card .for-whom {
  font-size: 11px;
  color: var(--ink-soft);
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
  line-height: 1.55;
}
.trial-card .for-whom strong {
  color: var(--ink);
  font-weight: 700;
}

.kamagra-banner {
  background: linear-gradient(135deg, var(--red-tint) 0%, #fff 100%);
  border: 1.5px solid var(--red);
  border-radius: 14px;
  padding: 20px;
  margin-top: 20px;
}
.kamagra-banner .text {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.55;
  font-weight: 500;
  margin-bottom: 14px;
}
.kamagra-banner .text em {
  color: var(--red);
  font-style: normal;
  font-weight: 800;
}

/* ====== B15 FAQ ====== */
.faq-list {
  display: grid;
  gap: 8px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item.open {
  border-color: var(--red);
  box-shadow: 0 0 0 2px var(--red-soft);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.4;
  user-select: none;
}
.faq-q .toggle {
  color: var(--red);
  font-size: 22px;
  flex-shrink: 0;
  font-weight: 300;
  width: 20px;
  text-align: center;
  line-height: 1.2;
}
.faq-a {
  padding: 0 20px 18px;
  color: var(--ink-mid);
  font-size: 13px;
  line-height: 1.75;
}
.faq-item:not(.open) .faq-a {
  display: none;
}

/* ====== B16 Final CTA ====== */
.final-cta {
  text-align: center;
  padding: 80px 0 70px;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, var(--red-tint) 0%, transparent 60%), #fff;
  position: relative;
}
.final-cta h2 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.final-cta h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--red);
}
.final-cta .lede {
  margin: 0 auto 24px;
  font-size: 14px;
}
.final-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  color: var(--ink-mid);
  margin-bottom: 28px;
  box-shadow: var(--shadow-card);
  font-weight: 600;
  flex-wrap: wrap;
  justify-content: center;
}
.final-pill em {
  color: var(--red);
  font-style: normal;
  font-weight: 800;
}
.final-cta-checks {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--ink-mid);
  font-weight: 600;
}
.final-cta-checks span::before {
  content: "✓ ";
  color: var(--red);
  font-weight: 800;
}

/* ====== B17 Unapproved meds ====== */
.legal-section {
  background: var(--bg-soft);
  padding: 48px 0;
}
.legal-section h3 {
  margin-bottom: 12px;
  font-size: 16px;
}
.legal-section .lead-p {
  color: var(--ink-mid);
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.legal-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.legal-tab {
  padding: 7px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-mid);
  cursor: pointer;
}
.legal-tab.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.legal-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 12px;
}
.legal-block h4 {
  font-size: 13px;
  margin-bottom: 12px;
  color: var(--ink);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}
.legal-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 8px 0;
  font-size: 11px;
  border-bottom: 1px dashed var(--line-soft);
}
.legal-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.legal-row .lbl {
  color: var(--ink-soft);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 10px;
  text-transform: uppercase;
}
.legal-row .val {
  color: var(--ink-mid);
  line-height: 1.6;
}
.legal-row .val strong {
  color: var(--red);
  font-weight: 700;
}
.legal-fineprint {
  margin-top: 16px;
  font-size: 10px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ====== Footer (compact, centered) ====== */
footer {
  background: #2d2d2d;
  color: #b8b3a9;
  text-align: center;
  padding: 28px 20px 110px;
}
footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 18px;
  font-size: 12px;
  margin-bottom: 18px;
}
footer .footer-links a {
  color: #d8d3c9;
  text-decoration: none;
  transition: color 0.15s ease;
}
footer .footer-links a:hover {
  color: #fff;
}
.legitscript-badge {
  display: inline-block;
  margin: 0 auto 16px;
  width: 84px;
  height: auto;
  line-height: 0;
  transition: transform 0.15s ease;
}
.legitscript-badge:hover {
  transform: translateY(-1px);
}
.legitscript-badge img,
.legitscript-badge picture {
  width: 100%;
  height: auto;
  display: block;
}
.copyright {
  color: #8e8a83;
  font-size: 10.5px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* ====== Mobile sticky CTA ====== */
.mobile-cta {
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  width: calc(100% - 32px);
  max-width: 448px;
  padding: 18px 24px;
  font-size: 17px;
}
/* Override base .btn-line hover/active transforms to preserve horizontal centering */
.mobile-cta:hover {
  transform: translate(-50%, 2px);
  box-shadow:
    0 6px 0 0 var(--green-line-dark),
    0 10px 20px rgba(6, 199, 85, 0.32);
}
.mobile-cta:active {
  transform: translate(-50%, 6px);
  box-shadow: var(--shadow-cta-line-press);
}

/* ====== Desktop center display ====== */
@media (min-width: 768px) {
  body {
    padding: 24px 0;
  }
  .lp-shell {
    max-width: 480px;
    border-radius: 0;
  }
  .mobile-cta {
    max-width: 448px;
  }
  .topbar-wrap {
    max-width: 480px;
  }
}
