:root {
  --ink: #111816;
  --muted: #64716b;
  --line: #dfe8e3;
  --paper: #fbfcfa;
  --surface: #ffffff;
  --mist: #eef6f1;
  --teal: #117568;
  --olive: #668642;
  --amber: #b47a2c;
  --rose: #b85b54;
  --shadow: 0 18px 42px rgba(17, 24, 22, .09);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7faf8 0, #ffffff 38%, #f8faf7 100%);
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 0 32px;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223, 232, 227, .86);
  transition: box-shadow .24s ease, background .24s ease;
}

.topbar.is-scrolled {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 28px rgba(17, 24, 22, .07);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  font-size: 19px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: white;
  border: 1px solid rgba(17, 117, 104, .16);
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(17, 117, 104, .08);
}

.brand-mark img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.desktop-nav a,
.mobile-nav a {
  font-weight: 800;
  color: #4b5852;
  padding: 9px 12px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  background: var(--mist);
  color: var(--teal);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  box-shadow: 0 8px 20px rgba(17, 24, 22, .05);
}

.language-switcher button {
  min-width: 38px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.language-switcher button.active {
  background: var(--ink);
  color: white;
}

.icon-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-size: 20px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed;
  z-index: 25;
  top: 76px;
  left: 14px;
  right: 14px;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-nav.open {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 34px 22px 72px;
}

.hero {
  min-height: calc(100vh - 108px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  animation: riseIn .72s ease both;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 6px 10px;
  border: 1px solid rgba(17, 117, 104, .16);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(255, 255, 255, .78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

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

h1 {
  max-width: 650px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .96;
  letter-spacing: 0;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 14px;
}

h3 {
  font-size: 20px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.hero-text {
  max-width: 630px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.primary-button,
.secondary-button,
.small-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 19px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.primary-button {
  background: var(--ink);
  color: white;
  box-shadow: 0 14px 30px rgba(17, 24, 22, .14);
}

.primary-button:hover {
  transform: translateY(-1px);
  background: var(--teal);
  box-shadow: 0 18px 34px rgba(17, 117, 104, .18);
}

.secondary-button {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}

.secondary-button:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 117, 104, .28);
  color: var(--teal);
}

.small-button {
  min-height: 40px;
  padding: 0 13px;
  font-size: 13px;
  white-space: nowrap;
}

.fine-print {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.hero-panel {
  min-height: 500px;
  display: grid;
  gap: 12px;
  align-content: end;
  padding: 18px;
  border: 1px solid rgba(223, 232, 227, .92);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(238,246,241,.92));
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: riseIn .82s .08s ease both;
  transition: transform .24s ease, box-shadow .24s ease;
}

.hero-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(17, 24, 22, .12);
}

.hero-products {
  min-height: clamp(220px, 28vw, 290px);
  display: grid;
  align-content: end;
  gap: 18px;
  padding: 22px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(17, 117, 104, .12), rgba(180, 122, 44, .10)),
    #f8fbf8;
  border: 1px solid rgba(255, 255, 255, .9);
}

.hero-product-art {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: end;
  min-height: clamp(128px, 18vw, 178px);
}

.hero-product-art img {
  width: min(100%, 220px);
  height: clamp(118px, 16vw, 168px);
  justify-self: center;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(17, 24, 22, .14));
  animation: softFloat 5.8s ease-in-out infinite;
  will-change: transform;
}

.hero-product-art img:nth-child(2) {
  animation-delay: .7s;
}

.hero-status {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(17, 117, 104, .14);
}

.hero-status span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.hero-status strong {
  font-size: 20px;
}

.flow-card[data-open-health] {
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.flow-card[data-open-health]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(17, 24, 22, .10);
}

.flow-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(223, 232, 227, .94);
  border-radius: 8px;
  background: rgba(255,255,255,.88);
  transform: translateZ(0);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.flow-card:hover,
.flow-card.active {
  transform: translateX(3px);
  border-color: rgba(17, 117, 104, .24);
  background: white;
}

.flow-card span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--teal);
  font-size: 12px;
  font-weight: 900;
  grid-row: span 2;
}

.flow-card strong {
  display: block;
  font-size: 16px;
  margin: 0;
}

.flow-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.care-section,
.trust-section,
.med-section,
.detail-modal { width: min(760px, 100%); }

.detail-content {
  max-height: min(70vh, 640px);
  overflow-y: auto;
  padding-right: 6px;
}

.detail-section { margin-bottom: 18px; }

.detail-section h3 {
  font-size: 15px;
  font-weight: 900;
  margin: 0 0 6px;
  color: var(--ink);
}

.detail-section p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.detail-disclaimer {
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff8ec;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}

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

.health-grid label span,
.health-cond .verify-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 6px;
}

.order-form input[type="text"],
.order-form input[type="number"],
.order-form input[type="email"],
.order-form select,
.order-form textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.order-form textarea {
  min-height: 52px;
  resize: vertical;
}

.health-cond {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.health-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 14px;
}

.health-checks label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

@media (max-width: 560px) {
  .health-grid {
    grid-template-columns: 1fr;
  }
  .health-checks {
    grid-template-columns: 1fr;
  }
}

.health-upload {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.health-upload input[type="file"] {
  font-size: 13px;
  color: var(--ink);
}

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

.upload-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f6f7f8;
}

.upload-remove {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #b3261e;
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
}

.assessment-verdict {
  font-weight: 900;
  font-size: 17px;
  margin: 0 0 6px;
}

.verdict-eligible { color: #0f766e; }
.verdict-review { color: #b45309; }
.verdict-not_eligible { color: #b3261e; }

.assessment-score {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 10px;
}

.assessment-flags-title {
  font-weight: 900;
  font-size: 13px;
  margin: 10px 0 4px;
  color: var(--ink);
}

.review-steps {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 10px;
  counter-reset: step;
}

.review-steps li {
  counter-increment: step;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.review-steps li::before {
  content: counter(step);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  background: #eef1f0;
  color: var(--muted);
}

.review-steps li.active {
  color: var(--ink);
  font-weight: 700;
}

.review-steps li.active::before {
  background: #0f766e;
  color: #fff;
}

.pay-methods {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  margin-bottom: 12px;
}

.pay-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.pay-method {
  display: grid;
  gap: 2px;
  padding: 10px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s ease, background .2s ease;
}

.pay-method .pay-method-name {
  font-size: 13px;
  font-weight: 900;
  color: var(--ink);
}

.pay-method .pay-method-sub {
  font-size: 11px;
  color: var(--muted);
}

.pay-method:hover {
  border-color: #0f766e;
}

.pay-method.active {
  border-color: #0f766e;
  background: #f0faf7;
  box-shadow: 0 0 0 1px #0f766e inset;
}

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

.safety-band {
  padding: 64px 0 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 20px;
}

.section-note {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

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

.trust-card {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(17, 24, 22, .05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.trust-card:hover,
.care-card:hover,
.med-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 117, 104, .22);
  box-shadow: 0 16px 34px rgba(17, 24, 22, .08);
}

.trust-card span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--mist);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.trust-card p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.verify-panel {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 28px;
  align-items: start;
  margin-top: 16px;
  padding: 24px;
  border: 1px solid rgba(17, 117, 104, .14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(17,117,104,.08), rgba(180,122,44,.07)),
    #ffffff;
  transition: transform .22s ease, border-color .22s ease;
}

.verify-panel:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 117, 104, .22);
}

.verify-panel h3 {
  font-size: 24px;
  margin-bottom: 0;
}

.verify-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.verify-panel li {
  color: var(--muted);
  line-height: 1.55;
}

.resource-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 117, 104, .12);
}

.resource-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.resource-links a:hover {
  border-color: rgba(17, 117, 104, .32);
  background: var(--mist);
}

.care-grid,
.med-grid {
  display: grid;
  gap: 16px;
}

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

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

.care-card,
.med-card,
.safety-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(17, 24, 22, .05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.care-card {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) 1fr;
  gap: 28px;
  align-items: center;
  padding: 16px;
}

.care-media {
  position: relative;
  min-height: clamp(210px, 28vw, 290px);
  aspect-ratio: 16 / 9;
  display: grid;
  align-items: end;
  padding: 18px;
  border-radius: 6px;
  overflow: hidden;
  background: #e8f2ee;
}

.care-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .96;
  transition: transform .7s ease;
}

.care-card:hover .care-media img {
  transform: scale(1.035);
}

.care-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(16, 20, 18, .14);
}

.care-icon.weight { background: var(--teal); }
.care-icon.hair { background: var(--olive); }

.care-card h3,
.care-card p,
.care-card a {
  margin-left: 2px;
}

.care-card p,
.med-card p,
.safety-band li {
  color: var(--muted);
  line-height: 1.55;
}

.care-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--teal);
  font-weight: 900;
}

.med-card {
  overflow: hidden;
}

.med-image {
  position: relative;
  min-height: clamp(150px, 20vw, 190px);
  aspect-ratio: 4 / 3;
  padding: 10px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(17,117,104,.12), rgba(180,122,44,.10)),
    #f5faf6;
}

.med-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(17, 24, 22, .12));
  transition: transform .3s ease, filter .3s ease;
}

.med-card:hover .med-image img {
  transform: translateY(-5px) scale(1.025);
  filter: drop-shadow(0 20px 22px rgba(17, 24, 22, .16));
}

.med-body {
  padding: 20px;
}

.tag {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff6e8;
  color: #8a5a13;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 11px;
}

.meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 16px 0;
}

.meta-grid div {
  background: var(--paper);
  border: 1px solid #eef2ef;
  border-radius: 8px;
  padding: 11px;
}

.meta-grid span {
  display: block;
  color: #7f8c86;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.meta-grid strong {
  display: block;
  font-size: 13px;
  line-height: 1.25;
}

.limit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.limit-row span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #f7f9f7;
  border: 1px solid var(--line);
  color: #56615b;
  font-size: 11px;
  font-weight: 900;
}

.card-actions {
  display: grid;
  grid-template-columns: .8fr .95fr 1.15fr;
  gap: 8px;
}

.order-modal { width: min(680px, 100%); }

.order-summary {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  margin: 16px 0 12px;
}

.order-summary img {
  width: 100%;
  height: 112px;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(16, 20, 18, .1));
}

.order-summary h3 { margin: 6px 0; }

.order-summary p {
  margin: 0;
  color: var(--muted);
}

.order-meta { margin-top: 0; }

.order-form {
  display: grid;
  gap: 12px;
}

.order-form label span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 6px;
}

.order-form input[type="email"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
}

.check-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.check-row input { margin-top: 2px; }

.check-row span {
  margin: 0;
  line-height: 1.45;
}

.verify-row {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.verify-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.verify-inputs {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.verify-inputs input[type="text"] {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  font-size: 18px;
  letter-spacing: 6px;
  text-align: center;
  color: var(--ink);
}

.verify-inputs input[type="text"]:disabled {
  opacity: .5;
  background: #f6f7f8;
}

.verify-status {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
}

.verify-status.ok { color: #0f766e; font-weight: 700; }
.verify-status.error { color: #b3261e; }

.safety-band {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 28px;
  align-items: start;
  padding: 28px;
  background: #111816;
  color: white;
  border-color: #111816;
}

.safety-band .eyebrow {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  color: #a9f3e7;
}

.safety-band li {
  color: rgba(255,255,255,.75);
}

.safety-band ul,
.safety-list {
  margin: 0;
  padding-left: 18px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(17, 24, 22, .48);
  animation: fadeIn .18s ease both;
}

.modal-backdrop[hidden] { display: none; }

.modal {
  position: relative;
  width: min(620px, 100%);
  max-height: 88vh;
  overflow: auto;
  padding: 26px;
  border-radius: 8px;
  background: white;
  box-shadow: 0 24px 60px rgba(17, 24, 22, .22);
  animation: modalIn .24s ease both;
}

.close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-size: 22px;
  cursor: pointer;
}

.question {
  padding: 16px;
  border-radius: 8px;
  background: var(--paper);
  margin: 14px 0;
  font-weight: 900;
}

.modal-actions {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.modal-actions button {
  min-height: 46px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 0 16px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.modal-actions button:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 117, 104, .28);
  background: var(--mist);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: white;
}

footer strong,
footer span {
  display: block;
}

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

.footer-links span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4b5852;
  font-size: 12px;
  font-weight: 900;
}

:focus-visible {
  outline: 3px solid rgba(17, 117, 104, .26);
  outline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .56s ease, transform .56s ease;
}

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

.trust-card.reveal.is-visible:hover,
.care-card.reveal.is-visible:hover,
.med-card.reveal.is-visible:hover {
  transform: translateY(-4px);
}

.verify-panel.reveal.is-visible:hover {
  transform: translateY(-2px);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softFloat {
  0%, 100% { transform: translateY(0) rotate(-.4deg); }
  50% { transform: translateY(-7px) rotate(.4deg); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .icon-button { display: inline-grid; place-items: center; }
  .topbar {
    grid-template-columns: auto 1fr auto;
    padding: 0 16px;
    gap: 10px;
  }
  .language-switcher {
    justify-self: end;
  }
  .brand span:last-child { display: none; }
  .language-switcher button {
    min-width: 34px;
    height: 28px;
    font-size: 11px;
  }
  main { padding: 20px 16px 56px; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 34px;
  }
  h1 { font-size: clamp(38px, 12vw, 58px); }
  .hero-panel {
    min-height: auto;
    padding: 12px;
  }
  .hero-products {
    min-height: auto;
    padding: 16px;
  }
  .hero-product-art {
    min-height: 132px;
  }
  .hero-product-art img {
    width: min(92%, 180px);
    height: clamp(118px, 34vw, 154px);
  }
  .hero-actions { display: grid; }
  .section-heading,
  .verify-panel,
  .safety-band,
  footer {
    display: block;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-card {
    min-height: auto;
  }
  .verify-panel {
    padding: 18px;
  }
  .care-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .care-media {
    min-height: 190px;
    aspect-ratio: 4 / 3;
  }
  .med-grid {
    grid-template-columns: 1fr;
  }
  .card-actions {
    grid-template-columns: 1fr;
  }
  .order-summary {
    grid-template-columns: 1fr;
  }
  .order-summary img {
    height: 128px;
  }
  .footer-links {
    justify-content: start;
    margin-top: 14px;
  }
}

@media (max-width: 520px) {
  .topbar {
    min-height: 62px;
  }
  .mobile-nav {
    top: 68px;
  }
  .hero-product-art {
    gap: 4px;
  }
  .med-image {
    aspect-ratio: 4 / 3;
    padding: 10px;
  }
  .med-image img {
    width: 100%;
    height: 100%;
  }
  .resource-links a,
  .footer-links span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

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