:root {
  --ink: #17313b;
  --muted: #5d727a;
  --blue: #0d6380;
  --blue-dark: #084c63;
  --blue-soft: #e7f4f8;
  --aqua: #8dc8d5;
  --cream: #fbfaf6;
  --sand: #efe9dc;
  --white: #fff;
  --danger-soft: #fff3ef;
  --danger: #9e4937;
  --shadow: 0 24px 70px rgba(20, 58, 71, .13);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

.topbar {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; }
.brand img { width: 68px; height: 68px; object-fit: contain; }
.brand span { display: grid; }
.brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.16rem; font-weight: 600; }
.brand small { color: var(--muted); letter-spacing: .08em; text-transform: uppercase; font-size: .72rem; }
.private-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid #d8e3e6;
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--blue-dark);
  font-size: .82rem;
  font-weight: 700;
}
.private-badge span { color: #4d9b73; font-size: .65rem; }

main { overflow: hidden; }
.hero {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 24px auto 0;
  min-height: 650px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 5% 95%, rgba(255,255,255,.65), transparent 24%),
    linear-gradient(135deg, #d9eef3 0%, #edf7f8 48%, #d4e9ed 100%);
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding: clamp(34px, 6vw, 76px);
}
.hero::after {
  content: "";
  position: absolute;
  left: -55px;
  bottom: -70px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(13, 99, 128, .15);
  border-radius: 48% 52% 42% 58%;
  transform: rotate(22deg);
}
.hero-copy { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .73rem;
  font-weight: 800;
}
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.08; }
h1 { font-size: clamp(2.65rem, 5vw, 4.7rem); margin: 0 0 22px; letter-spacing: -.035em; }
.hero-copy > p:not(.eyebrow) { max-width: 530px; margin: 0; color: #435f69; font-size: clamp(1.02rem, 1.6vw, 1.2rem); }
.trust-row { margin-top: 34px; display: grid; gap: 9px; font-size: .9rem; color: #345663; }
.trust-row span { display: flex; align-items: center; gap: 9px; }
.trust-row i {
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  color: var(--blue);
  font-style: normal;
  font-weight: 800;
}

.guide-shell {
  position: relative;
  z-index: 2;
  min-height: 510px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.guide-head { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.guide-head > div { flex: 1; }
.step-label { color: var(--muted); font-size: .76rem; font-weight: 750; text-transform: uppercase; letter-spacing: .1em; }
.progress { margin-top: 9px; width: 100%; max-width: 260px; height: 5px; background: #e7edef; border-radius: 10px; overflow: hidden; }
.progress span { display: block; width: 33%; height: 100%; background: var(--blue); border-radius: inherit; transition: width .35s ease; }
.text-button { background: transparent; border: 0; color: var(--blue); padding: 0; font: inherit; font-size: .83rem; font-weight: 750; cursor: pointer; }
.screen { flex: 1; }
.screen h2 { margin: 0 0 8px; font-size: clamp(1.65rem, 3vw, 2.25rem); }
.lead { margin: 0 0 25px; color: var(--muted); }
.option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.option {
  min-height: 96px;
  width: 100%;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  text-align: left;
  border: 1px solid #dbe5e8;
  border-radius: 15px;
  background: var(--white);
  padding: 15px;
  color: var(--ink);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.option:hover { transform: translateY(-2px); border-color: var(--aqua); box-shadow: 0 10px 24px rgba(28, 80, 96, .08); }
.option:focus-visible, .primary-button:focus-visible, .secondary-button:focus-visible, a:focus-visible { outline: 3px solid rgba(13,99,128,.32); outline-offset: 3px; }
.option-icon { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue); font-size: 1.25rem; }
.option strong { display: block; font-size: .94rem; }
.option small { display: block; color: var(--muted); font-size: .78rem; margin-top: 2px; }
.option.wide { grid-column: 1 / -1; min-height: 82px; }
.guide-nav { margin-top: 18px; min-height: 40px; display: flex; align-items: end; }
.secondary-button {
  border: 0;
  background: transparent;
  color: var(--blue);
  padding: 9px 0;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.result-intro { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.result-check { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: #e7f4ed; color: #2c7b57; font-weight: 900; }
.result-intro h2 { margin: 0; }
.product-card { border: 1px solid #dbe5e8; border-radius: 18px; padding: 21px; background: #fff; }
.product-card + .product-card { margin-top: 12px; }
.product-tag { display: inline-block; margin-bottom: 8px; color: var(--blue); background: var(--blue-soft); padding: 4px 9px; border-radius: 999px; font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.product-card h3 { margin: 0 0 6px; font-size: 1.08rem; line-height: 1.3; }
.product-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.product-meta { margin-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.price { color: var(--ink); font-weight: 800; white-space: nowrap; }
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 800;
  transition: background .18s ease, transform .18s ease;
}
.primary-button:hover { background: var(--blue-dark); transform: translateY(-1px); }
.missing-note, .stop-card { border-radius: 15px; padding: 16px; margin-top: 15px; font-size: .84rem; }
.missing-note { background: #f3f6f7; color: #526b74; }
.stop-card { background: var(--danger-soft); color: #76392c; border: 1px solid #f0d2ca; }
.stop-card strong { display: block; color: var(--danger); margin-bottom: 5px; }
.result-actions { margin-top: 15px; display: flex; gap: 12px; flex-wrap: wrap; }

.care-note, .source-note {
  width: min(1050px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}
.care-note {
  margin-top: 68px;
  margin-bottom: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  border: 1px solid #e2dbce;
  border-radius: 18px;
  background: #fffdfa;
  padding: 25px 28px;
}
.note-icon { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--sand); font-family: Georgia, serif; font-weight: 700; }
.care-note h2 { font-size: 1.2rem; margin: 0 0 4px; }
.care-note p { margin: 0; color: var(--muted); font-size: .88rem; }
.care-note a { color: var(--blue); font-weight: 800; text-decoration: none; white-space: nowrap; }
.source-note { border-top: 1px solid #ddd8cd; padding: 62px 0 74px; max-width: 780px; }
.source-note h2 { margin: 0 0 14px; font-size: 2rem; }
.source-note > p:last-child { margin: 0; color: var(--muted); }

footer {
  background: var(--ink);
  color: #eef6f7;
  min-height: 160px;
  padding: 38px max(24px, calc((100vw - 1050px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: .88rem;
}
footer > div:last-child { display: flex; gap: 25px; flex-wrap: wrap; }
footer a { color: #fff; text-decoration: none; font-weight: 700; }
.hidden { display: none !important; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding: 48px; }
  .hero-copy { max-width: 650px; }
  .guide-shell { min-height: 480px; }
}

@media (max-width: 620px) {
  .topbar { width: min(100% - 28px, 1180px); min-height: 84px; }
  .brand img { width: 52px; height: 52px; }
  .brand strong { font-size: .94rem; }
  .private-badge { padding: 7px 10px; font-size: .72rem; }
  .hero { width: 100%; margin: 0; border-radius: 0; min-height: 0; padding: 38px 18px 42px; gap: 34px; }
  h1 { font-size: 2.75rem; }
  .trust-row { margin-top: 25px; }
  .guide-shell { min-height: 540px; padding: 24px 18px; border-radius: 20px; }
  .guide-head { margin-bottom: 24px; }
  .option-grid { grid-template-columns: 1fr; }
  .option, .option.wide { grid-column: auto; min-height: 76px; }
  .product-meta { align-items: stretch; flex-direction: column; }
  .primary-button { width: 100%; }
  .care-note { width: calc(100% - 28px); margin-top: 42px; margin-bottom: 42px; grid-template-columns: auto 1fr; padding: 20px; }
  .care-note a { grid-column: 2; }
  .source-note { width: calc(100% - 36px); padding: 46px 0 55px; }
  footer { align-items: flex-start; flex-direction: column; }
  footer > div:last-child { flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
