/* ==== Base Reset ==== */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f5fb;
  color: #2b2438;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

/* ==== Layout Helpers ==== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

section {
  padding: 80px 0;
  scroll-margin-top: 80px; /* for anchor offset below header */
}

h1, h2, h3 {
  margin: 0 0 16px;
  font-weight: 600;
  color: #211832;
}

p {
  margin: 0 0 12px;
}

/* ==== Colors & Buttons ==== */
:root {
  --primary: #7e5bef;     /* soft spiritual lavender */
  --primary-soft: #ede7ff;
  --accent: #f9b24c;      /* warm supportive accent */
  --text-main: #2b2438;
  --text-muted: #6d647f;
  --bg-card: #ffffff;
  --border-soft: #e2d9f5;
}

.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 25px rgba(126, 91, 239, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(126, 91, 239, 0.4);
}

.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary-soft);
}

.btn-secondary:hover {
  background: var(--primary-soft);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title p {
  color: var(--text-muted);
  max-width: 580px;
  margin: 8px auto 0;
  font-size: 15px;
}

/* ==== Header ==== */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(247, 245, 251, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(226, 217, 245, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 18px;
  color: var(--primary);
}

.logo span {
  color: #211832;
  font-weight: 500;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

nav a {
  color: var(--text-main);
  position: relative;
  padding-bottom: 4px;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transition: width 0.2s ease;
}

nav a:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: 6px;
}

/* ==== Hero ==== */
#home {
  padding-top: 100px;
  padding-bottom: 80px;
  background: radial-gradient(circle at top left, #ede7ff 0, #f7f5fb 45%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 16px;
}

.hero-practitioner {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-practitioner span {
  color: var(--primary);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-note span {
  font-size: 18px;
}

.hero-card {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 40px rgba(19, 9, 43, 0.08);
  border: 1px solid var(--border-soft);
}

.hero-card-title {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 15px;
}

.hero-card-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.hero-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 6px;
}

.hero-card-list li::before {
  content: "•";
  color: var(--primary);
  font-size: 16px;
  line-height: 1;
  margin-top: 1px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-soft);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  color: var(--primary);
  margin-bottom: 10px;
}

/* ==== About ==== */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
}

/* ==== Services ==== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 20px 18px 18px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 24px rgba(19, 9, 43, 0.04);
}

.card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.card span.tag {
  display: inline-block;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: var(--text-muted);
}

.card-footer {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.card-footer-btn {
  font-size: 13px;
  color: var(--primary);
  cursor: pointer;
}

/* ==== Process ==== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.step-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px 14px 14px;
  border: 1px solid var(--border-soft);
  font-size: 13px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-card h3 {
  font-size: 14px;
  margin-bottom: 4px;
}

.muted {
  color: var(--text-muted);
  font-size: 13px;
}

/* ==== Benefits ==== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin-top: 16px;
  max-width: 700px;
}

.benefit-item {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--text-main);
}

.benefit-item span.icon {
  font-size: 18px;
  margin-top: 1px;
}

/* ==== Practitioner ==== */
.practitioner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: center;
}

.avatar-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-soft), #ffffff);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--primary);
  margin: 0 auto;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.badge {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
}

/* ==== Pricing ==== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.price-card {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 20px 18px 18px;
  border: 1px solid var(--border-soft);
  text-align: left;
}

.price-card h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.price-amount {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin: 10px 0;
}

.price-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* ==== FAQ ==== */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: #fff;
  margin-bottom: 10px;
  overflow: visible;
  height: auto;
}

.faq-question {
  padding: 12px 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  height: auto;
}

.faq-question span.label {
  font-weight: 500;
}

.faq-toggle {
  font-size: 18px;
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 14px;
  transition: max-height 0.4s ease;
  font-size: 13px;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  max-height: 2000px;
  padding-bottom: 12px;
}

/* ==== Contact ==== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: start;
}

form {
  background: #fff;
  border-radius: 18px;
  padding: 20px 18px 18px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 24px rgba(19, 9, 43, 0.04);
}

.form-row {
  margin-bottom: 12px;
}

label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
  color: var(--text-main);
}

input, select, textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d8d1e8;
  padding: 9px 10px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fbfaff;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(126, 91, 239, 0.15);
  background: #fff;
}

textarea {
  min-height: 80px;
  resize: vertical;
}

.contact-info-block {
  font-size: 14px;
  color: var(--text-muted);
}

.contact-info-block p {
  margin-bottom: 8px;
}

.contact-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  background: var(--primary-soft);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--primary);
  margin-bottom: 10px;
}

.contact-channels {
  margin-top: 12px;
  font-size: 14px;
}

.contact-channels a {
  color: var(--primary);
  font-weight: 500;
}

.small-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ==== Footer ==== */
footer {
  padding: 24px 0 16px;
  border-top: 1px solid rgba(226, 217, 245, 0.8);
  font-size: 12px;
  color: var(--text-muted);
  background: #f4f1fb;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==== Responsive ==== */
@media (max-width: 960px) {
  .hero-inner,
  .about-grid,
  .card-grid,
  .process-grid,
  .benefits-grid,
  .practitioner-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  header {
    position: sticky;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 8px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
  }

  #home {
    padding-top: 90px;
  }

  section {
    padding: 64px 0;
  }

  .hero-title {
    font-size: 26px;
  }

  .process-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .benefits-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .card-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact-info-block {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.contact-channels p {
    margin: 8px 0;
}
#contact {
    text-align: center;
}

#contact .section-title p {
    margin: 0 auto;
}

.contact-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info-block {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-channels p {
    justify-content: center;
}

.contact-highlight {
    justify-content: center;
}
