:root {
  --ink: #22302e;
  --muted: #64706c;
  --teal: #0e6a5e;
  --teal-dark: #0a4a41;
  --coral: #e8563f;
  --coral-dark: #cf4029;
  --bg: #faf6ef;
  --bg-soft: #f1ebe0;
  --card: #ffffff;
  --border: #e7dece;
  --radius: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3, .logo {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

a { color: var(--teal); }

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

/* Header */
header.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.logo {
  font-size: 1.3rem;
  color: var(--teal-dark);
  text-decoration: none;
}
.logo em {
  font-style: italic;
  color: var(--coral);
}
nav.main-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
nav.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
nav.main-nav a:hover { color: var(--coral); }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 6px 18px rgba(232, 86, 63, 0.35);
}
.btn-primary:hover { background: var(--coral-dark); }
.btn-outline {
  background: transparent;
  color: var(--teal-dark);
  border: 2px solid var(--teal);
}
.btn-outline:hover { background: rgba(14, 106, 94, 0.08); }

/* Partner banner — same glassy component as the sister site (keep look consistent) */
.partner-banner {
  position: relative;
  overflow: hidden;
  margin: 20px auto;
  max-width: 1040px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background:
    radial-gradient(120% 200% at 12% 15%, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0) 45%),
    radial-gradient(110% 180% at 88% 90%, rgba(111,190,245,0.4) 0%, rgba(111,190,245,0) 55%),
    linear-gradient(120deg, #e9ecff 0%, #ccd4f8 45%, #dde5ff 100%);
  box-shadow: 0 12px 32px rgba(93, 108, 208, 0.2);
}
.partner-banner::before,
.partner-banner::after {
  content: "";
  position: absolute;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.22);
  pointer-events: none;
}
.partner-banner::before {
  width: 220px; height: 140px;
  left: -60px; top: -50px;
  transform: rotate(-14deg);
}
.partner-banner::after {
  width: 260px; height: 150px;
  right: -70px; bottom: -60px;
  transform: rotate(12deg);
}
.partner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 30px;
  flex-wrap: wrap;
}
.partner-media {
  flex-shrink: 0;
  width: 78px;
  height: 78px;
  filter: drop-shadow(0 8px 20px rgba(79, 182, 255, 0.55));
}
.partner-media img { width: 100%; height: 100%; display: block; }
.partner-copy { flex: 1; min-width: 240px; }
.partner-copy strong {
  display: block;
  font-size: 1.18rem;
  font-weight: 800;
  color: #14213c;
  letter-spacing: -0.01em;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.partner-copy span {
  display: block;
  margin-top: 2px;
  font-size: 0.98rem;
  color: #3d4b6e;
}
.partner-copy small {
  display: block;
  margin-top: 7px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #6d7aa0;
  text-transform: uppercase;
}
.partner-btn {
  background: #ff6b35;
  color: #fff;
  padding: 14px 28px;
  font-size: 1rem;
  white-space: nowrap;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(255, 107, 53, 0.4);
}
.partner-btn:hover { background: #e8551c; }
@media (max-width: 600px) {
  .partner-inner { padding: 18px 20px; gap: 16px; }
  .partner-media { width: 58px; height: 58px; }
  .partner-copy strong { font-size: 1.02rem; }
  .partner-btn { width: 100%; text-align: center; }
}

/* Hero — two-column, left-aligned, personal */
.hero {
  padding: 56px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: rgba(14, 106, 94, 0.1);
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--teal-dark);
}
.hero p.lead {
  font-size: 1.12rem;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cta-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 14px;
}
.hero-photo img {
  width: 100%;
  max-width: 380px;
  display: block;
  margin: 0 auto;
  border-radius: 46% 54% 52% 48% / 44% 46% 54% 56%;
  border: 6px solid #fff;
  box-shadow: 0 18px 40px rgba(10, 74, 65, 0.22);
}
@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 2rem; }
  .hero-photo img { max-width: 280px; }
}

/* Sections */
section { padding: 56px 0; }
section.soft { background: var(--bg-soft); }
h2 {
  color: var(--teal-dark);
  font-size: 1.8rem;
  margin: 0 0 30px;
}
.section-intro {
  color: var(--muted);
  max-width: 560px;
  margin: -18px 0 32px;
}

/* Numbered steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step .num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.step h3 { margin: 0 0 8px; color: var(--teal-dark); font-size: 1.15rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Checklist */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  max-width: 760px;
}
.checklist li {
  list-style: none;
  padding-left: 34px;
  position: relative;
  font-size: 1rem;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(232, 86, 63, 0.14);
  color: var(--coral);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
ul.checklist { padding: 0; margin: 0; }

/* Showcase */
.showcase img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(10, 74, 65, 0.18);
}
.showcase figcaption {
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--muted);
  text-align: center;
}
.showcase { margin: 0; }

/* Quotes */
.quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.quote {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.quote::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--coral);
  position: absolute;
  top: 12px;
  left: 20px;
  opacity: 0.35;
}
.quote blockquote {
  margin: 18px 0 16px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.02rem;
}
.quote .who {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan.featured {
  border: 2px solid var(--coral);
  box-shadow: 0 12px 30px rgba(232, 86, 63, 0.15);
}
.plan .badge {
  position: absolute;
  top: -13px;
  left: 24px;
  background: var(--coral);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}
.plan h3 { margin: 0 0 6px; color: var(--teal-dark); }
.plan .price {
  font-family: Georgia, serif;
  font-size: 1.7rem;
  color: var(--coral);
  margin: 0 0 14px;
}
.plan .price small { font-size: 0.85rem; color: var(--muted); font-family: inherit; }
.plan p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* Cards (generic) */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.card h3 { margin-top: 0; color: var(--teal-dark); }
.card p { color: var(--muted); font-size: 0.95rem; }

@media (max-width: 800px) {
  .steps, .quotes, .pricing, .grid-3 { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
}

/* CTA band */
.cta-band {
  background: var(--teal-dark);
  color: #f3ede1;
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { opacity: 0.85; margin: 0 0 26px; }

/* Page header (inner pages) */
.page-header {
  padding: 48px 0 36px;
  background: var(--bg-soft);
}
.page-header h1 { margin: 0 0 10px; color: var(--teal-dark); font-size: 2.1rem; }
.page-header p { color: var(--muted); max-width: 560px; margin: 0; }

/* Form */
form.lead-form {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
form.lead-form label { font-weight: 600; font-size: 0.9rem; }
form.lead-form input, form.lead-form select, form.lead-form textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  width: 100%;
}
form.lead-form input:focus, form.lead-form select:focus, form.lead-form textarea:focus {
  outline: 2px solid var(--teal);
  border-color: var(--teal);
}
form.lead-form .consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}
form.lead-form .consent input { width: auto; margin-top: 3px; }

/* FAQ */
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 14px;
}
.faq-item h3 { margin: 0 0 8px; color: var(--teal-dark); font-size: 1.05rem; }
.faq-item p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Thank-you */
.thanks { text-align: center; padding: 64px 0; }
.thanks-icon svg { width: 72px; height: 72px; margin-bottom: 20px; }
.thanks h1 { color: var(--teal-dark); font-size: 2rem; margin: 0 0 12px; }
.thanks p.lead { color: var(--muted); font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; }
.thanks-next {
  max-width: 520px;
  margin: 0 auto 36px;
  text-align: left;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.thanks-next h2 { font-size: 1.15rem; margin: 0 0 14px; }
.thanks-next ol { margin: 0 0 14px; padding-left: 22px; }
.thanks-next li { margin-bottom: 8px; }
.thanks-tip { margin: 0; font-size: 0.9rem; color: var(--muted); }
.thanks-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Legal pages */
.legal-content { max-width: 760px; }
.legal-content h2 { font-size: 1.25rem; margin-top: 32px; }
.legal-content p, .legal-content li { color: var(--muted); }

/* Footer */
footer.site-footer {
  background: var(--teal-dark);
  color: #cfe0db;
  padding: 42px 0 24px;
  font-size: 0.85rem;
}
footer.site-footer a { color: #fff; }
.footer-cols {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-cols div { min-width: 200px; }
.footer-cols h4 {
  color: #fff;
  font-size: 0.85rem;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-cols ul { list-style: none; padding: 0; margin: 0; }
.footer-cols li { margin-bottom: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 16px;
  text-align: center;
  opacity: 0.75;
}
