*, *::before, *::after { box-sizing: border-box; }

:root {
  --r-green: #2f9875;
  --r-dark: #1f5b45;
  --r-mint: #f0faf4;
  --r-line: #e4e8e6;
  --r-ink: #222326;
  --r-soft: #63686c;
  --r-shadow: 0 10px 30px rgba(32, 34, 37, 0.08);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #fff;
  color: var(--r-ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

.reserve-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 12px 16px;
  background: var(--r-dark);
  color: #c9f2d9;
  font-weight: 800;
  text-align: center;
}

.reserve-bar strong {
  color: #fff;
}

.result-page {
  width: min(100%, 480px);
  margin: 0 auto;
  padding: 28px 22px 60px;
}

section {
  margin: 0 0 34px;
}

h1, h2, h3 {
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 { font-size: clamp(30px, 7vw, 40px); }
h2 { font-size: clamp(25px, 6vw, 32px); }
h3 { font-size: 20px; }

p {
  margin: 0 0 13px;
  color: var(--r-soft);
  font-size: 16px;
  line-height: 1.48;
}

em, .green, a {
  color: var(--r-green);
}

a { font-weight: 800; }

.wordmark {
  height: 24px;
  margin-bottom: 26px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.chips span,
.timer-pill,
.ready {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 12px;
  background: #edf8f2;
  color: var(--r-dark);
  font-size: 12px;
  font-weight: 800;
}

.chart-card,
.recommend-card,
.included-card,
.timeline-card,
.pricing-card,
.med-card,
.trust-section,
.stats,
.testimonials article,
.final-card,
.faq {
  border: 1px solid var(--r-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--r-shadow);
}

.chart-card {
  padding: 20px;
}

.chart-head,
.axis,
.med-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.chart-head {
  align-items: flex-start;
  font-weight: 800;
}

.chart-head span:last-child {
  text-align: right;
  color: #fff;
  background: var(--r-green);
  border-radius: 999px;
  padding: 8px 12px;
}

.chart-head small {
  font-weight: 600;
}

.chart-card svg {
  width: 100%;
  height: auto;
}

.axis {
  color: #8b9295;
  font-size: 12px;
  font-weight: 700;
}

.recommend-card {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 16px;
  padding: 20px;
  align-items: center;
}

.recommend-card img,
.plan-block img,
.med-card img,
.final-card img {
  display: block;
  width: 100%;
  height: auto;
}

.note {
  font-size: 13px;
  font-style: italic;
}

.success-band {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 12px;
  background: #e8f9ef;
  color: var(--r-dark);
}

.success-band strong {
  font-size: 28px;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list p {
  position: relative;
  min-height: 50px;
  margin: 0;
  padding: 15px 15px 15px 58px;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--r-shadow);
  color: var(--r-ink);
}

.check-list p::before {
  content: "✓";
  position: absolute;
  left: 17px;
  top: 13px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #dcf8e8;
  color: var(--r-green);
  font-weight: 900;
}

.plan-block {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 16px;
  align-items: center;
}

.included-card,
.timeline-card,
.pricing-card,
.med-card,
.trust-section,
.stats,
.final-card,
.faq {
  padding: 24px;
}

.included-card h2,
.included-card .center,
.pricing-card,
.trust-section,
.stats,
.final-card,
.faq h2 {
  text-align: center;
}

.included-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: center;
  margin: 18px 0;
}

.included-row img {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  object-fit: cover;
  background: #f1f4f2;
}

.timeline h2 {
  margin-left: 2px;
}

.timeline-card {
  position: relative;
  overflow: hidden;
}

.timeline-card::before {
  content: "";
  position: absolute;
  top: 36px;
  bottom: 36px;
  left: 34px;
  width: 4px;
  background: #9ccfc0;
}

.timeline-card article {
  position: relative;
  padding: 0 0 24px 50px;
}

.timeline-card article:last-child {
  padding-bottom: 0;
}

.timeline-card article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border: 4px solid #9ccfc0;
  border-radius: 50%;
  background: #fff;
}

.timeline-card b {
  color: var(--r-green);
  font-size: 12px;
}

.timer-pill {
  background: var(--r-dark);
  color: #fff;
  margin-bottom: 16px;
}

.meds {
  display: grid;
  gap: 24px;
}

.med-card {
  display: grid;
  gap: 14px;
}

.tag {
  color: var(--r-green);
  font-weight: 800;
}

.tag.muted {
  color: #777;
}

.rating {
  color: #e4c64b;
  font-weight: 900;
}

.rating small {
  color: var(--r-soft);
  font-weight: 500;
}

.price {
  text-align: center;
  color: var(--r-ink);
  font-size: 20px;
}

.price strong {
  color: var(--r-green);
  font-size: 25px;
}

ul {
  margin: 0;
  padding-left: 20px;
  color: var(--r-soft);
  line-height: 1.5;
}

li + li {
  margin-top: 8px;
}

.dark-btn,
.choose-btn {
  width: 100%;
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #24211f;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.trust-section h3 {
  font-size: 24px;
}

.guarantee {
  display: grid;
  gap: 6px;
  margin: 24px 0;
  text-align: left;
}

.research {
  padding: 18px;
  border: 1px solid #d7d7d2;
  color: #9a9a95;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.8;
}

.research span {
  display: inline-block;
  margin: 4px 8px;
  font-size: 15px;
}

.stat-grid,
.testimonial-grid {
  display: grid;
  gap: 12px;
}

.stat-grid div {
  padding: 18px;
  border-radius: 10px;
  background: #edf8f2;
}

.stat-grid strong {
  display: block;
  color: var(--r-green);
  font-size: 30px;
}

.stat-grid span {
  color: var(--r-soft);
}

.testimonials {
  display: grid;
  gap: 12px;
}

.testimonials article {
  padding: 20px;
  background: #f7faf4;
}

.testimonials article div {
  color: #e4c64b;
}

.testimonials b {
  color: var(--r-green);
  font-size: 13px;
}

.ready {
  background: var(--r-dark);
  color: #fff;
}

.price-banner {
  margin: 18px 0;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--r-dark);
  color: #fff;
  font-weight: 800;
}

.choose-btn {
  margin-top: 18px;
  background: #bbb;
  color: #fff;
  letter-spacing: 0;
}

.faq {
  background: #f2f8ef;
  box-shadow: none;
}

details {
  border-top: 1px solid #dce8d8;
  padding: 16px 0;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

.legal {
  margin: 36px 0 0;
  color: #8b9295;
  text-align: center;
}

.legal p {
  font-size: 11px;
  line-height: 1.65;
}

@media (max-width: 420px) {
  .result-page { padding-left: 18px; padding-right: 18px; }
  .recommend-card,
  .plan-block { grid-template-columns: 1fr; }
  .recommend-card img,
  .plan-block img { max-width: 220px; margin: 0 auto; }
}
