:root {
  --ink: #1f2a2e;
  --accent: #0f6b5b;
  --accent-dark: #0b4c40;
  --cream: #f6f1e9;
  --rose: #f3d9c6;
  --shadow: 0 18px 40px rgba(14, 24, 29, 0.18);
}

body {
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 420px at 10% -10%, rgba(243, 217, 198, 0.6), transparent 60%),
    radial-gradient(900px 520px at 95% 5%, rgba(15, 107, 91, 0.15), transparent 60%),
    var(--cream);
}

h1, h2, h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: 0.4px;
}

.hero {
  padding: 3.5rem 0 2.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
}

.hero-title {
  font-size: clamp(2.4rem, 3vw + 1.6rem, 4rem);
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-card {
  background: white;
  border-radius: 22px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  border-radius: 18px;
}

.cta-wrap .btn {
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  font-weight: 700;
}

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

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.trust-list li::before {
  content: ">";
  color: var(--accent);
  font-weight: 700;
  margin-right: 0.5rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pricing {
  padding: 2.5rem 0 1.5rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.price-card {
  background: white;
  border-radius: 18px;
  padding: 1.25rem;
  border: 1px solid rgba(31, 42, 46, 0.08);
  box-shadow: 0 12px 30px rgba(14, 24, 29, 0.08);
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.price-card p {
  margin-bottom: 0.4rem;
}

.buy-section {
  padding: 2.5rem 0 3rem;
}

.buy-card,
.content-card {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.content-section {
  padding: 2.5rem 0 3rem;
}

.bio-image {
  float: left;
  width: 220px;
  max-width: 40%;
  margin: 0 1rem 0.75rem 0;
  border-radius: 12px;
}

.form-control {
  border-radius: 12px;
}

.fade-up {
  animation: fadeUp 0.8s ease both;
}

.fade-up.delay-1 { animation-delay: 0.1s; }
.fade-up.delay-2 { animation-delay: 0.2s; }
.fade-up.delay-3 { animation-delay: 0.3s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .bio-image {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up { animation: none; }
}
