:root {
  --landing-bg: #ecebe4;
  --landing-bg-soft: #f7f6f1;
  --landing-ink: #0e3a27;
  --landing-text: rgba(20, 48, 41, 0.72);
  --landing-muted: #67736f;
  --landing-border: rgba(25, 69, 58, 0.14);
  --landing-white: #ffffff;
  --landing-blue: #246b92;
  --landing-amber: #b98017;
  --landing-copper: #b85b3f;
  --landing-shadow: 0 24px 70px rgba(18, 54, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  background: var(--landing-bg);
  color: var(--landing-ink);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

svg {
  display: block;
}

.landing-page {
  background: var(--landing-bg);
  height: calc(100vh - 88px);
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
}

.landing-container {
  margin: 0 auto;
  max-width: 1160px;
  padding: 0 32px;
  width: 100%;
}

.landing-container--narrow {
  max-width: 1024px;
}

.landing-container--compact {
  max-width: 896px;
  text-align: center;
}

.body-case-switcher {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 95, 85, 0.16);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(15, 95, 85, 0.08);
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 0 auto 4px;
  max-width: max-content;
  padding: 8px 10px 8px 18px;
  position: relative;
  z-index: 3;
}

.body-case-switcher__label {
  color: var(--landing-ink);
  flex: 0 0 auto;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.body-case-switcher__options {
  display: flex;
  gap: 6px;
}

.body-case-switcher__option {
  align-items: center;
  background: rgba(15, 95, 85, 0.08);
  border: 1px solid rgba(15, 95, 85, 0.14);
  border-radius: 999px;
  color: #0f5f55;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  min-height: 38px;
  padding: 0 16px;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.body-case-switcher__option:hover,
.body-case-switcher__option.is-active {
  background: #123d31;
  border-color: #123d31;
  color: #ffffff;
  transform: translateY(-1px);
}

.landing-slogan {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(236, 235, 228, 0)),
    var(--landing-bg);
  border-bottom: 1px solid rgba(25, 69, 58, 0.08);
  display: flex;
  min-height: min(760px, calc(100vh - 88px));
  overflow: hidden;
  padding: 104px 0 96px;
  position: relative;
}

.landing-slogan::after {
  background:
    linear-gradient(rgba(23, 69, 58, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 69, 58, 0.05) 1px, transparent 1px);
  background-size: 76px 76px;
  content: "";
  inset: 0;
  opacity: 0.32;
  position: absolute;
}

.landing-slogan__motion {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.slogan-ring {
  border: 1px solid rgba(36, 107, 146, 0.13);
  border-radius: 50%;
  left: 50%;
  position: absolute;
  top: 52%;
  transform: translate(-50%, -50%);
}

.slogan-ring--outer {
  animation: ringBreath 8s ease-in-out infinite;
  height: 760px;
  width: min(980px, 112vw);
}

.slogan-ring--middle {
  animation: ringBreath 9s ease-in-out infinite reverse;
  height: 570px;
  width: min(760px, 92vw);
}

.slogan-ring--inner {
  animation: ringBreath 7s ease-in-out infinite;
  height: 390px;
  width: min(520px, 72vw);
}

.slogan-sweep {
  animation: orbitSweep 12s linear infinite;
  border: 2px solid transparent;
  border-radius: 50%;
  border-right-color: rgba(15, 111, 95, 0.18);
  border-top-color: rgba(36, 107, 146, 0.46);
  height: 610px;
  left: 50%;
  position: absolute;
  top: 52%;
  transform: translate(-50%, -50%);
  width: min(820px, 98vw);
}

.slogan-sweep::after {
  background: var(--landing-blue);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(36, 107, 146, 0.16);
  content: "";
  height: 9px;
  position: absolute;
  right: 72px;
  top: 52px;
  width: 9px;
}

.slogan-sweep--two {
  animation-direction: reverse;
  animation-duration: 16s;
  border-right-color: rgba(184, 91, 63, 0.18);
  border-top-color: rgba(185, 128, 23, 0.42);
  height: 420px;
  opacity: 0.82;
  width: min(580px, 74vw);
}

.slogan-sweep--two::after {
  background: var(--landing-amber);
  right: 46px;
  top: 36px;
}

.slogan-data-card {
  animation: floatSloganCard 8s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(25, 69, 58, 0.14);
  border-radius: 14px;
  box-shadow: 0 22px 52px rgba(18, 54, 43, 0.12);
  display: grid;
  gap: 8px;
  min-width: 168px;
  padding: 16px 18px;
  position: absolute;
}

.slogan-data-card span {
  color: var(--landing-muted);
  font-size: 12px;
  font-weight: 900;
}

.slogan-data-card strong {
  color: var(--landing-ink);
  font-size: 21px;
  line-height: 1.1;
}

.slogan-data-card i {
  background: #edf1ef;
  border-radius: 999px;
  display: block;
  height: 8px;
  overflow: hidden;
  position: relative;
}

.slogan-data-card i::after {
  animation: sloganBar 4s ease-in-out infinite;
  background: var(--landing-blue);
  border-radius: inherit;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 66%;
}

.slogan-data-card--value {
  left: max(38px, calc(50% - 580px));
  top: 144px;
}

.slogan-data-card--going {
  animation-delay: 800ms;
  right: max(44px, calc(50% - 580px));
  top: 186px;
}

.slogan-data-card--going i::after {
  background: #0f6f5f;
  width: 82%;
}

.slogan-data-card--vote {
  animation-delay: 1400ms;
  bottom: 106px;
  right: max(120px, calc(50% - 490px));
}

.slogan-data-card--vote i::after {
  background: var(--landing-amber);
  width: 48%;
}

.landing-slogan__inner {
  display: grid;
  gap: 18px;
  justify-items: center;
  max-width: 980px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.landing-slogan__kicker {
  color: var(--landing-amber);
  font-size: 15px;
  font-weight: 900;
  margin: 0 0 4px;
}

.landing-service-switcher {
  align-items: center;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(25, 69, 58, 0.14);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(18, 54, 43, 0.1);
  display: inline-flex;
  gap: 12px;
  justify-content: center;
  margin: 0 0 4px;
  padding: 8px 10px 8px 18px;
}

.landing-service-switcher__brand {
  color: var(--landing-ink);
  display: inline-flex;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.landing-service-switcher__options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.landing-service-switcher__option {
  align-items: center;
  background: rgba(15, 95, 85, 0.08);
  border: 1px solid rgba(15, 95, 85, 0.14);
  border-radius: 999px;
  color: #0f5f55;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  min-height: 38px;
  padding: 0 15px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.landing-service-switcher__option:hover,
.landing-service-switcher__option.is-active {
  background: #123d31;
  border-color: #123d31;
  color: #ffffff;
  transform: translateY(-1px);
}

.landing-slogan__title {
  color: #122019;
  display: block;
  font-size: clamp(40px, 4.8vw, 60px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.14;
  margin: 0;
  max-width: 980px;
  overflow-wrap: break-word;
}

.landing-slogan__line {
  color: inherit;
  display: block;
  font: inherit;
}

.landing-slogan__copy {
  color: rgba(20, 48, 41, 0.76);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.62;
  margin: 0;
  max-width: 960px;
  white-space: nowrap;
}

.landing-slogan__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
}

.landing-slogan__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 8px;
}

.landing-slogan__chips span {
  background: rgba(15, 111, 95, 0.1);
  border: 1px solid rgba(15, 111, 95, 0.16);
  border-radius: 999px;
  color: var(--landing-ink);
  font-size: 13px;
  font-weight: 900;
  padding: 7px 12px;
}

.landing-hero {
  background: var(--landing-bg);
  min-height: min(720px, calc(100vh - 88px));
  overflow: hidden;
  padding: 146px 0 132px;
  position: relative;
}

.landing-hero::after {
  background: var(--landing-bg-soft);
  bottom: 0;
  content: "";
  height: 72px;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 0;
}

.landing-hero__content {
  align-items: flex-start;
  display: grid;
  min-height: 456px;
  position: relative;
  z-index: 2;
}

.landing-hero__copy {
  max-width: 660px;
  padding-top: 34px;
}

.landing-eyebrow {
  color: var(--landing-amber);
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
}

.landing-hero__copy h1,
.section-heading h2,
.landing-cta h2 {
  color: var(--landing-ink);
  font-size: clamp(46px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.06;
  margin: 0;
}

.landing-hero__copy p {
  color: var(--landing-text);
  font-size: clamp(19px, 2.1vw, 25px);
  font-weight: 600;
  line-height: 1.5;
  margin: 28px 0 0;
  max-width: 560px;
  overflow-wrap: break-word;
}

.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}

.landing-button {
  align-items: center;
  background: var(--landing-ink);
  border: 0;
  border-radius: 12px;
  color: var(--landing-white);
  display: inline-flex;
  font-size: 16px;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 56px;
  padding: 0 34px;
  transition: background 180ms ease, transform 180ms ease;
}

.landing-button:hover {
  background: #145240;
  transform: translateY(-1px);
}

.landing-button svg {
  height: 20px;
  transition: transform 180ms ease;
  width: 20px;
}

.landing-button:hover svg {
  transform: translateX(4px);
}

.landing-button--soft {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(25, 69, 58, 0.16);
  color: var(--landing-ink);
}

.landing-button--soft:hover {
  background: var(--landing-white);
  color: var(--landing-ink);
}

.landing-button--soft svg {
  display: none;
}

.landing-button--kakao {
  background: #fee500;
  border: 1px solid rgba(172, 144, 0, 0.28);
  box-shadow: 0 14px 28px rgba(115, 93, 0, 0.14);
  color: #231f20;
}

.landing-button--kakao:hover {
  background: #f5dc00;
  color: #231f20;
}

.landing-button--kakao svg {
  display: none;
}

.landing-button.is-disabled {
  cursor: not-allowed;
  opacity: 0.56;
  pointer-events: none;
  transform: none;
}

.analysis-stage {
  bottom: 42px;
  left: max(28px, calc(50% - 580px));
  pointer-events: none;
  position: absolute;
  right: max(28px, calc(50% - 580px));
  top: 54px;
  z-index: 1;
}

.analysis-grid {
  border: 1px solid rgba(20, 67, 53, 0.08);
  bottom: 84px;
  left: 4%;
  position: absolute;
  right: 0;
  top: 44px;
}

.analysis-grid::before,
.analysis-grid::after {
  content: "";
  inset: 0;
  opacity: 0.5;
  position: absolute;
}

.analysis-grid::before {
  background-image:
    linear-gradient(rgba(23, 69, 58, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 69, 58, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
}

.analysis-grid::after {
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 142px,
      rgba(36, 107, 146, 0.08) 142px 144px
    );
  animation: gridDrift 16s linear infinite;
}

.sheet-preview {
  animation: floatSheet 9s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(25, 69, 58, 0.14);
  border-radius: 14px;
  box-shadow: var(--landing-shadow);
  display: grid;
  gap: 0;
  overflow: hidden;
  position: absolute;
  right: 4%;
  top: 92px;
  width: 430px;
}

.sheet-preview__top {
  align-items: center;
  background: #17382f;
  display: flex;
  gap: 6px;
  height: 34px;
  padding: 0 12px;
}

.sheet-preview__top span {
  background: rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  height: 7px;
  width: 7px;
}

.sheet-preview__row {
  display: grid;
  font-size: 12px;
  font-weight: 800;
  grid-template-columns: 1.3fr 1fr 1fr;
  min-height: 42px;
  position: relative;
}

.sheet-preview__row span {
  align-items: center;
  border-bottom: 1px solid rgba(25, 69, 58, 0.1);
  border-right: 1px solid rgba(25, 69, 58, 0.1);
  color: #17382f;
  display: flex;
  padding: 0 12px;
}

.sheet-preview__row span:last-child {
  border-right: 0;
}

.sheet-preview__row.is-head span {
  background: #e7eeee;
  color: #24433c;
}

.sheet-preview__scan {
  animation: scanRows 4.8s ease-in-out infinite;
  background: rgba(36, 107, 146, 0.16);
  height: 42px;
  left: 0;
  position: absolute;
  right: 0;
  top: 34px;
}

.flow-lane {
  align-items: center;
  display: flex;
  gap: 10px;
  position: absolute;
  right: 7%;
  top: 360px;
  width: 560px;
}

.flow-step {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(25, 69, 58, 0.16);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(18, 54, 43, 0.08);
  color: #17382f;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
}

.flow-step.is-upload {
  color: var(--landing-blue);
}

.flow-step.is-value {
  color: #0f6f5f;
}

.flow-step.is-debt {
  color: var(--landing-amber);
}

.flow-step.is-result {
  color: var(--landing-copper);
}

.flow-line {
  background: rgba(25, 69, 58, 0.15);
  display: block;
  flex: 1 1 auto;
  height: 2px;
  overflow: hidden;
  position: relative;
}

.flow-line::after {
  animation: flowPulse 2.8s ease-in-out infinite;
  background: var(--landing-blue);
  content: "";
  height: 100%;
  left: -35%;
  position: absolute;
  top: 0;
  width: 34%;
}

.metric-panel,
.diagnosis-panel {
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(25, 69, 58, 0.14);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(18, 54, 43, 0.1);
  position: absolute;
}

.metric-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  width: 230px;
}

.metric-panel span,
.diagnosis-panel span {
  color: var(--landing-muted);
  font-size: 12px;
  font-weight: 800;
}

.metric-panel strong,
.diagnosis-panel strong {
  color: var(--landing-ink);
  font-size: 20px;
  line-height: 1.1;
}

.metric-panel--value {
  animation: floatMetricA 8s ease-in-out infinite;
  right: 42%;
  top: 292px;
}

.metric-panel--risk {
  animation: floatMetricB 7s ease-in-out infinite;
  right: 8%;
  top: 434px;
}

.metric-bars {
  display: grid;
  gap: 6px;
}

.metric-bars i {
  background: #edf1ef;
  border-radius: 999px;
  display: block;
  height: 8px;
  overflow: hidden;
  position: relative;
}

.metric-bars i::after {
  animation: fillMetric 4.8s ease-in-out infinite;
  background: var(--landing-blue);
  border-radius: inherit;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: var(--bar-width);
}

.metric-bars i:nth-child(2)::after {
  animation-delay: 500ms;
  background: #0f6f5f;
}

.metric-bars i:nth-child(3)::after {
  animation-delay: 1000ms;
  background: var(--landing-amber);
}

.signal-stack {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(3, 1fr);
}

.signal-stack i {
  animation: signalBlink 3.6s ease-in-out infinite;
  background: #e9eeee;
  border-radius: 8px;
  display: block;
  height: 32px;
}

.signal-stack i:nth-child(1) {
  background: rgba(15, 111, 95, 0.22);
}

.signal-stack i:nth-child(2) {
  animation-delay: 450ms;
  background: rgba(185, 128, 23, 0.24);
}

.signal-stack i:nth-child(3) {
  animation-delay: 900ms;
  background: rgba(184, 91, 63, 0.22);
}

.diagnosis-panel {
  animation: floatDiagnosis 10s ease-in-out infinite;
  display: grid;
  gap: 0;
  left: 26%;
  padding: 0;
  top: 504px;
  width: 250px;
}

.diagnosis-panel div {
  align-items: center;
  border-bottom: 1px solid rgba(25, 69, 58, 0.1);
  display: flex;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
}

.diagnosis-panel div:last-child {
  border-bottom: 0;
}

.diagnosis-types {
  background: #ffffff;
  border-top: 1px solid rgba(25, 69, 58, 0.08);
  padding: 112px 0;
}

.diagnosis-types__header {
  margin: 0 auto 34px;
  max-width: 720px;
  text-align: center;
}

.diagnosis-types__header h2 {
  color: var(--landing-ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.16;
  margin: 10px 0 14px;
}

.diagnosis-types__header p {
  color: var(--landing-text);
  font-size: 16px;
  margin: 0;
}

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

.diagnosis-type-card {
  background:
    radial-gradient(circle at right top, rgba(15, 95, 85, 0.08), transparent 36%),
    #fbfcfa;
  border: 1px solid var(--landing-border);
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(18, 54, 43, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 28px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.diagnosis-type-card:hover {
  border-color: rgba(15, 95, 85, 0.34);
  box-shadow: 0 22px 56px rgba(18, 54, 43, 0.14);
  transform: translateY(-4px);
}

.diagnosis-type-card__label {
  align-items: center;
  background: #123d31;
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  margin-bottom: 26px;
  width: 54px;
}

.diagnosis-type-card strong {
  color: var(--landing-ink);
  display: block;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.diagnosis-type-card p {
  color: var(--landing-text);
  font-size: 15px;
  margin: 0;
  word-break: keep-all;
}

.diagnosis-type-card__action {
  align-items: center;
  color: #0f5f55;
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  gap: 8px;
  margin-top: auto;
  padding-top: 30px;
}

.diagnosis-type-card__action svg {
  height: 18px;
  width: 18px;
}

.landing-section {
  background: var(--landing-white);
  padding: 116px 0;
}

.landing-section--compact {
  background: var(--landing-bg-soft);
  padding: 96px 0 112px;
}

.landing-section--muted {
  background: var(--landing-bg);
}

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

.feature-card {
  background: var(--landing-white);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  min-height: 220px;
  padding: 32px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.feature-card:hover,
.process-card:hover {
  box-shadow: 0 14px 34px rgba(14, 58, 39, 0.1);
  transform: translateY(-2px);
}

.feature-card__icon {
  align-items: center;
  background: #17382f;
  border-radius: 999px;
  color: var(--landing-white);
  display: inline-flex;
  height: 50px;
  justify-content: center;
  margin-bottom: 22px;
  width: 50px;
}

.feature-card__icon svg {
  height: 25px;
  width: 25px;
}

.feature-card h2 {
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 14px;
}

.feature-card p {
  color: var(--landing-text);
  font-size: 15px;
  margin: 0;
  overflow-wrap: break-word;
}

.landing-free {
  background:
    linear-gradient(180deg, var(--landing-bg-soft), var(--landing-white));
  border-top: 1px solid rgba(25, 69, 58, 0.08);
  overflow: hidden;
  padding: 118px 0;
  position: relative;
}

.landing-free::before {
  animation: freeBandMove 18s linear infinite;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 120px,
      rgba(36, 107, 146, 0.08) 120px 122px
    );
  content: "";
  inset: 0;
  opacity: 0.5;
  position: absolute;
}

.landing-free__inner {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) 360px;
  position: relative;
  z-index: 1;
}

.landing-free__copy {
  max-width: 680px;
  min-width: 0;
}

.landing-free__eyebrow {
  color: var(--landing-amber);
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 14px;
}

.landing-free h2 {
  color: var(--landing-ink);
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0;
  overflow-wrap: break-word;
}

.landing-free p {
  color: rgba(20, 48, 41, 0.75);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.7;
  margin: 22px 0 0;
}

.landing-free__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.landing-free__badges span {
  background: rgba(15, 111, 95, 0.1);
  border: 1px solid rgba(15, 111, 95, 0.16);
  border-radius: 999px;
  color: var(--landing-ink);
  font-size: 13px;
  font-weight: 900;
  max-width: 100%;
  overflow-wrap: break-word;
  padding: 7px 12px;
}

.free-meter {
  animation: floatSloganCard 8s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(25, 69, 58, 0.14);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(18, 54, 43, 0.14);
  min-height: 280px;
  min-width: 0;
  overflow: hidden;
  padding: 30px;
  position: relative;
}

.free-meter__ring {
  animation: freeRing 7s linear infinite;
  border: 1px solid rgba(36, 107, 146, 0.24);
  border-left-color: rgba(15, 111, 95, 0.42);
  border-radius: 50%;
  height: 230px;
  position: absolute;
  right: -56px;
  top: -62px;
  width: 230px;
}

.free-meter__count,
.free-meter__price {
  display: grid;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.free-meter__count span,
.free-meter__price span {
  color: var(--landing-muted);
  font-size: 13px;
  font-weight: 900;
}

.free-meter__count strong {
  color: var(--landing-ink);
  display: block;
  font-size: 34px;
  height: 44px;
  line-height: 44px;
  overflow: hidden;
  position: relative;
}

.free-meter__count i {
  animation: freeCountSlide 6s steps(1, end) infinite;
  display: block;
  font-style: normal;
  opacity: 0;
  position: absolute;
}

.free-meter__count i:nth-child(1) {
  animation-delay: 0s;
}

.free-meter__count i:nth-child(2) {
  animation-delay: 2s;
}

.free-meter__count i:nth-child(3) {
  animation-delay: 4s;
}

.free-meter__price {
  margin-top: 28px;
}

.free-meter__price strong {
  color: var(--landing-ink);
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}

.free-meter__track {
  background: #edf1ef;
  border-radius: 999px;
  height: 10px;
  margin-top: 26px;
  overflow: hidden;
  position: relative;
}

.free-meter__track i {
  animation: freeTrackSweep 4.2s ease-in-out infinite;
  background: linear-gradient(90deg, var(--landing-blue), #0f6f5f, var(--landing-amber));
  border-radius: inherit;
  display: block;
  height: 100%;
  width: 62%;
}

.free-meter__note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.free-meter__note span {
  background: var(--landing-bg-soft);
  border: 1px solid rgba(25, 69, 58, 0.12);
  border-radius: 999px;
  color: var(--landing-ink);
  font-size: 13px;
  font-weight: 900;
  padding: 7px 12px;
}

.section-heading {
  margin-bottom: 70px;
}

.section-heading--center {
  text-align: center;
}

.section-heading span {
  background: var(--landing-ink);
  display: block;
  height: 4px;
  margin-top: 22px;
  width: 96px;
}

.section-heading--center span {
  margin-left: auto;
  margin-right: auto;
}

.notice-copy > p {
  color: rgba(14, 58, 39, 0.8);
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 42px;
}

.notice-callout {
  background: var(--landing-bg-soft);
  border: 1px solid var(--landing-border);
  border-left: 4px solid var(--landing-ink);
  border-radius: 10px;
  margin-top: 42px;
  padding: 32px;
}

.notice-callout p {
  color: rgba(14, 58, 39, 0.8);
  margin: 0;
}

.process-list {
  display: grid;
  gap: 26px;
}

.process-card {
  align-items: flex-start;
  background: var(--landing-white);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  display: grid;
  gap: 28px;
  grid-template-columns: auto 1fr;
  padding: 40px 46px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.process-card__number {
  align-items: center;
  background: var(--landing-ink);
  border-radius: 999px;
  color: var(--landing-white);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 22px;
  font-weight: 800;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.process-card h3 {
  font-size: 23px;
  line-height: 1.25;
  margin: 2px 0 18px;
}

.process-card p {
  color: var(--landing-text);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 8px;
}

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

.landing-success {
  background:
    radial-gradient(circle at right 16%, rgba(15, 95, 85, 0.08), transparent 30%),
    var(--landing-white);
}

.landing-success__header {
  align-items: flex-end;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 42px;
}

.landing-success__header > div:first-child {
  max-width: 720px;
  min-width: 0;
}

.landing-success__eyebrow {
  color: var(--landing-amber);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
}

.landing-success h2 {
  color: var(--landing-ink);
  font-size: clamp(36px, 4.8vw, 58px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

.landing-success__header p:not(.landing-success__eyebrow) {
  color: var(--landing-text);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
  margin: 22px 0 0;
}

.landing-success__filters {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.landing-success__filters span {
  align-items: center;
  background: var(--landing-white);
  border: 1px solid rgba(25, 69, 58, 0.26);
  border-radius: 999px;
  color: var(--landing-ink);
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  min-width: 86px;
  padding: 0 20px;
}

.landing-success__filters .is-active {
  background: var(--landing-ink);
  border-color: var(--landing-ink);
  color: var(--landing-white);
}

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

.success-case-card {
  background: #fbfcfa;
  border: 1px solid var(--landing-border);
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(18, 54, 43, 0.08);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.success-case-card:hover {
  box-shadow: 0 24px 62px rgba(18, 54, 43, 0.14);
  transform: translateY(-4px);
}

.success-case-card__paper {
  animation: floatSuccessPaper 8s ease-in-out infinite;
  aspect-ratio: 0.72;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.96)),
    repeating-linear-gradient(
      180deg,
      transparent 0 28px,
      rgba(36, 107, 146, 0.08) 28px 29px
    );
  border-bottom: 1px solid rgba(25, 69, 58, 0.1);
  min-height: 230px;
  overflow: hidden;
  position: relative;
}

.success-case-card:nth-child(2) .success-case-card__paper {
  animation-delay: -1.5s;
}

.success-case-card:nth-child(3) .success-case-card__paper {
  animation-delay: -3s;
}

.success-case-card:nth-child(4) .success-case-card__paper {
  animation-delay: -4.5s;
}

.success-case-card__paper::before {
  background:
    linear-gradient(90deg, rgba(14, 58, 39, 0.12), rgba(14, 58, 39, 0.03) 64%, transparent),
    linear-gradient(90deg, rgba(14, 58, 39, 0.18), rgba(14, 58, 39, 0.04) 58%, transparent),
    linear-gradient(90deg, rgba(14, 58, 39, 0.12), rgba(14, 58, 39, 0.03) 72%, transparent);
  background-position: 0 0, 0 46px, 0 92px;
  background-repeat: no-repeat;
  background-size: 100% 12px, 100% 12px, 100% 12px;
  content: "";
  height: 132px;
  left: 22px;
  position: absolute;
  right: 22px;
  top: 82px;
}

.success-case-card__paper::after {
  background:
    radial-gradient(circle, rgba(14, 58, 39, 0.12) 0 3px, transparent 4px),
    radial-gradient(circle, rgba(14, 58, 39, 0.12) 0 3px, transparent 4px);
  background-position: left top, right top;
  background-repeat: no-repeat;
  background-size: 34px 34px;
  content: "";
  height: 34px;
  left: 50%;
  opacity: 0.8;
  position: absolute;
  top: 28px;
  transform: translateX(-50%);
  width: 92px;
}

.success-case-card__court {
  color: rgba(14, 58, 39, 0.62);
  font-size: 13px;
  font-weight: 900;
  left: 22px;
  position: absolute;
  top: 22px;
}

.success-case-card__stamp {
  border: 3px solid rgba(202, 57, 48, 0.88);
  color: #ca3930;
  font-size: 22px;
  font-weight: 900;
  left: 50%;
  letter-spacing: 0;
  line-height: 1;
  padding: 10px 14px;
  position: absolute;
  top: 56%;
  transform: translate(-50%, -50%) rotate(-8deg);
  white-space: nowrap;
}

.success-case-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.success-case-card__tag {
  align-self: flex-start;
  background: rgba(15, 111, 95, 0.1);
  border: 1px solid rgba(15, 111, 95, 0.16);
  border-radius: 999px;
  color: #0f5f55;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
  padding: 5px 10px;
}

.success-case-card h3 {
  color: var(--landing-ink);
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 10px;
}

.success-case-card p {
  color: var(--landing-text);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 18px;
}

.success-case-card strong {
  color: var(--landing-ink);
  display: block;
  font-size: 14px;
  margin-top: auto;
}

.landing-experts {
  align-items: start;
  border-top: 1px solid rgba(25, 69, 58, 0.12);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  margin-top: 64px;
  padding-top: 58px;
}

.landing-experts__copy span,
.landing-efficiency span {
  color: var(--landing-amber);
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 12px;
}

.landing-experts__copy h3,
.landing-efficiency h3 {
  color: var(--landing-ink);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.16;
  margin: 0;
}

.landing-experts__copy p,
.landing-efficiency p {
  color: var(--landing-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
  margin: 20px 0 0;
}

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

.expert-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 246, 241, 0.94)),
    radial-gradient(circle at right top, rgba(15, 95, 85, 0.12), transparent 44%);
  border: 1px solid var(--landing-border);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(18, 54, 43, 0.08);
  min-width: 0;
  padding: 28px;
  position: relative;
}

.expert-card::before {
  background: rgba(15, 95, 85, 0.14);
  border-radius: 999px;
  content: "";
  height: 64px;
  position: absolute;
  right: 24px;
  top: 24px;
  width: 64px;
}

.expert-card::after {
  color: var(--landing-ink);
  content: "법";
  font-size: 24px;
  font-weight: 900;
  line-height: 64px;
  position: absolute;
  right: 24px;
  text-align: center;
  top: 24px;
  width: 64px;
}

.expert-card--accounting::after {
  content: "회";
}

.expert-card__role {
  background: rgba(14, 58, 39, 0.08);
  border: 1px solid rgba(14, 58, 39, 0.12);
  border-radius: 999px;
  color: var(--landing-ink);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 22px;
  padding: 6px 12px;
}

.expert-card h4 {
  color: var(--landing-ink);
  font-size: 21px;
  line-height: 1.3;
  margin: 0 76px 8px 0;
}

.expert-card strong {
  color: #0f5f55;
  display: block;
  font-size: 15px;
  margin-bottom: 22px;
}

.expert-card ul,
.landing-efficiency__points {
  list-style: none;
  margin: 0;
  padding: 0;
}

.expert-card li {
  color: var(--landing-text);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}

.expert-card li + li {
  margin-top: 9px;
}

.expert-card li::before {
  background: #0f5f55;
  border-radius: 999px;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 5px;
}

.landing-efficiency {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(14, 58, 39, 0.96), rgba(15, 95, 85, 0.92)),
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.28), transparent 36%);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(18, 54, 43, 0.16);
  color: var(--landing-white);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  margin-top: 34px;
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.landing-efficiency::before {
  animation: flowPulse 7s linear infinite;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  content: "";
  height: 100%;
  left: -40%;
  position: absolute;
  top: 0;
  transform: skewX(-18deg);
  width: 32%;
}

.landing-efficiency > * {
  position: relative;
  z-index: 1;
}

.landing-efficiency span {
  color: #f0d28c;
}

.landing-efficiency h3,
.landing-efficiency p {
  color: var(--landing-white);
}

.landing-efficiency p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 16px;
}

.landing-efficiency__points {
  display: grid;
  gap: 10px;
}

.landing-efficiency__points li {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 900;
  padding: 12px 16px;
}

.landing-cta {
  background: var(--landing-white);
  padding: 116px 0;
}

.landing-cta p {
  color: var(--landing-text);
  font-size: 20px;
  font-weight: 600;
  margin: 28px 0 44px;
}

.landing-cta .landing-container {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.landing-cta .landing-button + .landing-button {
  margin-top: 14px;
}

@keyframes floatSuccessPaper {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -6px, 0);
  }
}

@keyframes ringBreath {
  0%,
  100% {
    opacity: 0.42;
    transform: translate(-50%, -50%) scale(0.98);
  }
  50% {
    opacity: 0.78;
    transform: translate(-50%, -50%) scale(1.03);
  }
}

@keyframes orbitSweep {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes floatSloganCard {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes sloganBar {
  0% {
    transform: scaleX(0.42);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  100% {
    transform: scaleX(0.42);
    transform-origin: left;
  }
}

@keyframes freeBandMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(122px);
  }
}

@keyframes freeRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes freeCountSlide {
  0%,
  33.333% {
    opacity: 1;
  }
  33.334%,
  100% {
    opacity: 0;
  }
}

@keyframes freeTrackSweep {
  0%,
  100% {
    transform: translateX(-24%) scaleX(0.72);
  }
  50% {
    transform: translateX(72%) scaleX(1);
  }
}

@keyframes gridDrift {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(144px);
  }
}

@keyframes floatSheet {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 12px, 0);
  }
}

@keyframes scanRows {
  0%,
  12% {
    transform: translateY(0);
  }
  44% {
    transform: translateY(42px);
  }
  76% {
    transform: translateY(84px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes flowPulse {
  0% {
    left: -35%;
  }
  100% {
    left: 100%;
  }
}

@keyframes floatMetricA {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-8px, -12px, 0);
  }
}

@keyframes floatMetricB {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10px, 10px, 0);
  }
}

@keyframes floatDiagnosis {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(8px, -10px, 0);
  }
}

@keyframes fillMetric {
  0% {
    transform: scaleX(0.35);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  100% {
    transform: scaleX(0.35);
    transform-origin: left;
  }
}

@keyframes signalBlink {
  0%,
  100% {
    opacity: 0.55;
  }
  45% {
    opacity: 1;
  }
}

@media (max-width: 1040px) {
  .slogan-data-card--value {
    left: 26px;
  }

  .slogan-data-card--going {
    right: 26px;
  }

  .slogan-data-card--vote {
    right: 70px;
  }

  .landing-hero {
    min-height: 680px;
  }

  .landing-hero__copy {
    max-width: 560px;
  }

  .sheet-preview {
    right: 4%;
    top: 120px;
    transform: scale(0.92);
    transform-origin: top right;
  }

  .flow-lane {
    right: 3%;
    transform: scale(0.88);
    transform-origin: center right;
  }

  .metric-panel--value {
    right: 36%;
  }

  .diagnosis-panel {
    left: 7%;
  }
}

@media (max-width: 900px) {
  .landing-container {
    padding: 0 20px;
  }

  .landing-slogan {
    min-height: 660px;
    padding: 86px 0 78px;
  }

  .landing-slogan__title {
    max-width: 720px;
  }

  .landing-slogan__copy {
    max-width: 600px;
    white-space: normal;
  }

  .slogan-data-card {
    opacity: 0.48;
  }

  .slogan-data-card--value {
    left: 18px;
    top: 118px;
  }

  .slogan-data-card--going {
    right: 18px;
    top: 160px;
  }

  .slogan-data-card--vote {
    display: none;
  }

  .landing-hero {
    min-height: auto;
    padding: 96px 0 88px;
  }

  .landing-hero__content {
    min-height: 420px;
  }

  .landing-hero__copy {
    max-width: 520px;
    padding-top: 0;
  }

  .analysis-stage {
    opacity: 0.48;
    right: 18px;
  }

  .sheet-preview {
    right: -40px;
    top: 70px;
  }

  .flow-lane,
  .metric-panel--risk {
    display: none;
  }

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

  .landing-success__header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .landing-experts,
  .landing-efficiency {
    grid-template-columns: 1fr;
  }

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

  .diagnosis-type-card {
    min-height: 0;
  }

  .feature-card,
  .process-card {
    padding: 34px;
  }

  .landing-free {
    padding: 92px 0;
  }

  .landing-free__inner {
    grid-template-columns: 1fr;
  }

  .landing-free__copy {
    max-width: 100%;
  }

  .free-meter {
    max-width: 420px;
    width: 100%;
  }

  .landing-section,
  .diagnosis-types,
  .landing-cta {
    padding: 92px 0;
  }
}

@media (max-width: 760px) {
  .landing-page {
    height: calc(100vh - 72px);
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 640px) {
  .landing-container {
    padding: 0 18px;
  }

  .body-case-switcher {
    border-radius: 20px;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto 2px;
    padding: 12px;
    width: min(calc(100% - 32px), 420px);
  }

  .body-case-switcher__label {
    font-size: 15px;
  }

  .body-case-switcher__options {
    flex: 1 1 100%;
    justify-content: center;
  }

  .body-case-switcher__option {
    flex: 1 1 0;
    justify-content: center;
    min-height: 36px;
    padding: 0 10px;
  }

  .landing-slogan {
    min-height: 590px;
    padding: 34px 0 46px;
  }

  .landing-slogan::after {
    background-size: 56px 56px;
    opacity: 0.24;
  }

  .slogan-ring--outer {
    height: 560px;
    width: 560px;
  }

  .slogan-ring {
    top: 48%;
  }

  .slogan-ring--middle {
    height: 420px;
    width: 420px;
  }

  .slogan-ring--inner {
    height: 300px;
    width: 300px;
  }

  .slogan-sweep {
    height: 480px;
    opacity: 0.62;
    width: 480px;
  }

  .slogan-sweep--two {
    height: 320px;
    width: 320px;
  }

  .slogan-data-card {
    display: none;
  }

  .landing-slogan__kicker {
    font-size: 13px;
  }

  .landing-service-switcher {
    border-radius: 22px;
    flex-direction: column;
    gap: 10px;
    max-width: min(100%, 340px);
    padding: 14px;
    width: 100%;
  }

  .landing-service-switcher__brand {
    font-size: 17px;
  }

  .landing-service-switcher__options {
    width: 100%;
  }

  .landing-service-switcher__option {
    flex: 1 1 0;
    justify-content: center;
    min-height: 36px;
    padding: 0 10px;
  }

  .landing-slogan__title {
    font-size: 25px;
    line-height: 1.28;
    max-width: 354px;
  }

  .landing-slogan__copy {
    font-size: 15px;
    max-width: 318px;
  }

  .landing-slogan__actions {
    gap: 10px;
    width: 100%;
  }

  .landing-slogan__actions .landing-button {
    min-width: min(100%, 236px);
  }

  .landing-slogan__chips {
    max-width: 320px;
  }

  .landing-hero {
    padding: 70px 0 60px;
  }

  .landing-hero::after {
    height: 44px;
  }

  .landing-hero__content {
    min-height: 430px;
  }

  .landing-eyebrow {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .landing-hero__copy h1,
  .diagnosis-types__header h2,
  .section-heading h2,
  .landing-cta h2 {
    font-size: 36px;
    overflow-wrap: break-word;
  }

  .landing-hero__copy p {
    font-size: 18px;
    line-height: 1.52;
    margin-top: 20px;
    max-width: 330px;
  }

  .landing-hero__actions {
    margin-top: 32px;
  }

  .landing-button {
    border-radius: 10px;
    min-height: 52px;
    padding: 0 26px;
  }

  .analysis-stage {
    bottom: 18px;
    left: 18px;
    opacity: 0.36;
    right: 18px;
    top: 180px;
  }

  .analysis-grid {
    inset: 0;
  }

  .sheet-preview {
    left: 20px;
    right: auto;
    top: 34px;
    transform: scale(0.72);
    transform-origin: top left;
  }

  .metric-panel--value {
    bottom: 32px;
    left: 28px;
    right: auto;
    top: auto;
    transform: scale(0.86);
    transform-origin: left bottom;
  }

  .diagnosis-panel {
    display: none;
  }

  .feature-grid {
    gap: 22px;
  }

  .feature-card {
    min-height: auto;
    padding: 30px;
  }

  .landing-free {
    padding: 72px 0;
  }

  .landing-free__inner,
  .landing-free__copy,
  .landing-free h2,
  .landing-free p,
  .landing-free__badges {
    max-width: min(100%, 356px);
    width: 100%;
  }

  .free-meter {
    max-width: min(100%, 340px);
    width: 100%;
  }

  .landing-free h2 {
    font-size: 32px;
  }

  .landing-free p {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .free-meter {
    min-height: 250px;
    padding: 24px;
  }

  .free-meter__price strong {
    font-size: 52px;
  }

  .feature-card h2 {
    font-size: 21px;
  }

  .feature-card p,
  .process-card p {
    font-size: 15px;
  }

  .section-heading {
    margin-bottom: 46px;
  }

  .notice-copy > p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 34px;
  }

  .notice-callout {
    padding: 22px;
  }

  .landing-section,
  .diagnosis-types,
  .landing-success,
  .landing-cta {
    padding: 72px 0;
  }

  .landing-cta {
    padding-bottom: 112px;
  }

  .process-card {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .landing-success h2 {
    font-size: 34px;
  }

  .landing-success__header p:not(.landing-success__eyebrow) {
    font-size: 15px;
  }

  .landing-success__filters {
    width: 100%;
  }

  .landing-success__filters span {
    flex: 1 1 0;
    min-width: 0;
  }

  .landing-success__grid {
    grid-template-columns: 1fr;
  }

  .success-case-card__paper {
    aspect-ratio: 1.15;
    min-height: 210px;
  }

  .landing-experts {
    gap: 24px;
    margin-top: 46px;
    padding-top: 42px;
  }

  .landing-experts__grid {
    grid-template-columns: 1fr;
  }

  .expert-card {
    padding: 24px;
  }

  .landing-efficiency {
    border-radius: 14px;
    margin-top: 24px;
    padding: 26px;
  }

  .process-card__number {
    height: 54px;
    width: 54px;
  }

  .landing-cta p {
    font-size: 17px;
  }
}

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