:root {
  --navy: #1f3445;
  --blue: #1199dd;
  --sky: #e8f5fb;
  --mint: #dff3ee;
  --cream: #fbf6ee;
  --paper: #fbf8f3;
  --ink: #1b2530;
  --muted: #62717f;
  --line: #e7ded2;
  --green: #147a55;
  --coral: #765820;
  --gold: #c8b48d;
  --shadow: 0 28px 68px -52px rgba(63, 50, 35, 0.26);
  --soft-shadow: 0 18px 42px -34px rgba(63, 50, 35, 0.2);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

section[id],
#main {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
  overflow-x: clip;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.table-wrap:focus-visible {
  outline: 3px solid #d86f54;
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.lp-section {
  position: relative;
}

.lp-section-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  line-height: 1.32;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.lp-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
}

.lp-button--primary {
  border-color: #273947;
  background: linear-gradient(145deg, #344a5d 0%, #203444 58%, #182b39 100%);
  color: #fff;
}

.lp-button--secondary {
  border-color: #d8d0c4;
  color: var(--navy);
  background: linear-gradient(180deg, #fff 0%, #faf7f2 100%);
}

.lp-button--line {
  background: var(--green);
  color: #fff;
}

.lp-cta {
  text-align: center;
}

.lp-info-table {
  width: 100%;
  border-collapse: collapse;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231, 222, 210, 0.85);
  box-shadow: 0 10px 28px rgba(31, 52, 69, 0.06);
}

.header-inner {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--navy);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-actions,
.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.text-link {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.88rem;
}

.button-primary {
  border-color: #273947;
  background: linear-gradient(145deg, #344a5d 0%, #203444 58%, #182b39 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.button-primary:hover {
  background: #0f293f;
}

.button-ghost {
  border-color: #d8d0c4;
  color: var(--navy);
  background: linear-gradient(180deg, #fff 0%, #faf7f2 100%);
}

.button-line {
  background: var(--green);
  color: #fff;
}

.button-line:hover {
  background: #17835d;
}

.nav-toggle,
.lp-menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 14px;
  border: 1px solid var(--gold);
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(31, 52, 69, 0.14);
}

.lp-menu-toggle__label {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-menu-toggle__bars {
  display: grid;
  gap: 5px;
}

.lp-menu-toggle__bars span,
.nav-toggle > span:not(.lp-menu-toggle__label):not(.lp-menu-toggle__bars) {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.lp-menu[hidden] {
  display: none;
}

.lp-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  overflow: hidden;
  overscroll-behavior: none;
}

.lp-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 52, 69, 0.26);
  touch-action: none;
}

.lp-menu__panel {
  position: absolute;
  inset: 0 0 0 auto;
  display: flex;
  flex-direction: column;
  width: min(90vw, 420px);
  max-height: 100vh;
  max-height: 100dvh;
  padding: calc(env(safe-area-inset-top) + 20px) 22px calc(env(safe-area-inset-bottom) + 22px);
  overflow-x: hidden;
  overflow-y: auto;
  border-left: 1px solid #d8c7ab;
  background: #fffdf9;
  box-shadow: 0 24px 60px rgba(31, 52, 69, 0.2);
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.lp-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eadfce;
}

.lp-menu__title {
  margin: 0;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.lp-menu__close {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #d8c7ab;
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(55, 45, 28, 0.08);
}

.lp-menu__nav {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.lp-menu__nav a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid #eee5d8;
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(55, 45, 28, 0.05);
}

.lp-menu__nav a:hover {
  border-color: #d8c7ab;
  background: #fbf6ee;
}

.lp-menu__actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

html.is-menu-open,
body.is-menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.is-menu-open .fixed-cta {
  opacity: 0 !important;
  pointer-events: none !important;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(200, 180, 141, 0.14) 0%, rgba(255, 255, 255, 0) 45%, rgba(35, 55, 72, 0.08) 100%),
    linear-gradient(180deg, #fbf8f3 0%, #fffdf9 100%);
  padding: 56px 0 70px;
}

@media (min-width: 981px) {
  .hero {
    min-height: calc(100vh - 150px);
    padding-top: 34px;
  }
}

.split-grid,
.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 56px;
  align-items: center;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  grid-template-areas:
    "copy visual"
    "actions visual"
    "access visual";
  column-gap: 52px;
  row-gap: 24px;
  align-items: center;
}

.hero-copy {
  grid-area: copy;
  display: grid;
  gap: 16px;
  max-width: 660px;
  text-align: left;
}

.hero-main-visual {
  grid-area: visual;
  position: relative;
  width: min(553px, 100%);
  min-height: 0;
  aspect-ratio: 1 / 1;
  margin: 0 0 0 auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e7ded2;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-main-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 76% 54% at 0% 100%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.78) 44%, rgba(255, 255, 255, 0) 100%);
}

.hero-main-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-main-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 48% center;
}

.hero-visual__message {
  position: absolute;
  z-index: 2;
  left: 8%;
  bottom: 11%;
  width: 40%;
  max-width: 40%;
  color: var(--navy);
}

.hero-visual__brand {
  display: block;
  margin-bottom: 14px;
  color: #58636b;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-visual__copy {
  margin: 0;
  color: var(--navy);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.45rem, 1.6vw, 2.15rem);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.28rem, 4.8vw, 4.35rem);
  line-height: 1.18;
  font-weight: 700;
  max-width: 760px;
}

.hero h1 br {
  display: initial;
}

.lead {
  margin: 0;
  color: #31465a;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 2;
  max-width: 660px;
}

.lead-mobile {
  display: none;
}

.hero .hero-actions {
  grid-area: actions;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 4px;
}

.hero-actions .button {
  min-height: 54px;
  padding-inline: 22px;
}

.hero .button-primary {
  box-shadow: 0 18px 38px rgba(20, 50, 74, 0.2);
}

.hero-cta-note {
  grid-area: note;
  max-width: 640px;
  margin: 0;
  font-size: 0.92rem;
}

.hero-access {
  grid-area: access;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  padding-top: 20px;
  border-top: 1px solid var(--gold);
  color: #647076;
  font-size: 0.94rem;
  line-height: 1.7;
}

.hero-access p {
  margin: 0;
}

.hero-feature-cards {
  grid-area: features;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-feature-cards li {
  position: relative;
  min-height: 90px;
  padding: 15px 15px 15px 44px;
  border: 1px solid rgba(215, 226, 232, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 18px rgba(20, 50, 74, 0.06);
}

.hero-feature-cards li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 0 0 5px rgba(47, 134, 183, 0.11);
}

.hero-feature-cards strong,
.hero-feature-cards span {
  display: block;
}

.hero-feature-cards strong {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.35;
}

.hero-feature-cards span {
  margin-top: 6px;
  color: #435363;
  font-size: 0.9rem;
  line-height: 1.55;
}

.eyebrow,
.lp-section-label {
  margin: 0 0 10px;
  color: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-visual {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(215, 226, 232, 0.8);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--soft-shadow);
}

.hero-visual img {
  width: min(480px, 100%);
  margin-inline: auto;
  filter: drop-shadow(0 24px 42px rgba(20, 50, 74, 0.22));
}

.hero-visual-note {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 20px;
}

.hero-visual-note span {
  display: grid;
  place-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

.hero-assurance {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 22px 0 12px;
  list-style: none;
}

.hero-assurance li {
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(215, 226, 232, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 18px rgba(20, 50, 74, 0.06);
}

.hero-assurance strong,
.hero-assurance span {
  display: block;
}

.hero-assurance strong {
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.35;
}

.hero-assurance span {
  margin-top: 6px;
  color: #435363;
  font-size: 0.86rem;
  line-height: 1.55;
}

.notice {
  color: #435363;
  font-size: 0.95rem;
  line-height: 1.7;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading::before {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  margin-bottom: 18px;
  background: var(--gold);
}

.section-heading h2,
.split h2,
.access h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  line-height: 1.32;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.device-card,
.panel,
.hours-card,
.placeholder-card,
.scope-item,
.lp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--soft-shadow);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--navy);
  font-weight: 900;
}

.card h3,
.feature-item h3,
.device-card h3,
.panel h3,
.hours-card h3,
.scope-item h3 {
  color: var(--navy);
  margin: 14px 0 8px;
  line-height: 1.35;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.scope-item {
  position: relative;
  overflow: hidden;
}

.scope-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.split {
  background: #fff;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-item {
  border-left: 5px solid var(--blue);
  padding: 8px 0 8px 18px;
}

.devices,
.fees,
.faq,
.clinic-intro,
.disclaimer {
  background: #fffdf9;
}

.devices .section-heading {
  max-width: 980px;
}

.devices .section-heading h2 {
  font-size: clamp(1.65rem, 3.1vw, 2.55rem);
}

.devices .section-heading h2 span {
  display: inline-block;
}

.treatment-scope {
  background: linear-gradient(180deg, #fff, var(--sky));
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.device-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
}

.device-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(47, 134, 183, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, #f7fbfd, #fffdf9);
}

.device-visual img {
  display: block;
  width: 100%;
  height: 190px;
  padding: 12px;
  object-fit: contain;
  background: #fff;
}

.device-visual--branded {
  flex-direction: column;
  gap: 12px;
  min-height: 216px;
  padding: 14px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(47, 134, 183, 0.05);
}

.device-visual--branded img {
  padding: 0;
  background: transparent;
}

.device-visual--branded .device-brand {
  width: min(52%, 160px);
  height: 34px;
  object-fit: contain;
}

.device-visual--branded .device-brand--wide {
  width: min(55%, 172px);
}

.device-visual--branded .device-product {
  width: 100%;
  height: 146px;
  object-fit: contain;
}

.device-visual--branded .device-product--solo {
  height: 184px;
}

.device-card h3 {
  margin-top: 2px;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  overflow-wrap: anywhere;
}

.device-card p {
  margin: 0;
}

.device-description {
  display: grid;
  gap: 10px;
  color: #334656;
  font-size: 0.94rem;
  line-height: 1.75;
}

.device-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
}

.device-points li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(47, 134, 183, 0.18);
  border-radius: 8px;
  background: rgba(230, 246, 252, 0.76);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.panel-muted {
  background: var(--cream);
}

.check-list {
  padding-left: 1.2em;
  margin: 0;
}

.check-list li + li {
  margin-top: 8px;
}

.flow {
  background: linear-gradient(180deg, #fff, var(--cream));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(140px, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  overflow-x: auto;
}

.timeline li {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.timeline strong {
  display: block;
  color: var(--navy);
  margin-bottom: 8px;
}

.timeline span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.risk-box,
.final-cta-inner {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 22px;
}

.fee-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.fee-summary article {
  display: grid;
  gap: 8px;
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.fee-summary strong,
.fee-summary span {
  display: block;
}

.fee-summary strong {
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.4;
}

.fee-summary span {
  color: #435363;
  font-size: 0.92rem;
  line-height: 1.65;
}

.fee-table-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 0 0 14px;
  padding: 10px 18px;
  border: 1px solid rgba(47, 134, 183, 0.45);
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(20, 50, 74, 0.06);
}

.fee-category-label {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.45;
}

.fee-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 12px;
}

.fee-category-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(47, 134, 183, 0.3);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: inset -24px 0 22px -24px rgba(20, 50, 74, 0.38), 0 12px 30px rgba(20, 50, 74, 0.08);
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--blue) #e8f5fb;
  scrollbar-width: thin;
  scroll-margin-top: 96px;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

caption {
  padding: 16px 18px;
  color: var(--navy);
  font-weight: 900;
  text-align: left;
  background: #fff;
}

.table-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #435363;
  font-size: 0.95rem;
  font-weight: 700;
}

.table-hint::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--blue);
}

th,
td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #f2f8fb;
  color: var(--navy);
  white-space: nowrap;
}

tbody tr:nth-child(even) {
  background: #fbfdfe;
}

.table-group-row th {
  padding: 13px 18px;
  background: #cbe3ee;
  color: var(--navy);
  font-size: 1rem;
  letter-spacing: 0;
}

.table-group-row {
  scroll-margin-top: 104px;
}

td:nth-child(2) {
  white-space: nowrap;
  font-weight: 800;
  color: var(--navy);
}

.risks {
  background: var(--paper);
}

.risk-box {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 22px;
  margin: 0;
  background: #fff;
  color: var(--ink);
  border: 2px solid rgba(216, 111, 84, 0.72);
  font-size: 1rem;
}

.risk-box p {
  margin-top: 0;
}

.risk-box p:last-child {
  margin-bottom: 0;
}

.risk-lead {
  padding: 20px;
  border-radius: 14px;
  background: var(--cream);
}

.risk-lead h3 {
  margin: 0 0 8px;
  color: var(--navy);
  line-height: 1.35;
}

.risk-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.risk-list li {
  position: relative;
  padding-left: 22px;
}

.risk-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.risk-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.risk-cards article {
  padding: 16px;
  border: 1px solid rgba(216, 111, 84, 0.28);
  border-radius: 14px;
  background: #fff;
}

.risk-cards h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.35;
}

.risk-cards p {
  color: #435363;
  line-height: 1.7;
}

.cases {
  background: var(--cream);
}

.case-link-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.case-link-actions-center {
  justify-content: center;
}

.case-section-note {
  max-width: 760px;
  margin: 18px auto 0;
  color: #435363;
  font-size: 0.94rem;
  line-height: 1.75;
  text-align: center;
}

.placeholder-card {
  text-align: center;
}

.clinic-intro .card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.clinic-card {
  overflow: hidden;
  padding: 0;
}

.clinic-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #f8f3eb;
}

.clinic-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.clinic-card-body {
  padding: 18px 20px 20px;
}

.clinic-card-body h3 {
  margin: 0;
}

.doctor-intro {
  background: linear-gradient(180deg, #fffdf9, var(--cream));
}

.doctor-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 20px;
  align-items: stretch;
}

.doctor-photo-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(215, 226, 232, 0.9);
  border-radius: 1.35rem;
  background: #f7f1e8;
  box-shadow: var(--shadow);
}

.doctor-photo-picture {
  display: block;
  height: 100%;
}

.doctor-photo-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.doctor-card {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: clamp(30px, 3vw, 40px);
  border-radius: 1.35rem;
}

.doctor-card > p {
  margin: 0;
}

.doctor-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.25;
}

.doctor-role {
  margin: 0;
  color: var(--coral);
  font-weight: 900;
}

.doctor-heading {
  margin-bottom: 4px;
}

.doctor-heading h2 {
  margin-bottom: 0;
}

.doctor-education {
  margin-top: -4px;
  color: #52616f;
  font-weight: 700;
}

.doctor-card .button {
  justify-self: start;
  margin-top: 8px;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.notice-grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

.notice-grid p {
  margin: 0;
  color: #435363;
  font-size: 0.94rem;
  line-height: 1.75;
}

.case-page .case-hero {
  background: linear-gradient(135deg, #f4fbfe 0%, #fffdf9 64%, #f7f2e9 100%);
}

.case-hero-copy {
  max-width: 900px;
}

.case-hero h1 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.case-list {
  display: grid;
  gap: 22px;
}

.case-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.case-card[hidden] {
  display: none;
}

.case-media {
  min-height: 0;
  padding: 18px;
  background: linear-gradient(135deg, var(--sky), #fff);
}

.case-comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.case-comparison {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(47, 134, 183, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.case-comparison h4,
.case-comparison-label {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
}

.case-comparison-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.case-comparison figure {
  display: grid;
  min-width: 0;
  gap: 8px;
  margin: 0;
}

.case-image-button {
  display: grid;
  place-items: center;
  width: 100%;
  height: 260px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f7f8f8;
  cursor: zoom-in;
}

.case-image-button img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.2s ease;
}

.case-image-button:hover img {
  opacity: 0.96;
}

.case-media figcaption {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.case-content {
  padding: 24px;
}

.case-card-header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.case-device {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.case-device {
  background: var(--sky);
  color: var(--navy);
}

.case-title {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  line-height: 1.3;
}

.case-summary {
  margin: 0 0 18px;
  color: #435363;
}

.case-detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.case-detail-list div {
  display: grid;
  grid-template-columns: minmax(7.5em, 0.32fr) minmax(0, 1fr);
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfe;
}

.case-detail-list dt {
  color: var(--navy);
  font-weight: 900;
}

.case-detail-list dd {
  margin: 0;
  color: #435363;
}

.case-empty {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #435363;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 22px;
  color: #617385;
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--navy);
  font-weight: 800;
}

.case-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.case-filter {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  font-weight: 800;
  background: #fff;
  cursor: pointer;
}

.case-filter.is-active {
  border-color: #0b6f9f;
  color: #fff;
  background: #0b6f9f;
}

.case-filter:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.case-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.case-teaser-list {
  margin-top: 22px;
}

.case-comparison-grid.compact {
  grid-template-columns: 1fr;
}

.case-detail-page .case-comparison-grid {
  grid-template-columns: 1fr;
  width: min(100%, 960px);
  margin: 18px auto 0;
}

.case-detail-page .case-image-button {
  height: 375px;
}

.case-info-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.case-info-card h2 {
  margin-top: 0;
}

.case-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.case-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-related-card,
.case-related-empty {
  display: grid;
  gap: 12px;
}

.case-related-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.55;
}

.case-related-card p,
.case-related-empty p {
  margin: 0;
}

.case-lightbox[hidden] {
  display: none;
}

.case-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
}

.case-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 26, 41, 0.72);
}

.case-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(960px, 100%);
  max-height: min(82vh, 760px);
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(6, 26, 41, 0.28);
}

.case-lightbox-image {
  display: block;
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  border-radius: 8px;
  background: #f8fbfd;
}

.case-lightbox-caption {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

.case-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 900;
  background: #fff;
  cursor: pointer;
}

body.is-lightbox-open {
  overflow: hidden;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
}

summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
  min-height: 58px;
  padding: 18px 52px 18px 20px;
  list-style: none;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 18px;
}

.access {
  background: #fff;
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
}

.info-list div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
}

.info-list dt {
  color: var(--navy);
  font-weight: 900;
}

.info-list dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.hours-table {
  min-width: 0;
}

.hours-table th {
  width: 42%;
}

.hours-table td {
  white-space: normal;
}

.hours-phone {
  margin-top: 16px;
  width: fit-content;
}

.access-heading {
  max-width: 920px;
}

.access-heading > p:last-child {
  max-width: 900px;
  line-height: 1.9;
}

.access .clinic-info-card {
  margin-top: 30px;
  padding: 28px;
}

.clinic-info-card > h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.clinic-facts {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
}

.clinic-facts > div {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 13px 0;
  border-top: 1px solid #eee6dc;
}

.clinic-facts dt {
  color: #66543e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.clinic-facts dd {
  margin: 0;
  color: #2e363b;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.clinic-facts address {
  font-style: normal;
}

.final-cta {
  background: linear-gradient(135deg, var(--navy), #235f7b);
  color: #fff;
}

.final-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 4vw, 3rem);
}

.final-cta-inner {
  margin: 0;
  background: transparent;
  padding: 0;
  text-align: center;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 28px 0 96px;
  background: #0d2234;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 16px;
  align-items: start;
}

.footer-inner p {
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.fixed-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: none;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(215, 226, 232, 0.9);
  border-radius: 10px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.fixed-cta .button {
  min-width: 118px;
  min-height: 50px;
  padding: 10px 16px;
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 66px;
    gap: 14px;
  }

  .hero-layout,
  .split-grid,
  .access-grid,
  .two-column,
  .case-hero-inner,
  .case-card {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    grid-template-areas:
      "copy"
      "actions"
      "visual"
      "access";
  }

  .hero-copy {
    max-width: 760px;
  }

  .card-grid.four,
  .device-grid,
  .scope-grid,
  .clinic-intro .card-grid.four,
  .notice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .device-visual img {
    height: 180px;
  }

  .device-visual--branded .device-product {
    height: 136px;
  }

  .hero-assurance,
  .fee-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-main-visual {
    width: min(705px, 100%);
    min-height: 0;
    margin-inline: auto;
  }

  .hero-main-visual img {
    min-height: 0;
  }

  .case-media {
    min-height: 220px;
  }

  .case-comparison-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 1023px) {
  .case-image-button {
    height: 230px;
  }

  .case-detail-page .case-image-button {
    height: 315px;
  }
}

@media (max-width: 767px) {
  .case-image-button {
    height: clamp(190px, 54vw, 220px);
  }

  .case-detail-page .case-image-button {
    height: clamp(225px, 64vw, 255px);
  }
}

@media (max-width: 820px) {
  .doctor-layout {
    grid-template-columns: 1fr;
  }

  .doctor-photo-card {
    aspect-ratio: 1.02 / 1;
  }

  .doctor-photo-image {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  body {
    padding-bottom: calc(104px + env(safe-area-inset-bottom));
  }

  .section {
    padding: 52px 0;
  }

  .doctor-card {
    padding: 28px 24px;
  }

  .fees {
    scroll-margin-top: 70px;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 44px;
  }

  .hero-layout {
    gap: 20px;
  }

  .hero-copy {
    gap: 11px;
    text-align: left;
  }

  .hero .eyebrow {
    margin-bottom: 0;
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .hero h1 {
    font-size: clamp(1.82rem, 7.2vw, 2.35rem);
    line-height: 1.23;
    letter-spacing: 0;
  }

  .lead {
    font-size: 0.96rem;
    line-height: 1.85;
  }

  .lead-desktop {
    display: none;
  }

  .lead-mobile {
    display: block;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .hero-actions,
  .access-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding-inline: 14px;
  }

  .hero .button-primary {
    min-height: 56px;
  }

  .hero .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .hero .hero-actions .button-primary {
    grid-column: 1 / -1;
  }

  .hero .hero-actions .button:not(.button-primary) {
    min-height: 50px;
    padding-inline: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .card-grid.four,
  .device-grid,
  .scope-grid,
  .clinic-intro .card-grid.four,
  .notice-grid,
  .fee-summary,
  .risk-cards {
    grid-template-columns: 1fr;
  }

  .hero-feature-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-feature-cards .hero-mobile-secondary {
    display: none;
  }

  .hero-feature-cards li {
    min-height: auto;
    padding: 12px;
  }

  .hero-feature-cards li::before {
    display: none;
  }

  .hero-feature-cards strong {
    font-size: 0.94rem;
  }

  .hero-feature-cards span {
    font-size: 0.82rem;
  }

  .hero-assurance li {
    min-height: auto;
    padding: 14px;
  }

  .hero-main-visual {
    height: auto;
    min-height: 0;
    padding: 0;
    overflow: hidden;
  }

  .hero-main-visual img {
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: 48% center;
  }

  .hero-visual__message {
    right: 7%;
    bottom: 8%;
    left: 7%;
    width: auto;
    max-width: 76%;
  }

  .hero-visual__brand {
    margin-bottom: 12px;
    font-size: 0.75rem;
  }

  .hero-visual__copy {
    font-size: clamp(1.18rem, 5vw, 1.55rem);
    line-height: 1.62;
  }

  .hero-access {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-top: 14px;
    font-size: 0.86rem;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 10px;
    overflow-x: visible;
  }

  .timeline li {
    min-height: auto;
    padding: 16px 18px;
  }

  .hero-cta-note {
    text-align: left;
    font-size: 0.84rem;
  }

  .case-hero h1 {
    max-width: 100%;
    font-size: clamp(1.62rem, 7vw, 2.12rem);
    line-height: 1.22;
    overflow-wrap: anywhere;
  }

  .case-content {
    padding: 20px;
  }

  .case-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .case-filter {
    justify-content: center;
    min-height: 46px;
    padding: 8px 10px;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .case-media {
    min-height: 180px;
    padding: 14px;
  }

  .case-comparison {
    padding: 10px;
  }

  .case-comparison-pair {
    gap: 8px;
  }

  .case-lightbox {
    padding: 12px;
  }

  .case-lightbox-panel {
    padding: 12px;
  }

  .case-card-header {
    gap: 6px;
  }

  .case-device {
    min-height: 30px;
    font-size: 0.78rem;
  }

  .case-detail-list div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px;
  }

  .case-link-actions .button {
    width: 100%;
  }

  .case-section-note {
    margin-top: 14px;
    text-align: left;
  }

  .case-card-actions .button,
  .case-detail-actions .button {
    width: 100%;
  }

  .case-related-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  th,
  td {
    padding: 12px;
    font-size: 0.94rem;
  }

  .table-wrap {
    margin-inline: -4px;
    border-radius: 8px;
    box-shadow: inset -16px 0 18px -18px rgba(20, 50, 74, 0.42), var(--soft-shadow);
  }

  table {
    min-width: 680px;
  }

  .risk-box,
  details,
  .hours-card,
  .panel,
  .card,
  .device-card,
  .scope-item,
  .lp-card {
    padding: 20px;
  }

  .device-visual img {
    height: 168px;
    padding: 10px;
  }

  .device-visual--branded {
    min-height: 206px;
    gap: 10px;
    padding: 12px;
  }

  .device-visual--branded .device-brand {
    width: min(55%, 170px);
    height: 30px;
    padding: 0;
  }

  .device-visual--branded .device-product {
    height: 136px;
    padding: 0;
  }

  .risk-box {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fee-summary article {
    grid-template-columns: minmax(7.8em, auto) 1fr;
    align-items: start;
    min-height: auto;
    gap: 4px 10px;
    padding: 10px 12px;
  }

  .fee-summary {
    gap: 8px;
    margin-bottom: 10px;
  }

  .fee-summary strong {
    font-size: 0.9rem;
  }

  .fee-summary span {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .fee-table-link {
    width: 100%;
    margin-bottom: 10px;
  }

  .fee-category-label {
    margin-bottom: 8px;
    font-size: 0.9rem;
  }

  .fee-category-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 12px;
    padding: 0;
    overflow: visible;
  }

  .fee-category-nav a {
    justify-content: center;
    min-height: 48px;
    padding: 8px 10px;
    font-size: 0.86rem;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }

  summary {
    min-height: 56px;
    padding: 16px 48px 16px 18px;
  }

  details p {
    padding: 0 18px 16px;
  }

  .hours-phone {
    width: 100%;
  }

  .access .clinic-info-card {
    padding: 20px;
  }

  .clinic-facts > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .fixed-cta {
    left: 18px;
    right: 18px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    display: grid;
    padding: 6px;
    border-radius: 10px;
    background: rgba(255, 253, 249, 0.94);
    box-shadow: 0 10px 26px rgba(20, 50, 74, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.cta-visible:not(.cta-at-end):not(.cta-suppressed):not(.cta-reading) .fixed-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .fixed-cta .button {
    min-width: 0;
    width: 100%;
    min-height: 46px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.95rem;
  }

  .lp-menu__panel {
    width: min(92vw, 390px);
    padding-inline: 16px;
  }

  .lp-menu__nav a {
    min-height: 48px;
    padding: 10px 14px;
    font-size: 0.95rem;
  }
}

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

  .fixed-cta {
    transform: none;
  }
}
