:root {
  --ink: #17211b;
  --muted: #5e6c63;
  --cream: #fbf7ee;
  --paper: #fffdf8;
  --green: #1f5a3b;
  --green-dark: #153f2a;
  --gold: #e9a23b;
  --line: #dfe4dc;
  --danger: #a5342a;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-synthesis: none;
}

* { box-sizing: border-box; }
body { margin: 0; min-width: 320px; }
button, input, textarea { font: inherit; }
a { color: inherit; }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: auto;
  padding: 20px 22px;
}

.brand { font-weight: 850; letter-spacing: -.035em; font-size: 1.12rem; }
.brand span { color: var(--green); }
.campaign-link { color: var(--muted); font-size: .9rem; font-weight: 650; }

.hero {
  max-width: 1120px;
  margin: auto;
  padding: 38px 22px 64px;
  display: grid;
  gap: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
}
.eyebrow::before { content: ""; width: 24px; height: 3px; border-radius: 3px; background: var(--gold); }

h1 {
  max-width: 720px;
  margin: 14px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 11vw, 6.8rem);
  line-height: .91;
  letter-spacing: -.065em;
  font-weight: 700;
}

.lede { max-width: 610px; font-size: clamp(1.05rem, 2.2vw, 1.28rem); line-height: 1.6; color: var(--muted); }
.price-row { display: flex; align-items: center; gap: 15px; margin-top: 26px; flex-wrap: wrap; }
.price { font-size: 1.75rem; font-weight: 850; letter-spacing: -.04em; }
.price-note { color: var(--muted); font-size: .9rem; }

.primary-button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-weight: 800;
  padding: 16px 24px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgb(31 90 59 / 20%);
  transition: transform .15s, background .15s;
}
.primary-button:hover { background: var(--green-dark); transform: translateY(-1px); }
.primary-button:disabled { opacity: .62; cursor: wait; transform: none; }

.deliverables {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.deliverables li { display: flex; gap: 9px; align-items: center; font-size: .94rem; font-weight: 700; }
.deliverables li::before { content: "✓"; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: #e0ede4; color: var(--green); }

.form-card {
  background: var(--paper);
  border: 1px solid rgb(23 33 27 / 9%);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 30px 75px rgb(42 55 45 / 10%);
}
.form-card h2 { margin: 0 0 6px; font-size: 1.45rem; letter-spacing: -.035em; }
.form-card > p { margin: 0 0 24px; color: var(--muted); line-height: 1.5; font-size: .92rem; }
.form-grid { display: grid; gap: 17px; }
.field { display: grid; gap: 7px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { font-size: .82rem; font-weight: 800; }
.optional { font-weight: 500; color: var(--muted); }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
input:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgb(31 90 59 / 10%); }
textarea { resize: vertical; min-height: 82px; }
.form-card .primary-button { width: 100%; margin-top: 4px; }
.fine-print { text-align: center; color: var(--muted); font-size: .75rem; line-height: 1.45; }
.form-error, .cancel-notice { border-radius: 10px; padding: 11px 13px; font-size: .86rem; }
.form-error { background: #fbe7e4; color: var(--danger); }
.cancel-notice { max-width: 1120px; margin: 0 auto; background: #fff1d9; color: #714910; }
[hidden] { display: none !important; }

.preview-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 22px 78px;
  display: grid;
  gap: 30px;
  align-items: center;
}
.preview-intro h2 { margin: 14px 0 14px; font-family: Georgia, serif; font-size: clamp(2.1rem, 5vw, 3.8rem); line-height: 1; letter-spacing: -.045em; }
.preview-intro p { color: var(--muted); line-height: 1.65; max-width: 520px; }
.plan-preview { background: #17211b; color: white; border-radius: 22px; padding: 24px; box-shadow: 0 28px 65px rgb(23 33 27 / 18%); }
.plan-preview header { display: flex; justify-content: space-between; align-items: start; gap: 16px; border-bottom: 1px solid rgb(255 255 255 / 14%); padding-bottom: 17px; }
.plan-preview header span { color: #aebcb2; font-size: .7rem; text-transform: uppercase; letter-spacing: .13em; font-weight: 800; }
.plan-preview h3 { margin: 4px 0 0; font-family: Georgia, serif; font-size: 1.7rem; }
.plan-badge { flex: 0 0 auto; padding: 8px 10px; border-radius: 999px; background: var(--gold); color: #35240b; font-weight: 800; font-size: .72rem; }
.preview-grid { display: grid; gap: 18px; padding: 20px 0 4px; }
.plan-preview h4 { margin: 0 0 10px; color: #edb961; font-size: .75rem; letter-spacing: .11em; text-transform: uppercase; }
.plan-preview ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 7px; color: #e6ece7; font-size: .85rem; }
.timeline-preview { margin-top: 20px; padding-top: 19px; border-top: 1px solid rgb(255 255 255 / 14%); }
.timeline-preview div { display: grid; grid-template-columns: 54px 1fr; gap: 10px; padding: 6px 0; color: #e6ece7; font-size: .84rem; }
.timeline-preview time { color: #91aa98; font-weight: 800; }
.plan-preview footer { padding: 17px 0 0; margin-top: 14px; border-top: 1px solid rgb(255 255 255 / 14%); color: #aebcb2; text-align: left; font-size: .75rem; }

.how {
  background: var(--green-dark);
  color: white;
  padding: 62px 22px;
}
.how-inner { max-width: 1050px; margin: auto; }
.how h2 { margin: 0 0 32px; font-family: Georgia, serif; font-size: 2.2rem; letter-spacing: -.04em; }
.steps { display: grid; gap: 24px; }
.step-number { color: var(--gold); font-weight: 900; font-size: .78rem; letter-spacing: .1em; }
.step h3 { margin: 7px 0 8px; }
.step p { margin: 0; color: #c9d4cc; line-height: 1.55; font-size: .92rem; }

footer { padding: 28px 22px; text-align: center; color: var(--muted); font-size: .78rem; }

.success-shell { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.success-card { width: min(100%, 600px); background: var(--paper); border-radius: 24px; padding: 34px; box-shadow: 0 30px 75px rgb(42 55 45 / 12%); text-align: center; }
.success-icon { margin: auto; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #e0ede4; color: var(--green); font-weight: 900; font-size: 1.6rem; }
.success-card h1 { margin: 22px 0 13px; font-family: Georgia, serif; font-size: clamp(2.2rem, 9vw, 3.8rem); line-height: 1; }
.success-card p { color: var(--muted); line-height: 1.6; }
.order-reference { margin-top: 22px; padding: 14px; border-radius: 12px; background: #f2f2ec; font: 600 .78rem ui-monospace, monospace; overflow-wrap: anywhere; }

@media (min-width: 820px) {
  .hero { grid-template-columns: 1.18fr .82fr; align-items: center; padding-top: 60px; padding-bottom: 90px; }
  .form-card { padding: 31px; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 55px; }
  .preview-section { grid-template-columns: .8fr 1.2fr; gap: 70px; padding-top: 30px; padding-bottom: 100px; }
  .preview-grid { grid-template-columns: 1fr 1.15fr; }
}
