:root {
  --ink: #19352c;
  --muted: #5f716a;
  --paper: #fffdf9;
  --cream: #fff3e9;
  --sage: #dff3e8;
  --mint: #eaf9f1;
  --olive: #23775a;
  --deep: #174c3c;
  --brand: #117353;
  --brand-light: #2d9870;
  --line-green: #06c755;
  --copper: #df7652;
  --gold: #f0b76c;
  --line: #dbe9e2;
  --shadow: 0 24px 64px rgba(18, 91, 67, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans Thai", system-ui, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.material-symbols-rounded {
  display: inline-block;
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
.wrap {
  width: min(1180px, calc(100% - 36px));
  margin: auto;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--copper);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.section {
  padding: 88px 0;
}
.section-head {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}
.section-head h2 {
  margin: 0 0 10px;
  color: var(--deep);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.section-head p {
  margin: 0;
  color: var(--muted);
}
.section-note {
  margin-top: 8px !important;
  color: #87918b !important;
  font-size: 0.72rem !important;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--deep);
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand), var(--brand-light));
  color: #fff;
  font-size: 1rem;
}
.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.86rem;
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--deep);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 15px 9px 10px;
  border-radius: 999px;
  background: var(--line-green);
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
}
.nav-cta:hover {
  background: #05b94f;
  transform: translateY(-1px);
}
.line-icon {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 26px;
  padding: 0 6px;
  border-radius: 9px;
  background: #fff;
  color: #00a947;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 16%, rgba(45, 152, 112, 0.15), transparent 26%),
    linear-gradient(135deg, #fff8f0 0%, #fffdf9 52%, #eaf8f1 100%);
  border-bottom: 1px solid var(--line);
}
.hero:before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -260px;
  top: -350px;
  border: 1px solid rgba(17, 115, 83, 0.2);
  border-radius: 50%;
}
.hero:after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -390px;
  right: auto;
  bottom: -390px;
  border: 1px solid rgba(223, 118, 82, 0.22);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
  min-height: 640px;
  padding: 52px 0 58px;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 17px;
  padding: 7px 12px;
  border: 1px solid #cbe4d7;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 800;
  box-shadow: 0 7px 22px rgba(17, 115, 83, 0.06);
}
.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--deep);
  font-size: clamp(2.55rem, 4.35vw, 4.15rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.hero h1 em {
  display: block;
  color: var(--copper);
  font-style: normal;
}
.hero-lead {
  max-width: 585px;
  margin: 20px 0 0;
  color: #4f665d;
  font-size: 1rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 26px 0 15px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 21px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  font-size: 0.9rem;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--brand);
  color: #fff;
}
.button-primary:hover {
  background: #0d6147;
}
.button-line {
  gap: 8px;
  background: var(--line-green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(6, 199, 85, 0.2);
}
.button-line:hover {
  background: #05b94f;
  box-shadow: 0 15px 32px rgba(6, 199, 85, 0.28);
}
.button-soft {
  border-color: #c8ddd3;
  background: rgba(255, 255, 255, 0.82);
  color: var(--deep);
}
.button-soft:hover {
  border-color: #95c5ae;
  background: #fff;
}
.hero-line-cta {
  gap: 9px;
  min-height: 54px;
  padding: 10px 20px 10px 11px;
  box-shadow: 0 14px 30px rgba(6, 199, 85, 0.23);
}
.hero-note {
  margin: 0;
  color: #71847b;
  font-size: 0.74rem;
}
.hero-art {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1.02 / 1;
  border: 7px solid rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  background: #edf5ef;
  box-shadow: 0 28px 70px rgba(18, 91, 67, 0.2);
}
.hero-art:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  background: linear-gradient(180deg, transparent, rgba(12, 62, 45, 0.08));
  pointer-events: none;
}
.hero-art picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}
.hero-art figcaption {
  margin-top: 10px;
  color: #758078;
  font-size: 0.7rem;
  text-align: center;
}
.trust {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 24px 0;
}
.trust-item {
  display: flex;
  gap: 12px;
  align-items: center;
}
.trust-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  border: 0;
  border-radius: 12px;
  background: #eaf0e7;
  color: var(--olive);
  font-size: 1.55rem;
}
.trust-icon-line {
  overflow: hidden;
  background: transparent;
}
.trust-icon-line img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.trust-item strong {
  display: block;
  color: var(--deep);
  font-size: 0.82rem;
}
.trust-item > div > span {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.45;
}
.quick-care {
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, #f7fbf8 100%);
}
.quick-care-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.quick-care-head .eyebrow {
  margin: 0 0 5px;
}
.quick-care-head h2 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.25;
}
.quick-care-head > a {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  text-underline-offset: 4px;
}
.quick-care-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.quick-care-grid > a {
  display: flex;
  min-width: 0;
  min-height: 76px;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  border: 1px solid #d9e9e0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(20, 92, 68, 0.05);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.quick-care-grid > a:hover,
.quick-care-grid > a:focus-visible {
  transform: translateY(-2px);
  border-color: #9acbb4;
  box-shadow: 0 13px 28px rgba(20, 92, 68, 0.1);
}
.quick-care-grid .material-symbols-rounded {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 13px;
  background: #eaf4ed;
  color: var(--brand);
  font-size: 1.55rem;
}
.quick-care-grid strong,
.quick-care-grid small {
  display: block;
}
.quick-care-grid strong {
  color: var(--deep);
  font-size: 0.8rem;
  line-height: 1.4;
}
.quick-care-grid small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.health-match {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 14%,
      rgba(240, 183, 108, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 85%,
      rgba(45, 152, 112, 0.2),
      transparent 30%
    ),
    linear-gradient(135deg, #eefaf4 0%, #fffaf3 100%);
  color: var(--ink);
}
.health-match:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -330px;
  bottom: -330px;
  border: 1px solid rgba(17, 115, 83, 0.12);
  border-radius: 50%;
}
.match-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.match-intro {
  position: sticky;
  top: 92px;
  min-width: 0;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(17, 115, 83, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 212, 163, 0.45), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(238, 250, 244, 0.9));
  box-shadow: 0 28px 70px rgba(18, 91, 67, 0.13);
  isolation: isolate;
}
.match-intro:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 270px;
  height: 270px;
  right: -125px;
  bottom: 155px;
  border: 48px solid rgba(223, 118, 82, 0.07);
  border-radius: 50%;
}
.match-intro-copy {
  position: relative;
  z-index: 2;
}
.match-intro .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(17, 115, 83, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand);
  box-shadow: 0 8px 20px rgba(17, 115, 83, 0.08);
}
.match-intro h2 {
  margin: 0 0 18px;
  color: var(--deep);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}
.match-intro h2 span {
  display: inline;
  background: linear-gradient(115deg, #b9523d 0%, #df7652 42%, #117353 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.match-intro-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.match-presenter {
  position: relative;
  min-height: 420px;
  margin: 10px -18px -8px;
}
.match-presenter img {
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: min(96%, 390px);
  max-height: 470px;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
  filter: drop-shadow(0 22px 24px rgba(21, 82, 63, 0.19));
}
.match-presenter figcaption {
  position: absolute;
  z-index: 2;
  left: 2px;
  bottom: 14px;
  max-width: 230px;
  padding: 12px 14px;
  border: 1px solid rgba(223, 118, 82, 0.2);
  border-radius: 16px 16px 16px 5px;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 14px 32px rgba(60, 74, 65, 0.16);
  backdrop-filter: blur(8px);
}
.match-presenter figcaption strong,
.match-presenter figcaption span {
  display: block;
}
.match-presenter figcaption strong {
  color: #a34737;
  font-size: 0.77rem;
}
.match-presenter figcaption span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.5;
}
.match-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 18px 0 18px;
}
.match-facts span {
  padding: 13px 10px;
  border: 1px solid rgba(17, 115, 83, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  font-size: 0.69rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(17, 115, 83, 0.06);
}
.match-facts strong {
  display: block;
  color: var(--brand);
  font-size: 1.16rem;
}
.match-privacy {
  position: relative;
  z-index: 2;
  padding-top: 15px;
  border-top: 1px solid #d6e8df;
  font-size: 0.72rem !important;
  line-height: 1.6;
}
.quiz-card {
  position: relative;
  min-width: 0;
  padding: 29px;
  border: 1px solid rgba(17, 115, 83, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(#fffdf9, #fffdf9) padding-box,
    linear-gradient(120deg, rgba(223, 118, 82, 0.38), rgba(17, 115, 83, 0.28)) border-box;
  color: var(--ink);
  box-shadow: 0 32px 82px rgba(18, 91, 67, 0.17);
}
.quiz-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #df7652, #f0b76c 46%, #22a77b);
}
.quiz-welcome {
  display: flex;
  gap: 11px;
  align-items: center;
  margin: 0 0 19px;
  padding: 11px 13px;
  border: 1px solid rgba(223, 118, 82, 0.16);
  border-radius: 14px;
  background: linear-gradient(110deg, #fff3e9, #effaf4);
}
.quiz-welcome > .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 11px;
  background: #fff;
  color: #b9523d;
  font-size: 1.3rem;
  box-shadow: 0 8px 18px rgba(94, 88, 73, 0.08);
}
.quiz-welcome strong,
.quiz-welcome span {
  display: block;
}
.quiz-welcome strong {
  color: var(--deep);
  font-size: 0.75rem;
}
.quiz-welcome div > span {
  color: var(--muted);
  font-size: 0.65rem;
}
.quiz-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}
.quiz-top span:first-child {
  color: var(--deep);
}
.quiz-progress {
  height: 6px;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8ece5;
}
.quiz-progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-light), var(--line-green));
  transition: width 0.28s ease;
}
.quiz-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
}
.quiz-step legend {
  width: 100%;
  padding: 0;
  color: var(--deep);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 800;
  line-height: 1.35;
}
.quiz-hint {
  margin: 6px 0 19px;
  color: var(--muted);
  font-size: 0.78rem;
}
.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.quiz-options-safety {
  grid-template-columns: 1fr;
}
.quiz-option {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 88px;
  padding: 13px;
  border: 1px solid #dce2da;
  border-radius: 15px;
  background: #fff;
  cursor: pointer;
  transition:
    border-color 0.16s ease,
    background 0.16s ease,
    transform 0.16s ease,
    box-shadow 0.16s ease;
}
.quiz-option:hover {
  transform: translateY(-1px);
  border-color: #adbaae;
  box-shadow: 0 8px 20px rgba(43, 61, 51, 0.08);
}
.quiz-option:focus-within {
  outline: 3px solid rgba(17, 115, 83, 0.17);
  outline-offset: 2px;
}
.quiz-option.is-selected,
.quiz-option:has(input:checked) {
  border-color: var(--brand-light);
  background: #effaf4;
  box-shadow: 0 0 0 1px rgba(17, 115, 83, 0.14);
}
.quiz-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.option-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #eaf0e7;
  color: var(--olive);
  font-size: 1.55rem;
  line-height: 1;
  transition:
    color 0.16s ease,
    background 0.16s ease,
    transform 0.16s ease;
}
.quiz-option.is-selected .option-mark,
.quiz-option:has(input:checked) .option-mark {
  background: var(--deep);
  color: #fff;
  transform: scale(1.04);
}
.quiz-option strong {
  display: block;
  color: var(--deep);
  font-size: 0.79rem;
  line-height: 1.45;
}
.quiz-option small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.45;
}
.quiz-error {
  min-height: 22px;
  margin: 10px 0 0;
  color: #a13f34;
  font-size: 0.72rem;
}
.quiz-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 5px;
}
.quiz-actions-end {
  justify-content: flex-end;
}
.quiz-actions .button {
  min-width: 126px;
  border: 0;
  cursor: pointer;
}
.quiz-actions .button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}
.quiz-back {
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.quiz-result {
  outline: none;
}
.result-kicker {
  margin: 0 0 6px;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.quiz-result > h3 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}
.result-lead {
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: 0.88rem;
}
.result-product {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: center;
  padding: 16px;
  border: 1px solid #dae2d8;
  border-radius: 18px;
  background: #f2f6ef;
}
.result-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 13px;
  background: #e5ece2;
}
.result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.result-label {
  color: var(--copper);
  font-size: 0.66rem;
  font-weight: 800;
}
.result-product h4 {
  margin: 4px 0 6px;
  color: var(--deep);
  font-size: 1.2rem;
}
.result-product p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.55;
}
.result-reasons {
  margin: 18px 0;
}
.result-reasons > strong {
  color: var(--deep);
  font-size: 0.77rem;
}
.result-reasons ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 9px 0 0;
  padding: 0;
  list-style: none;
}
.result-reasons li {
  padding: 9px 10px;
  border-radius: 10px;
  background: var(--cream);
  color: #56635c;
  font-size: 0.67rem;
  line-height: 1.45;
}
.result-caution {
  margin: 17px 0;
  padding: 13px 15px;
  border: 1px solid #e7caaa;
  border-radius: 12px;
  background: #fff8ee;
  color: #6c5340;
}
.result-caution strong {
  display: block;
  color: #75472f;
  font-size: 0.77rem;
}
.result-caution p {
  margin: 3px 0 0;
  font-size: 0.7rem;
  line-height: 1.55;
}
.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}
.result-secondary {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}
.result-secondary a {
  color: var(--deep);
  font-weight: 800;
}
.result-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.result-tools a,
.result-tools button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.result-disclaimer {
  margin: 14px 0 0;
  color: #87918b;
  font-size: 0.64rem;
  line-height: 1.55;
}
.section-note a {
  color: var(--deep);
  font-weight: 800;
}
.intro {
  background: #fff;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
}
.intro h2 {
  max-width: 620px;
  margin: 0;
  color: var(--deep);
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.intro h2 em {
  color: var(--copper);
  font-style: normal;
}
.intro-copy {
  max-width: 490px;
  color: var(--muted);
}
.intro-copy p {
  margin: 0 0 16px;
}
.mini-link {
  color: var(--deep);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: #c5d0c2;
  text-underline-offset: 5px;
}
.product-section {
  background: var(--cream);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(48, 65, 54, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #e8efe5, #fbf7ef);
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  padding: 30px;
  background: linear-gradient(135deg, #dfe9de, #fbf4e9);
  color: var(--deep);
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.06em;
}
.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}
.product-tag {
  align-self: flex-start;
  margin-bottom: 9px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 800;
}
.product-card h3 {
  margin: 0 0 7px;
  color: var(--deep);
  font-size: 1rem;
  line-height: 1.35;
}
.product-focus {
  display: block;
  margin-top: 3px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
}
.product-card p {
  flex: 1;
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}
.product-meta {
  margin-bottom: 13px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  color: #7d8982;
  font-size: 0.7rem;
}
.product-link {
  display: inline-flex;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 800;
}
.product-link:hover {
  background: #0d6147;
}
.awards {
  background:
    radial-gradient(circle at 85% 10%, rgba(240, 183, 108, 0.14), transparent 28%),
    linear-gradient(135deg, #174c3c 0%, #0d6047 100%);
  color: #fff;
}
.awards .section-head h2 {
  color: #fff;
}
.awards .section-head p {
  color: rgba(255, 255, 255, 0.72);
}
.awards .section-head h2 em {
  color: #f2bd91;
  font-style: normal;
}
.award-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.award-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}
.award-gallery img {
  width: 100%;
  height: auto;
  background: #fff;
}
.award-gallery figcaption {
  padding: 12px 14px;
  color: #f7d9bd;
  font-size: 0.72rem;
  font-weight: 800;
}
.award-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  text-align: center;
}
.article-section {
  background: #fff;
}
.article-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0 auto 25px;
}
.filter {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--olive);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
}
.filter.is-active,
.filter:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}
.article-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.article-card[hidden] {
  display: none;
}
.article-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e9eee6;
}
.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-body {
  padding: 15px;
}
.article-body .tag {
  color: var(--copper);
  font-size: 0.67rem;
  font-weight: 800;
}
.article-body h3 {
  margin: 7px 0;
  color: var(--deep);
  font-size: 0.91rem;
  line-height: 1.4;
}
.article-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}
.article-id {
  display: block;
  margin-top: 10px;
  color: #8a968f;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}
.article-more {
  text-align: center;
  margin: 28px 0 0;
}
.article-more .button {
  border: 1px solid var(--line);
  color: var(--deep);
  background: var(--paper);
}
.how {
  background: var(--mint);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.how-card {
  padding: 25px;
  border: 1px solid #d2e9dd;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 28px rgba(18, 91, 67, 0.06);
}
.how-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 15px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}
.how-card h3 {
  margin: 0 0 7px;
  color: var(--deep);
  font-size: 1.05rem;
}
.how-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}
.order-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(240, 183, 108, 0.2), transparent 30%),
    radial-gradient(circle at 5% 90%, rgba(139, 39, 68, 0.34), transparent 32%),
    radial-gradient(circle at 94% 82%, rgba(6, 199, 85, 0.14), transparent 27%),
    linear-gradient(135deg, #0e7657 0%, #174c3c 100%);
  color: #fff;
}
.order-section:after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -270px;
  top: -250px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}
.order-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: stretch;
}
.order-copy {
  position: relative;
  min-height: 760px;
  padding: 28px 28px 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 76%, rgba(255, 211, 168, 0.18), transparent 29%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
  isolation: isolate;
}
.order-copy .eyebrow {
  display: inline-flex;
  padding: 7px 12px;
  border: 1px solid rgba(255, 211, 168, 0.27);
  border-radius: 999px;
  background: rgba(7, 63, 47, 0.24);
  color: #ffd3a8;
}
.order-copy h2 {
  margin: 0 0 13px;
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.order-copy h2 span {
  color: #76ffad;
  text-shadow: 0 0 28px rgba(6, 199, 85, 0.32);
}
.order-copy p {
  color: rgba(255, 255, 255, 0.8);
}
.order-list {
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
}
.order-list li {
  margin: 11px 0;
}
.order-list li:before {
  content: "✓";
  display: inline-block;
  width: 24px;
  color: #f3c096;
  font-weight: 800;
}
.order-copy > .button-line {
  position: relative;
  z-index: 3;
  min-width: 250px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 16px 34px rgba(0, 34, 18, 0.25),
    0 0 0 7px rgba(6, 199, 85, 0.08);
}
.order-presenter {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: -34px;
  height: 390px;
  margin: 0;
}
.order-presenter:before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -68px;
  bottom: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 211, 168, 0.26), transparent 68%);
}
.order-presenter img {
  position: absolute;
  right: -4px;
  bottom: 0;
  width: min(74%, 330px);
  max-height: 420px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 28px rgba(0, 34, 24, 0.33));
}
.order-presenter figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 68px;
  max-width: 225px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 17px 17px 5px 17px;
  background: rgba(255, 253, 249, 0.94);
  color: var(--deep);
  box-shadow: 0 18px 38px rgba(0, 35, 23, 0.24);
  backdrop-filter: blur(8px);
}
.order-presenter figcaption strong,
.order-presenter figcaption span {
  display: block;
}
.order-presenter figcaption strong {
  color: #8a2e49;
  font-size: 0.79rem;
}
.order-presenter figcaption span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.5;
}
.order-form {
  padding: 26px;
  border-radius: 21px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 30px 72px rgba(4, 45, 32, 0.3);
}
.order-form h3 {
  margin: 0 0 16px;
  color: var(--deep);
  font-size: 1.25rem;
}
.field {
  margin-bottom: 13px;
}
.field label {
  display: block;
  margin-bottom: 5px;
  color: var(--deep);
  font-size: 0.77rem;
  font-weight: 800;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
}
.field textarea {
  min-height: 86px;
  resize: vertical;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.order-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}
.form-footnote {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 1.5;
}
.faq-section {
  background: var(--cream);
}
.faq {
  max-width: 820px;
  margin: auto;
}
.faq details {
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.faq summary {
  padding: 15px 18px;
  cursor: pointer;
  color: var(--deep);
  font-size: 0.88rem;
  font-weight: 800;
}
.faq .answer {
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 0.81rem;
}
.contact-panel {
  margin-top: 30px;
  padding: 32px;
  border-radius: 20px;
  background: #fff;
  text-align: center;
}
.contact-panel h2 {
  margin: 0 0 7px;
  color: var(--deep);
}
.contact-panel p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.84rem;
}
.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer {
  padding: 43px 0 20px;
  background: #1d2c26;
  color: rgba(255, 255, 255, 0.72);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 28px;
}
.footer h3,
.footer h4 {
  margin: 0 0 10px;
  color: #f4d6b7;
}
.footer p,
.footer li,
.footer a {
  font-size: 0.78rem;
}
.footer p {
  margin: 0;
  max-width: 420px;
}
.footer ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.footer li {
  margin: 7px 0;
}
.footer a {
  text-decoration: none;
}
.footer a:hover {
  color: #f4d6b7;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 17px;
  text-align: center;
  font-size: 0.71rem;
}
.mobile-line-bar {
  display: none;
}
@media (max-width: 1040px) {
  .quick-care-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .article-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    max-width: 760px;
    padding: 44px 0 50px;
  }
  .hero-copy {
    max-width: 680px;
  }
  .hero-art {
    aspect-ratio: 16 / 10;
  }
  .hero-art img {
    object-position: 66% center;
  }
  .award-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .wrap {
    width: min(100% - 28px, 620px);
  }
  .nav {
    min-height: 62px;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    margin-left: auto;
    gap: 6px;
    padding: 7px 11px 7px 7px;
    font-size: 0.72rem;
  }
  .nav-cta .line-icon {
    min-width: 32px;
    height: 24px;
  }
  .hero-grid,
  .intro-grid,
  .order-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-grid {
    padding: 34px 0 40px;
  }
  .intro-grid,
  .order-grid {
    padding: 0;
  }
  .hero {
    min-height: 0;
  }
  .hero-art {
    order: 0;
    aspect-ratio: 4 / 3;
    border-width: 5px;
    border-radius: 22px;
  }
  .hero-art img {
    object-position: 66% center;
  }
  .hero h1 {
    font-size: clamp(2.25rem, 10.4vw, 3.15rem);
    line-height: 1.13;
  }
  .hero-lead {
    font-size: 0.94rem;
    line-height: 1.72;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-note {
    font-size: 0.7rem;
    line-height: 1.55;
  }
  .section {
    padding: 52px 0;
  }
  .quick-care {
    padding: 27px 0 31px;
  }
  .quick-care-head {
    display: block;
    margin-bottom: 15px;
  }
  .quick-care-head > a {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.73rem;
  }
  .quick-care-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 1px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .quick-care-grid > a {
    min-width: min(78vw, 300px);
    scroll-snap-align: start;
  }
  .intro h2 {
    font-size: 2.2rem;
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .product-grid,
  .article-grid,
  .award-gallery {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 3px 2px 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .quick-care-grid::-webkit-scrollbar,
  .product-grid::-webkit-scrollbar,
  .award-gallery::-webkit-scrollbar,
  .article-grid::-webkit-scrollbar {
    display: none;
  }
  .product-card {
    display: block;
    min-width: min(86vw, 340px);
    scroll-snap-align: start;
  }
  .product-media {
    aspect-ratio: 16 / 10;
  }
  .product-body {
    padding: 14px;
  }
  .product-card p {
    font-size: 0.76rem;
  }
  .article-card {
    display: block;
    min-width: min(84vw, 330px);
    scroll-snap-align: start;
  }
  .article-thumb {
    aspect-ratio: 16 / 10;
  }
  .article-body {
    padding: 13px;
  }
  .article-body h3 {
    font-size: 0.86rem;
  }
  .article-body p {
    font-size: 0.72rem;
  }
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .order-form {
    padding: 20px;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px 0;
  }
  .trust-item {
    align-items: flex-start;
    padding: 12px;
    border: 1px solid #e0eee7;
    border-radius: 15px;
    background: #fbfefc;
  }
  .trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .trust-item strong {
    font-size: 0.75rem;
  }
  .trust-item > div > span {
    font-size: 0.67rem;
  }
  .trust-item .trust-icon {
    font-size: 1.4rem;
  }
  .award-gallery {
    gap: 14px;
  }
  .award-gallery figure {
    min-width: min(82vw, 330px);
    border-radius: 16px;
    scroll-snap-align: start;
  }
  .award-gallery img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
  }
  .award-gallery figcaption {
    font-size: 0.7rem;
  }
  .article-toolbar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 3px;
  }
  .filter {
    white-space: nowrap;
  }
  .contact-panel {
    padding: 25px 18px;
  }
  body {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }
  .mobile-line-bar {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid #d8e7df;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -12px 34px rgba(18, 91, 67, 0.14);
    backdrop-filter: blur(14px);
  }
  .mobile-line-bar > div {
    min-width: 0;
  }
  .mobile-line-bar strong,
  .mobile-line-bar > div span {
    display: block;
  }
  .mobile-line-bar strong {
    color: var(--deep);
    font-size: 0.76rem;
    line-height: 1.35;
  }
  .mobile-line-bar > div span {
    overflow: hidden;
    color: var(--muted);
    font-size: 0.63rem;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .mobile-line-bar > a {
    display: inline-flex;
    flex: none;
    align-items: center;
    gap: 7px;
    padding: 8px 12px 8px 7px;
    border-radius: 999px;
    background: var(--line-green);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(6, 199, 85, 0.24);
  }
  .mobile-line-bar .line-icon {
    min-width: 31px;
    height: 23px;
    font-size: 0.52rem;
  }
}
@media (max-width: 420px) {
  .wrap {
    width: min(100% - 22px, 620px);
  }
  .brand {
    font-size: 1.02rem;
  }
  .nav-cta > span:last-child {
    max-width: 76px;
    line-height: 1.25;
  }
  .hero-badge {
    font-size: 0.65rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item {
    align-items: center;
  }
  .mobile-line-bar > div span {
    display: none;
  }
}
.home-pdpa {
  margin: 10px 0 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fbf5;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.6;
}
.home-pdpa strong {
  display: block;
  margin-bottom: 3px;
  color: var(--deep);
  font-size: 0.78rem;
}
.home-pdpa p {
  margin: 0;
}
.home-pdpa a {
  color: var(--deep);
  font-weight: 800;
}
@media (max-width: 920px) {
  .match-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .match-intro {
    position: static;
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    grid-template-areas:
      "copy presenter"
      "facts presenter"
      "privacy presenter";
    column-gap: 18px;
    max-width: none;
    padding: 26px;
  }
  .match-intro-copy {
    grid-area: copy;
  }
  .match-presenter {
    grid-area: presenter;
    min-height: 430px;
    margin: -10px -20px -26px 0;
  }
  .match-presenter img {
    width: min(100%, 360px);
  }
  .match-facts {
    grid-area: facts;
  }
  .match-privacy {
    grid-area: privacy;
  }
  .match-intro h2 {
    max-width: 680px;
  }
  .order-grid {
    grid-template-columns: 1fr;
  }
  .order-copy {
    min-height: 680px;
    padding-bottom: 360px;
  }
  .order-presenter {
    height: 360px;
  }
}
@media (max-width: 760px) {
  .health-match {
    padding-top: 54px;
    padding-bottom: 54px;
  }
  .match-shell {
    gap: 24px;
  }
  .match-intro {
    display: block;
    padding: 21px;
    border-radius: 22px;
  }
  .match-intro h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .match-intro-copy > p:not(.eyebrow) {
    font-size: 0.84rem;
  }
  .match-presenter {
    min-height: 220px;
    margin: 8px -15px -8px;
  }
  .match-presenter img {
    bottom: -18px;
    width: min(72%, 250px);
    max-height: 255px;
  }
  .match-presenter figcaption {
    bottom: 8px;
    max-width: 190px;
    padding: 10px 11px;
  }
  .match-facts {
    margin: 22px 0 17px;
  }
  .match-facts span {
    padding: 10px 5px;
    font-size: 0.62rem;
  }
  .match-facts strong {
    font-size: 1rem;
  }
  .quiz-card {
    margin-inline: -3px;
    padding: 19px 16px;
    border-radius: 20px;
  }
  .quiz-welcome {
    margin-bottom: 16px;
    padding: 9px 10px;
  }
  .quiz-welcome > .material-symbols-rounded {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
  .quiz-welcome div > span {
    font-size: 0.61rem;
  }
  .quiz-top {
    font-size: 0.65rem;
  }
  .quiz-top span:last-child {
    display: none;
  }
  .quiz-progress {
    margin-bottom: 22px;
  }
  .quiz-step legend {
    font-size: 1.25rem;
  }
  .quiz-options {
    grid-template-columns: 1fr;
  }
  .quiz-option {
    min-height: 78px;
    padding: 11px;
  }
  .quiz-option strong {
    font-size: 0.77rem;
  }
  .quiz-actions .button {
    min-width: 118px;
  }
  .result-product {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .result-image {
    aspect-ratio: 16 / 8;
  }
  .result-reasons ul {
    grid-template-columns: 1fr;
  }
  .result-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .result-actions .button {
    width: 100%;
  }
  .result-tools {
    flex-direction: column;
    align-items: flex-start;
  }
  .order-copy {
    min-height: 550px;
    padding: 22px 20px 250px;
    border-radius: 22px;
  }
  .order-copy h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }
  .order-copy > .button-line {
    width: 100%;
    min-width: 0;
  }
  .order-presenter {
    bottom: -24px;
    height: 250px;
  }
  .order-presenter img {
    right: -18px;
    width: min(64%, 235px);
    max-height: 275px;
  }
  .order-presenter figcaption {
    left: 12px;
    bottom: 38px;
    max-width: 190px;
    padding: 11px 12px;
  }
}
