:root {
  --plum: #3D1F3B;
  --plum-dark: #2A1428;
  --cream: #F4ECE2;
  --gold: #C9A961;
  --white: #FFFFFF;
  --ink: #2A1F28;
  --muted: #7A6B72;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Calibri, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: Cambria, Georgia, "Times New Roman", serif;
  color: var(--plum);
  margin: 0 0 0.5em;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Hero ---- */
.hero {
  background: var(--plum);
  color: var(--white);
  padding: 90px 0 80px;
  text-align: center;
}

.hero .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--plum);
  font-weight: bold;
  font-family: Cambria, Georgia, serif;
  font-size: 20px;
  margin-bottom: 28px;
}

.hero h1 {
  color: var(--white);
  font-size: 46px;
  max-width: 780px;
  margin: 0 auto 20px;
}

.hero p.subtitle {
  color: var(--gold);
  font-style: italic;
  font-size: 19px;
  max-width: 640px;
  margin: 0 auto 36px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--gold);
  color: var(--plum);
}

.btn-primary:hover {
  background: #d9bb7c;
}

/* ---- Sections ---- */
.section {
  padding: 70px 0;
}

.section h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(61, 31, 59, 0.08);
}

.card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

/* ---- Pricing ---- */
.pricing-box {
  background: var(--white);
  max-width: 460px;
  margin: 0 auto;
  border-radius: 14px;
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(61, 31, 59, 0.12);
}

.pricing-box .price {
  font-family: Cambria, Georgia, serif;
  font-size: 56px;
  color: var(--plum);
  font-weight: bold;
  margin: 10px 0 6px;
}

.pricing-box .price-note {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.pricing-box input[type=email] {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #ddd0c4;
  border-radius: 6px;
  font-size: 15px;
  margin-bottom: 14px;
  font-family: inherit;
}

.pricing-box .btn {
  width: 100%;
}

.pricing-box ul {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 14.5px;
}

.pricing-box ul li {
  padding: 7px 0;
  border-top: 1px solid #eee2d5;
}

/* ---- Result pages (success/cancel/error) ---- */
.result-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.result-page .box {
  max-width: 520px;
}

.result-page h1 {
  font-size: 34px;
}

.result-page p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 28px;
}

footer {
  text-align: center;
  padding: 40px 24px;
  color: var(--muted);
  font-size: 13px;
}
