:root {
  --bg: #f8f6f2;
  --surface: #ffffff;
  --text: #1f1a17;
  --muted: #6b625c;
  --primary: #0f766e;
  --primary-ink: #ffffff;
  --line: #e9e1d8;
  --radius: 14px;
  --shadow: 0 14px 40px rgba(30, 22, 16, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbfaf8 0%, #f4efe9 100%);
  line-height: 1.55;
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  line-height: 1.2;
  margin: 0 0 0.6rem;
}

p,
ul,
ol {
  margin: 0 0 1rem;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.hero {
  padding: 3rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  align-items: stretch;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.lead {
  font-size: 1.1rem;
  color: #3f3630;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.hero-card {
  border-top: 4px solid #14b8a6;
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: #115e59;
}

.btn-secondary {
  background: transparent;
  border-color: #b7aca0;
  color: #4d443d;
}

.section {
  padding: 2rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.steps {
  padding-left: 1.2rem;
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.checklist {
  padding-left: 1.2rem;
}

.form-card form {
  display: grid;
  gap: 0.8rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
}

input,
textarea,
button {
  font: inherit;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cabfb2;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  background: #fff;
}

input:focus,
textarea:focus {
  outline: 2px solid #7dd3c7;
  outline-offset: 1px;
  border-color: #0d9488;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.6rem;
  font-weight: 500;
}

.small {
  color: var(--muted);
  font-size: 0.9rem;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  margin-bottom: 0.6rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.sticky-mobile-cta {
  display: none;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.thank-you-wrap {
  max-width: 640px;
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-3,
  .split {
    grid-template-columns: 1fr;
  }

  .sticky-mobile-cta {
    position: fixed;
    bottom: 0.8rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: 0 0.8rem;
    z-index: 50;
  }

  body {
    padding-bottom: 4.5rem;
  }
}
