:root {
  --color-primary: #1a1a1a;
  --color-primary-dark: #000000;
  --color-primary-light: #f3eee8;
  --color-accent-green: #d4a574;
  --color-accent-purple: #d4a574;
  --color-accent-gold: #d4a574;
  --color-accent-gold-dark: #d4a574;
  --color-text-heading: #1a1a1a;
  --color-text-body: #343434;
  --color-text-muted: #6b6460;
  --color-border: #e8e1d8;
  --color-border-soft: #f0ebe5;
  --color-border-brand: #d4a574;
  --color-bg-soft: #f7f9fb;
  --color-bg-strong: #f3eee8;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-card: 16px;
  --radius-xl: 24px;
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-floating: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-button: 0 8px 20px rgba(0, 0, 0, 0.2);
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", system-ui, sans-serif;
  --font-numeric: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  color: var(--color-text-body);
  background: #fff;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(212, 165, 116, 0.55);
  outline-offset: 4px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.container {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
}

body:not(.campaign-active) .campaign-only {
  display: none !important;
}

body.campaign-active .campaign-hidden {
  display: none !important;
}

.section {
  padding: 80px 0;
}

.section-bg {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #f7f9fb 100%);
}

.section-bg::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: url("assets/images/background_elements.webp");
  background-position: center top;
  background-size: cover;
  opacity: 0.35;
  pointer-events: none;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--color-accent-gold-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--color-accent-gold);
  color: var(--color-text-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-text-heading);
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.25;
}

h1 span {
  color: var(--color-accent-gold-dark);
}

h2 {
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.35;
}

h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

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

.button-primary {
  position: relative;
  color: #fff;
  background:
    linear-gradient(135deg, #d4a574 0%, #c08a4f 60%, #a86d2e 100%);
  box-shadow:
    0 14px 32px rgba(212, 165, 116, 0.45),
    0 4px 12px rgba(168, 109, 46, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button-primary::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
}

.button-primary > * {
  position: relative;
  z-index: 1;
}

.button-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #e0b285 0%, #c79354 60%, #a86d2e 100%);
  box-shadow:
    0 20px 44px rgba(212, 165, 116, 0.55),
    0 6px 18px rgba(168, 109, 46, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.button-primary:active {
  transform: translateY(0);
  box-shadow:
    0 8px 20px rgba(212, 165, 116, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.header-primary {
  box-shadow: 0 6px 16px rgba(212, 165, 116, 0.4);
}

.header-primary:hover {
  box-shadow: 0 10px 22px rgba(212, 165, 116, 0.5);
}

.hero-actions .button-primary,
.cta-actions .button-primary {
  min-height: 60px;
  padding: 0 36px;
  font-size: 16px;
  border-radius: 14px;
  animation: ctaPulse 2.6s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow:
      0 14px 32px rgba(212, 165, 116, 0.45),
      0 4px 12px rgba(168, 109, 46, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }
  50% {
    box-shadow:
      0 18px 42px rgba(212, 165, 116, 0.62),
      0 6px 16px rgba(168, 109, 46, 0.42),
      0 0 0 6px rgba(212, 165, 116, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.32);
  }
}

.hero-actions .button-primary:hover,
.cta-actions .button-primary:hover {
  animation: none;
}

.button-secondary {
  color: var(--color-primary-dark);
  background: #fff;
  border-color: var(--color-border-brand);
}

.button-secondary:hover {
  background: var(--color-bg-soft);
  border-color: #d4a574;
}

.button-white {
  color: var(--color-primary-dark);
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(232, 225, 216, 0.84);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-heading);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.brand-logo {
  width: 124px;
  height: auto;
  max-height: 36px;
  object-fit: contain;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  background: #fff;
}

.brand-ear {
  position: absolute;
  top: -3px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  background: #fff;
}

.brand-ear-left {
  left: 3px;
}

.brand-ear-right {
  right: 3px;
}

.brand-face {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: -7px -1px 0 var(--color-primary), 7px -1px 0 var(--color-primary);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--color-text-body);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--color-accent-gold-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .button {
  min-height: 42px;
  padding: 0 18px;
}

.hero {
  padding: 88px 0 80px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.hero-title {
  margin-bottom: 24px;
  font-size: 0;
  line-height: 0;
}

.hero-title-image {
  width: 100%;
  max-width: 560px;
  height: auto;
  filter:
    drop-shadow(0 1px 1px rgba(26, 26, 26, 0.15))
    drop-shadow(0 4px 10px rgba(26, 26, 26, 0.06));
}

.hero-catch {
  margin: 16px 0 24px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text-heading);
  letter-spacing: 0.01em;
}

.hero-catch strong {
  display: inline-block;
  padding: 0 4px;
  color: var(--color-accent-gold-dark);
  font-size: 1.15em;
  font-weight: 800;
  background: linear-gradient(transparent 60%, rgba(212, 165, 116, 0.32) 60%);
}

.hero-description {
  max-width: 600px;
  margin-bottom: 24px;
  color: var(--color-text-body);
}

.hero-campaign {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 10px 18px 10px 12px;
  border: 1px solid rgba(212, 165, 116, 0.5);
  border-radius: 999px;
  background: linear-gradient(135deg, #fff8ef 0%, #faf0e1 100%);
  color: var(--color-text-heading);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(212, 165, 116, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-campaign:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(212, 165, 116, 0.26);
}

.hero-campaign-label {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--color-text-body);
  font-size: 14px;
  font-weight: 600;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-list svg,
.check-list li::before {
  color: var(--color-accent-gold);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-image {
  width: min(100%, 670px);
  margin-left: auto;
  border-radius: 24px;
  filter: drop-shadow(0 22px 60px rgba(0, 0, 0, 0.12));
}

.metric-card {
  position: absolute;
  width: 190px;
  padding: 18px;
  border: 1px solid rgba(212, 165, 116, 0.34);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-floating);
  color: var(--color-text-heading);
  backdrop-filter: blur(12px);
  animation: float 4200ms ease-in-out infinite;
}

.metric-label,
.metric-sub {
  display: block;
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.metric-value {
  display: block;
  margin: 4px 0 6px;
  font-family: var(--font-numeric);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.05;
}

.metric-value span {
  margin-left: 4px;
  font-family: var(--font-primary);
  font-size: 13px;
}

.metric-sparkline {
  display: block;
  width: 100%;
  height: 48px;
  margin-top: 10px;
  color: var(--color-accent-gold);
}

.metric-sparkline path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
}

.metric-bars {
  display: flex;
  height: 64px;
  align-items: flex-end;
  gap: 8px;
  margin-top: 14px;
}

.metric-bars span {
  flex: 1;
  min-width: 0;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, #d4a574 0%, #f0d7ba 100%);
}

.metric-time {
  top: 90px;
  left: 0;
}

.metric-rate {
  right: 12px;
  bottom: 44px;
  animation-delay: 900ms;
}

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

.problem-card,
.feature-item,
.benefit-card,
.price-card,
.included-card,
.faq-item,
.stat-card,
.testimonial-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.problem-card:hover,
.service-card:hover,
.feature-item:hover,
.benefit-card:hover,
.price-card:hover,
.testimonial-card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.problem-card {
  min-height: 100%;
  padding: 18px;
  text-align: center;
}

.problem-card img {
  width: 132px;
  aspect-ratio: 1;
  margin: 0 auto 14px;
  object-fit: contain;
}

.problem-card h3 {
  min-height: 58px;
  margin-bottom: 8px;
  font-size: 15px;
}

.problem-card p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.services {
  background: linear-gradient(180deg, #fff 0%, #f7f9fb 100%);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.92);
  color: #fff;
  font-family: var(--font-numeric);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.section-heading h2 span {
  color: var(--color-accent-gold-dark);
}

.section-lead {
  max-width: 720px;
  margin: 12px auto 0;
  color: var(--color-text-body);
  font-size: 15px;
  line-height: 1.85;
}

.services-footnote {
  margin: 24px 0 0;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.45;
  padding: 16px;
  object-fit: contain;
  background: var(--color-bg-soft);
}

.service-content {
  padding: 24px;
}

.service-content h3 {
  margin-bottom: 16px;
}

.service-green h3 {
  color: var(--color-text-heading);
}

.service-blue h3 {
  color: var(--color-text-heading);
}

.service-purple h3 {
  color: var(--color-text-heading);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--color-text-body);
  font-size: 14px;
  line-height: 1.55;
}

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

.check-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  content: "✓";
  color: var(--color-accent-gold);
  font-weight: 800;
}

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

.feature-item {
  min-height: 172px;
  padding: 20px 16px;
  text-align: center;
}

.icon-badge {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 12px;
  color: var(--color-accent-gold-dark);
  background: var(--color-primary-light);
}

.feature-item h3 {
  min-height: 48px;
  margin-bottom: 6px;
  font-size: 16px;
}

.feature-item p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.before-after {
  background: #fff;
}

.effect-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: stretch;
}

.comparison-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--color-border-soft);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff 0%, #f7f9fb 100%);
  box-shadow: var(--shadow-card);
}

.comparison-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.before-label {
  color: #6b6460;
  background: #f7f9fb;
}

.after-label {
  color: var(--color-accent-gold-dark);
  background: #f7f1ea;
}

.comparison-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.comparison-metrics div {
  padding: 18px;
  border: 1px solid var(--color-border-soft);
  border-radius: 16px;
  background: #fff;
}

.comparison-metrics span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 600;
}

.comparison-metrics strong {
  color: var(--color-text-heading);
  font-size: 20px;
  line-height: 1.35;
}

.after-column .comparison-metrics div {
  border-color: rgba(212, 165, 116, 0.38);
  background: linear-gradient(180deg, #fff 0%, #faf5ef 100%);
}

.comparison-arrow {
  color: var(--color-accent-gold);
  font-family: var(--font-numeric);
  font-size: 40px;
  font-weight: 800;
}

.highlight-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid var(--color-border-brand);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #f7f1ea 100%);
  box-shadow: var(--shadow-floating);
}

.highlight-card span {
  margin-bottom: 10px;
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 800;
}

.highlight-card strong {
  color: var(--color-accent-gold-dark);
  font-family: var(--font-numeric);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
}

.highlight-card p {
  margin: 10px 0 0;
  color: var(--color-text-body);
  font-weight: 700;
}

.section-note {
  margin: 16px 0 0;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.7;
}

.section-note-list {
  margin: 16px 0 0;
  padding-left: 1.2em;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.8;
}

.section-note-list li {
  margin-bottom: 4px;
}

.benefits {
  background: var(--color-bg-soft);
}

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

.benefit-card {
  padding: 24px;
}

.benefit-card h3 {
  margin-bottom: 16px;
}

.benefit-card p {
  margin-bottom: 10px;
  color: var(--color-text-body);
  font-size: 14px;
}

.benefit-card p:last-child {
  margin-bottom: 0;
}

.benefit-card p span {
  display: block;
  margin-bottom: 2px;
  color: var(--color-accent-gold-dark);
  font-family: var(--font-numeric);
  font-size: 12px;
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.price-card,
.included-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 28px;
}

.price-card h3,
.included-card h3 {
  margin-bottom: 8px;
}

.plan-description {
  min-height: 48px;
  margin-bottom: 18px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.price-note {
  margin-bottom: 6px;
  padding-left: 8px;
  border-left: 2px solid var(--color-accent-gold);
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.price {
  margin-bottom: 22px;
  color: var(--color-text-heading);
  font-size: 14px;
  font-weight: 700;
}

.price span {
  margin-right: 4px;
  font-family: var(--font-numeric);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.price-card .check-list {
  margin-bottom: 28px;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.featured-plan {
  border-color: var(--color-accent-gold);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  margin: 0;
  padding: 5px 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  color: #000000;
  background: var(--color-accent-gold-dark);
  font-size: 12px;
  font-weight: 800;
}

.included-card {
  border-color: var(--color-border-brand);
  background: linear-gradient(180deg, #fff 0%, #f7f9fb 100%);
}

.included-card .check-list {
  margin-top: 18px;
}

.results {
  background: linear-gradient(180deg, #fff 0%, #f7f9fb 100%);
}

.results-panel {
  display: grid;
  gap: 24px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.stats-grid .stat-card {
  flex: 1 1 220px;
  min-width: 0;
}

.stat-card {
  padding: 24px;
}

.stat-card p {
  margin-bottom: 6px;
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 700;
}

.stat-card strong {
  display: block;
  color: var(--color-text-heading);
  font-family: var(--font-numeric);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
}

.stat-card strong span {
  margin-left: 4px;
  color: var(--color-accent-gold-dark);
  font-family: var(--font-primary);
  font-size: 15px;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
}

.testimonial-card img {
  width: 112px;
  height: 112px;
  margin-bottom: 18px;
  border: 4px solid var(--color-primary-light);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(168, 109, 46, 0.12);
}

.testimonial-rating {
  margin-bottom: 10px;
  color: var(--color-accent-gold);
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1;
}

.testimonial-title {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  color: var(--color-text-heading);
}

.testimonial-card blockquote {
  position: relative;
  margin: 0 0 20px;
  color: var(--color-text-body);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.8;
}

.testimonial-card p {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 16px;
  border-top: 1px solid var(--color-border-soft);
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 600;
}

.testimonial-card p strong {
  margin-right: 4px;
  color: var(--color-text-heading);
  font-size: 14px;
  font-weight: 800;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.faq-layout .section-heading {
  margin: 0;
  text-align: left;
}

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

.faq-item {
  padding: 0 22px;
}

.faq-item summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--color-text-heading);
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  flex: 0 0 auto;
  content: "+";
  color: var(--color-accent-gold-dark);
  font-family: var(--font-numeric);
  font-size: 24px;
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding-bottom: 22px;
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 14px;
}

.final-cta {
  padding-bottom: 80px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 72px 56px;
  border: 1px solid var(--color-border);
  border-radius: 32px;
  background:
    radial-gradient(circle at 0% 0%, rgba(212, 165, 116, 0.18) 0%, rgba(212, 165, 116, 0) 55%),
    radial-gradient(circle at 100% 100%, rgba(212, 165, 116, 0.12) 0%, rgba(212, 165, 116, 0) 50%),
    linear-gradient(180deg, #fff 0%, #faf5ef 100%);
  box-shadow: 0 30px 70px rgba(26, 26, 26, 0.08);
  text-align: center;
}

.cta-panel .cta-copy {
  max-width: 640px;
  margin: 0 auto;
}

.cta-copy {
  position: relative;
  z-index: 1;
}

.cta-kicker {
  margin: 0 0 14px;
  color: var(--color-accent-gold-dark);
  font-family: var(--font-numeric);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2119 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 18px rgba(26, 26, 26, 0.18);
}

.cta-badge::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent-gold);
  content: "";
}

.cta-finetext {
  margin: 18px 0 0;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.7;
}

.cta-copy h2 {
  margin-bottom: 18px;
  color: var(--color-text-heading);
  font-size: 34px;
  line-height: 1.3;
}

.cta-copy h2 span {
  position: relative;
  display: inline-block;
  padding: 0 4px;
  color: var(--color-text-heading);
}

.cta-copy h2 span::after {
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 10px;
  content: "";
  background: rgba(212, 165, 116, 0.35);
  z-index: -1;
  border-radius: 4px;
}

.cta-lead {
  margin: 0 0 20px;
  color: var(--color-text-body);
  font-size: 15px;
  line-height: 1.75;
}

.cta-points {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  text-align: left;
  color: var(--color-text-body);
  font-size: 14px;
  font-weight: 600;
}

.cta-points li {
  position: relative;
  padding-left: 28px;
}

.cta-points li::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-accent-gold);
  color: #fff;
  content: "✓";
  font-size: 11px;
  font-weight: 800;
  transform: translateY(-50%);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.cta-actions .button {
  min-height: 54px;
  padding: 0 28px;
  font-size: 15px;
}


.site-footer {
  padding: 64px 0 28px;
  border-top: 1px solid var(--color-border-soft);
  background: #fff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.footer-brand {
  flex: 0 0 auto;
}

.footer-grid .footer-column {
  flex: 0 0 auto;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-tagline {
  max-width: 320px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.8;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 10px;
  color: var(--color-text-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.footer-column a {
  color: var(--color-text-muted);
  font-size: 13px;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--color-accent-gold-dark);
}

.footer-meta {
  margin: 0 0 4px;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--color-border-soft);
}

.copyright {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 12px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-legal a {
  color: var(--color-text-muted);
  font-size: 12px;
  transition: color 180ms ease;
}

.footer-legal a:hover {
  color: var(--color-accent-gold-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.diagnosis-modal {
  width: min(640px, calc(100% - 32px));
  max-height: calc(100vh - 48px);
  padding: 0;
  border: none;
  border-radius: 24px;
  background: transparent;
  overflow: visible;
}

.diagnosis-modal::backdrop {
  background: rgba(15, 15, 15, 0.55);
  backdrop-filter: blur(6px);
}

.diagnosis-modal[open] {
  animation: modalPop 220ms ease;
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.diagnosis-modal-card {
  position: relative;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 40px 36px 32px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 0%, rgba(212, 165, 116, 0.16) 0%, rgba(212, 165, 116, 0) 55%),
    linear-gradient(180deg, #fff 0%, #faf5ef 100%);
  box-shadow: 0 30px 80px rgba(15, 15, 15, 0.32);
}

.diagnosis-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: #fff;
  color: var(--color-text-heading);
  transition: background 180ms ease, transform 180ms ease;
}

.diagnosis-modal-close:hover {
  background: var(--color-bg-soft);
  transform: scale(1.05);
}

.diagnosis-modal-close svg {
  width: 16px;
  height: 16px;
}

.diagnosis-modal-header {
  margin-bottom: 24px;
}

.diagnosis-modal-kicker {
  margin: 0 0 8px;
  color: var(--color-accent-gold-dark);
  font-family: var(--font-numeric);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.diagnosis-modal-header h2 {
  margin: 0 0 12px;
  color: var(--color-text-heading);
  font-size: 22px;
  line-height: 1.4;
}

.diagnosis-modal-lead {
  margin: 0;
  color: var(--color-text-body);
  font-size: 13px;
  line-height: 1.75;
}

.diagnosis-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.diagnosis-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.diagnosis-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.diagnosis-field-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-heading);
  font-size: 13px;
  font-weight: 700;
}

.diagnosis-field-label em {
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--color-accent-gold);
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.diagnosis-field input,
.diagnosis-field select,
.diagnosis-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  color: var(--color-text-heading);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.diagnosis-field input::placeholder,
.diagnosis-field textarea::placeholder {
  color: #b6aea4;
}

.diagnosis-field input:focus,
.diagnosis-field select:focus,
.diagnosis-field textarea:focus {
  outline: none;
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

.diagnosis-field textarea {
  resize: vertical;
  min-height: 100px;
}

.diagnosis-checkboxes {
  margin: 0;
  padding: 0;
  border: none;
}

.diagnosis-checkboxes legend {
  margin-bottom: 10px;
  padding: 0;
}

.diagnosis-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  color: var(--color-text-body);
  font-size: 13px;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.diagnosis-checkbox:hover {
  border-color: var(--color-accent-gold);
  background: #fffaf3;
}

.diagnosis-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--color-accent-gold);
  flex-shrink: 0;
}

.diagnosis-checkbox:has(input:checked) {
  border-color: var(--color-accent-gold);
  background: #fff7eb;
  color: var(--color-text-heading);
  font-weight: 600;
}

.diagnosis-field.is-invalid .diagnosis-checkbox {
  border-color: #d63b3b;
}

.diagnosis-field-error {
  margin: 8px 0 0;
  color: #d63b3b;
  font-size: 12px;
  font-weight: 600;
}

.diagnosis-consent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  color: var(--color-text-body);
  font-size: 13px;
}

.diagnosis-consent input {
  width: 16px;
  height: 16px;
  accent-color: var(--color-accent-gold);
}

.diagnosis-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}

.diagnosis-form-note {
  margin: 8px 0 0;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.7;
}

.diagnosis-form-note strong {
  color: var(--color-text-heading);
}

body.modal-open {
  overflow: hidden;
}

.mid-cta {
  padding: 32px 0;
}

.mid-cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  overflow: hidden;
  padding: 36px 48px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 100%, rgba(212, 165, 116, 0.16) 0%, rgba(212, 165, 116, 0) 60%),
    linear-gradient(180deg, #fff 0%, #faf5ef 100%);
  box-shadow: 0 18px 50px rgba(26, 26, 26, 0.06);
}

.mid-cta-text .mid-cta-kicker {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.mid-cta-text h2 {
  margin: 0 0 12px;
  color: var(--color-text-heading);
  font-size: 22px;
  line-height: 1.5;
}

.mid-cta-text p {
  margin: 0;
  color: var(--color-text-body);
  font-size: 14px;
  line-height: 1.75;
}

.mid-cta-action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.mid-cta-action .button-primary {
  min-height: 58px;
  padding: 0 28px;
  font-size: 15px;
  border-radius: 14px;
}

.mid-cta-note {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 767px) {
  .mid-cta {
    padding: 20px 0;
  }

  .mid-cta-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 22px;
    text-align: center;
  }

  .mid-cta-kicker {
    margin-bottom: 12px;
  }

  .mid-cta-text h2 {
    font-size: 19px;
  }

  .mid-cta-br {
    display: none;
  }
}

.legal-main {
  padding: 64px 0 96px;
  background: linear-gradient(180deg, #fff 0%, #faf5ef 100%);
}

.legal-article {
  max-width: 820px;
  padding: 56px 48px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(26, 26, 26, 0.06);
}

.legal-heading {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border-soft);
}

.legal-kicker {
  margin: 0 0 10px;
  color: var(--color-accent-gold-dark);
  font-family: var(--font-numeric);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-heading h1 {
  margin: 0 0 12px;
  color: var(--color-text-heading);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
}

.legal-meta {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 13px;
}

.legal-section {
  margin-bottom: 32px;
  color: var(--color-text-body);
  font-size: 14px;
  line-height: 1.85;
}

.legal-section h2 {
  margin: 0 0 12px;
  color: var(--color-text-heading);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}

.legal-section h3 {
  margin: 20px 0 8px;
  color: var(--color-text-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.legal-section p {
  margin: 0 0 12px;
}

.legal-section ul {
  margin: 0 0 12px;
  padding-left: 1.4em;
}

.legal-section li {
  margin-bottom: 6px;
}

.legal-section a {
  color: var(--color-accent-gold-dark);
  text-decoration: underline;
}

.legal-meta-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
}

.legal-meta-list > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border-soft);
}

.legal-meta-list dt {
  color: var(--color-text-heading);
  font-size: 13px;
  font-weight: 700;
}

.legal-meta-list dd {
  margin: 0;
  color: var(--color-text-body);
  font-size: 14px;
}

.legal-back {
  margin: 40px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--color-border-soft);
  font-size: 14px;
  font-weight: 700;
}

.legal-back a {
  color: var(--color-text-heading);
}

.legal-back a:hover {
  color: var(--color-accent-gold-dark);
}

@media (max-width: 767px) {
  .legal-main {
    padding: 32px 0 64px;
  }

  .legal-article {
    padding: 32px 20px;
    border-radius: 16px;
  }

  .legal-heading h1 {
    font-size: 24px;
  }

  .legal-section h2 {
    font-size: 16px;
  }

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

@media (max-width: 1180px) {
  .site-nav {
    gap: 20px;
  }

  .header-secondary {
    display: none;
  }

  .problem-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .container {
    width: min(100% - 48px, 960px);
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 30px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .metric-card {
    width: 160px;
    padding: 14px;
  }

  .metric-value {
    font-size: 28px;
  }

  .metric-bars {
    height: 52px;
  }

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

  .service-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
  }

  .effect-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-wrap: wrap;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 56px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 40px, 100%);
  }

  .section {
    padding: 56px 0;
  }

  .section-heading {
    margin-bottom: 28px;
    text-align: left;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    white-space: normal;
  }

  .header-inner {
    min-height: 44px;
  }

  .brand {
    font-size: 14px;
  }

  .brand-logo {
    width: 92px;
    height: auto;
    max-height: 24px;
  }

  .site-nav,
  .header-secondary {
    display: none;
  }

  .header-actions .button {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero {
    position: relative;
    padding: 40px 0 48px;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      180deg,
      rgba(255, 252, 246, 0.55) 0%,
      rgba(255, 252, 246, 0.82) 45%,
      rgba(255, 252, 246, 0.95) 100%
    );
    pointer-events: none;
  }

  .hero-grid {
    position: static;
    display: block;
    gap: 0;
    text-align: center;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-copy h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
  }

  .hero-copy .eyebrow {
    display: inline-block;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-catch {
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
  }

  .hero-actions,
  .trust-list {
    justify-content: center;
  }

  .hero-campaign {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-description {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .button-primary {
    width: 100%;
    min-height: 56px;
    padding: 0 24px;
    font-size: 15px;
  }

  .trust-list {
    display: grid;
    gap: 10px;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    aspect-ratio: auto;
    min-height: 0;
  }

  .hero-image {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    object-fit: cover;
    object-position: center top;
    filter: none;
  }

  .metric-card {
    display: none;
  }

  .metric-card {
    width: clamp(124px, 39vw, 148px);
    padding: 12px;
    border-radius: 14px;
  }

  .metric-label,
  .metric-sub {
    font-size: 10px;
  }

  .metric-sub {
    display: none;
  }

  .metric-value {
    margin-bottom: 4px;
    font-size: 24px;
  }

  .metric-sparkline {
    height: 34px;
    margin-top: 8px;
  }

  .metric-bars {
    height: 42px;
    gap: 6px;
    margin-top: 10px;
  }

  .metric-time {
    top: 14px;
    left: 8px;
  }

  .metric-rate {
    right: 8px;
    bottom: 14px;
  }

  .problem-grid,
  .service-grid,
  .benefit-grid,
  .pricing-grid,
  .stats-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    column-gap: 14px;
    row-gap: 10px;
    align-items: center;
    text-align: left;
  }

  .problem-card img {
    width: 92px;
    margin: 0;
  }

  .problem-card h3 {
    min-height: 0;
  }

  .problem-card p {
    grid-column: 1 / -1;
  }

  .service-card {
    display: block;
  }

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

  .feature-item {
    min-height: 168px;
    padding: 18px 12px;
  }

  .feature-item h3 {
    min-height: 0;
    font-size: 15px;
  }

  .effect-layout {
    gap: 16px;
  }

  .comparison-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .comparison-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .highlight-card {
    padding: 24px;
  }

  .highlight-card strong {
    font-size: 32px;
  }

  .price-card,
  .included-card {
    min-height: auto;
    padding: 24px;
  }

  .price span {
    font-size: 36px;
  }

  .plan-description {
    min-height: auto;
  }

  .cta-panel {
    padding: 48px 24px;
  }

  .cta-copy h2 {
    font-size: 26px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 28px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
    margin-top: 32px;
  }

  .footer-legal {
    justify-content: center;
  }

  .diagnosis-modal-card {
    padding: 32px 20px 24px;
  }

  .diagnosis-modal-header h2 {
    font-size: 19px;
  }

  .diagnosis-form-row {
    grid-template-columns: 1fr;
  }

  .diagnosis-form-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .diagnosis-form-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
