* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', sans-serif;
  background: #fdfaf0;
  color: #1d2b25;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.top-banner {
  background: #d83a2a;
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  font-weight: 700;
  font-size: .98rem;
}
.wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: 30px 24px 60px;
  text-align: center;
}
.avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 10px auto 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
  display: block;
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4.5vw, 2.4rem);
  color: #1d2b25;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 22px;
}
h1 em { font-style: italic; font-weight: 700; color: #1d2b25; }
.lead {
  color: #4a5550;
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}
.lead strong { color: #d07a28; font-weight: 700; }
.box {
  background: #dfe7d4;
  border: 1px solid #c9d3bc;
  border-radius: 14px;
  padding: 28px 26px;
  margin-bottom: 30px;
}
.box-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #1d2b25;
  margin-bottom: 18px;
}
.box ul { list-style: none; text-align: left; max-width: 380px; margin: 0 auto; }
.box ul li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 9px 0;
  color: #1d2b25; font-weight: 700; font-size: .98rem;
}
.box ul li::before {
  content: '✓';
  color: #4a9b3a; font-weight: 900; font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-row {
  display: flex; align-items: baseline; justify-content: center; gap: 14px;
  margin-bottom: 24px;
}
.price-old {
  color: #8a8a8a;
  text-decoration: line-through;
  font-size: 1.2rem;
  font-weight: 500;
}
.price-new {
  color: #d07a28;
  font-size: 2.6rem;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
}
.btn-cta {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: linear-gradient(180deg, #e89a4a, #d07a28);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 22px 30px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(208,122,40,.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  line-height: 1.3;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(208,122,40,.55);
}
.small {
  margin-top: 20px;
  color: #8a8170;
  font-size: .88rem;
}
