* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(165deg, #98c9a3 0%, #f6f3f0 42%, #fefdfb 100%);
  color: #2c1810;
  line-height: 1.5;
}
.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 20px 64px;
}
.site-header { text-align: center; margin-bottom: 40px; }
.brand-logo { width: min(220px, 60vw); height: auto; margin-bottom: 16px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  color: #647d5e;
  margin: 0 0 10px;
}
h1 { font-size: clamp(28px, 5vw, 40px); margin: 0 0 12px; }
.lead { max-width: 640px; margin: 0 auto; color: #6c757d; font-size: 18px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid #e8e2dc;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(44, 62, 80, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 520px;
}
.price-card.featured {
  border-color: #d4a574;
  background: #fffbf5;
}
.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #d4a574;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
}
.card-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 700;
  color: #d4a574;
  margin: 0 0 8px;
}
.price-card h2 { margin: 0 0 10px; font-size: 24px; }
.card-desc { color: #6c757d; margin: 0 0 18px; }
.price-line { display: flex; align-items: baseline; gap: 6px; margin-bottom: 10px; }
.price { font-size: 42px; font-weight: 800; line-height: 1; }
.period { color: #6c757d; font-size: 16px; }
.features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  flex: 1;
}
.features li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
}
.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #647d5e;
  font-weight: 700;
}
.trial-note, .footnote {
  font-size: 13px;
  color: #6c757d;
  margin: 0 0 16px;
}
.footnote { text-align: center; margin-top: 10px; margin-bottom: 0; }
.event-price { margin-bottom: 12px; }
.event-label { display: block; font-size: 13px; font-weight: 600; color: #6c757d; }
.event-amount { display: block; font-size: 28px; font-weight: 800; margin-top: 2px; }
.event-unit { display: block; font-size: 13px; color: #6c757d; }
.btn {
  display: block;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 700;
  margin-top: auto;
}
.btn-primary { background: #d4a574; color: #fff; }
.btn-outline {
  background: transparent;
  color: #d4a574;
  border: 1.5px solid #d4a574;
}
.explainer, .faq {
  margin-top: 40px;
  background: #fff;
  border: 1px solid #e8e2dc;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.06);
}
.explainer h2, .faq h2 { margin-top: 0; }
.explainer ul { padding-left: 20px; color: #6c757d; }
.faq details { margin-bottom: 14px; }
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { color: #6c757d; margin: 8px 0 0; }
@media (max-width: 640px) {
  .price-card { min-height: 0; }
}
