/* ============================================================
   Conceiving Victory — Vanilla CSS
   Calm, warm online-therapy aesthetic.
   ============================================================ */

:root {
  --background: hsl(39 38% 96%);
  --foreground: hsl(155 25% 14%);
  --foreground-soft: hsl(155 25% 14% / 0.85);
  --card: hsl(39 45% 98%);
  --primary: hsl(155 28% 22%);
  --primary-fg: hsl(39 45% 97%);
  --secondary: hsl(90 18% 82%);
  --muted: hsl(38 25% 90%);
  --muted-fg: hsl(155 12% 38%);
  --accent: hsl(18 45% 68%);
  --accent-fg: hsl(39 45% 98%);
  --border: hsl(38 22% 86%);
  --input-bg: hsl(39 45% 98%);

  --sage: hsl(90 22% 72%);
  --sage-soft: hsl(90 25% 88%);
  --clay: hsl(18 45% 68%);
  --cream-deep: hsl(36 35% 90%);
  --forest: hsl(155 30% 18%);

  --shadow-soft: 0 4px 20px -8px hsl(155 28% 22% / 0.12);
  --shadow-elegant: 0 20px 60px -20px hsl(155 28% 22% / 0.18);

  --radius: 1rem;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Custom scrollbars */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--sage);
  border-radius: 6px;
  border: 2px solid var(--background);
  transition: background 0.2s;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Firefox scrollbar */
* {
  scrollbar-color: var(--sage) var(--background);
  scrollbar-width: thin;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; color: var(--accent); }

h1, h2, h3, h4, h5 {
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.container {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 500;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}
.btn-sm { padding: 0.5rem 1.125rem; font-size: 0.8125rem; }
.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }
.btn-primary { background: var(--primary); color: var(--primary-fg); box-shadow: var(--shadow-elegant); }
.btn-primary:hover { background: hsl(155 28% 18%); transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: var(--accent-fg); }
.btn-accent:hover { background: hsl(18 45% 62%); }
.btn-ghost:hover { background: hsl(90 18% 82% / 0.5); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* ---------- Eyebrow / utility ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 500;
}
.muted { color: var(--muted-fg); }
.muted-xs { color: var(--muted-fg); font-size: 0.75rem; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px);} to { opacity:1; transform:none;} }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: hsl(39 38% 96% / 0.7);
  border-bottom: 1px solid hsl(38 22% 86% / 0.5);
}
.nav-inner {
  display: flex; align-items: center; justify-content: center;
  height: 4rem;
}
@media (min-width: 768px) { .nav-inner { height: 5rem; } }
.brand { display: flex; align-items: center; gap: 0.5rem; }
.brand-mark {
  display: grid; place-items: center;
  width: 6rem; height: 6rem;
  border-radius: 999px;
  background: transparent; color: var(--primary-fg);
  transition: transform 0.25s var(--ease);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-mark.light { background: var(--cream-deep); }
.brand:hover .brand-mark { transform: scale(1.1); }
.brand-name { font-size: 1.125rem; }
@media (min-width: 768px) { .brand-name { font-size: 1.25rem; } }
.nav-links { display: flex; gap: 4rem; }
.nav-links a { font-size: 0.875rem; color: var(--muted-fg); transition: color 0.2s; }
.nav-links a:hover { color: var(--foreground); }

/* ---------- Section heads ---------- */
.section-head { max-width: 42rem; margin-bottom: 4rem; }
.section-title {
  margin-top: 1rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
  text-wrap: balance;
}

/* ---------- Conceiving Victory, Inc. Section ---------- */
.about {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    hsl(90 25% 88%) 0%,
    hsl(39 50% 95%) 60%,
    hsl(36 35% 90%) 100%
  );
}
@media (min-width: 768px) {
  .about { padding: 7rem 0; }
}

.about__inner {
  width: 100%;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .about__inner { padding: 0 3rem; }
}

/* Logo */
.about__logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__logo-glow {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60%;
  height: 60%;
  background: hsl(90 22% 72% / 0.4);
  border-radius: 9999px;
  filter: blur(60px);
  transform: scale(1.1);
  pointer-events: none;
}

.about__logo {
  position: relative;
  width: 18rem;
  height: auto;
  object-fit: contain;
  animation: glowPulse 4s ease-in-out infinite, fadeIn 1s ease-out both;
}
@media (min-width: 640px) { .about__logo { width: 24rem; } }
@media (min-width: 768px) { .about__logo { width: 28rem; } }
@media (min-width: 1024px) { .about__logo { width: 32rem; } }

/* Heading */
.about__head {
  margin-top: 3rem;
  text-align: center;
  animation: fadeUp 0.7s var(--ease) both;
}
@media (min-width: 768px) { .about__head { margin-top: 4rem; } }

.about__title {
  margin-top: 0.75rem;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  text-wrap: balance;
  line-height: 1.05;
}

/* Body copy */
.about__copy {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--foreground-soft);
  animation: fadeUp 0.7s var(--ease) both;
  text-align: center;
}
@media (min-width: 768px) {
  .about__copy {
    margin-top: 3rem;
    font-size: 1.125rem;
  }
}

/* Pull-quote */
.about__quote {
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  border-left: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  text-align: center;
  max-width: 600px;
}

.about__quote blockquote {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  line-height: 1.3;
  color: var(--forest);
  text-wrap: balance;
  margin: 0;
  padding: 0;
}

.about__quote figcaption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  letter-spacing: 0.04em;
}

/* Welcome line */
.about__welcome {
  margin-top: 2.5rem;
  text-align: center;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--accent);
}
@keyframes glowPulse {
  0%, 100% { filter: drop-shadow(0 0 30px hsl(45 95% 65% / 0.5)); }
  50%      { filter: drop-shadow(0 0 60px hsl(45 95% 65% / 0.85)); }
}


/* ---------- How it works ---------- */
.how-section {
  padding: 6rem 0;
  background: linear-gradient(160deg, hsl(90 25% 88%) 0%, hsl(39 50% 95%) 100%);
}
@media (min-width: 768px) { .how-section { padding: 8rem 0; } }
.steps-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.step-card {
  position: relative;
  background: hsl(39 45% 98% / 0.8);
  backdrop-filter: blur(4px);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid hsl(38 22% 86% / 0.6);
  transition: all 0.5s var(--ease);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elegant); }
.step-num {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 0.875rem; color: var(--muted-fg);
}
.step-icon {
  width: 3rem; height: 3rem;
  border-radius: 1rem;
  background: var(--primary); color: var(--primary-fg);
  display: grid; place-items: center;
  margin-bottom: 1.5rem;
}
.step-card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.step-card p { color: var(--muted-fg); line-height: 1.65; }

/* ---------- About ---------- */
.about-section {
  padding: 6rem 0;
  background: hsl(36 35% 90% / 0.4);
}
@media (min-width: 768px) { .about-section { padding: 8rem 0; } }
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 5fr 7fr; gap: 5rem; } }
.about-images { position: relative; }
.about-main-img {
  border-radius: 2rem; overflow: hidden;
  box-shadow: var(--shadow-elegant);
  aspect-ratio: 3 / 4;
}
.about-main-img img { width: 100%; height: 100%; object-fit: cover; }
.about-inset-img {
  position: absolute; bottom: -2rem; right: -1rem;
  width: 10rem; height: 10rem;
  border-radius: 1.5rem; overflow: hidden;
  box-shadow: var(--shadow-elegant);
  border: 4px solid var(--background);
}
@media (min-width: 768px) {
  .about-inset-img { width: 13rem; height: 13rem; right: -3rem; }
}
.about-inset-img img { width: 100%; height: 100%; object-fit: cover; }
.about-copy .lead {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted-fg);
  line-height: 1.7;
}
.about-copy .muted { margin-top: 1rem; line-height: 1.7; }
.stats {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.stat-num { font-size: 1.875rem; }
.stat-label { font-size: 0.7rem; color: var(--muted-fg); margin-top: 0.25rem; }

.about-video {
  margin: 3rem auto 0;
  max-width: 800px;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--border);
  box-shadow: var(--shadow-soft);
}
.about-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Services ---------- */
.services-section { padding: 6rem 0; }
@media (min-width: 768px) { .services-section { padding: 8rem 0; } }
.scroll-anchor {
  scroll-margin-top: 5.5rem;
  height: 0;
  pointer-events: none;
}
@media (min-width: 768px) {
  .scroll-anchor { scroll-margin-top: 6.5rem; }
}
.services-intro {
  max-width: 42rem;
  margin-bottom: 3rem;
}
.services-intro > p:first-child {
  font-size: 1.0625rem;
  line-height: 1.65;
}
.services-audience {
  margin-top: 1.25rem;
  padding-left: 1.25rem;
  list-style: disc;
  color: var(--foreground-soft);
  line-height: 1.65;
}
.services-audience li { margin-bottom: 0.5rem; }
.services-audience strong { color: var(--foreground); font-weight: 600; }
.services-pay-note { margin-top: 1.25rem; line-height: 1.65; }

.workshops-block {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  max-width: 42rem;
}
.workshops-title { font-size: 1.5rem; margin-bottom: 0.75rem; }
.workshops-lead { font-size: 1.0625rem; line-height: 1.65; color: var(--foreground-soft); }
.workshops-topics {
  margin-top: 1.25rem;
  padding-left: 1.25rem;
  list-style: disc;
  color: var(--foreground-soft);
  line-height: 1.55;
  display: grid;
  gap: 0.35rem 2rem;
}
@media (min-width: 560px) {
  .workshops-topics { grid-template-columns: 1fr 1fr; }
}
.workshops-custom { margin-top: 1.5rem; font-size: 0.9375rem; line-height: 1.6; }

.pricing-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  position: relative;
  background: var(--card);
  border: 1px solid hsl(38 22% 86% / 0.6);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.5s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.price-card.featured {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
  box-shadow: var(--shadow-elegant);
}
.price-card h3 { font-size: 1.5rem; margin-bottom: 0.25rem; text-wrap: balance; line-height: 1.2; }
.price-duration { font-size: 0.875rem; color: var(--muted-fg); }
.price-card.featured .price-duration,
.price-card.featured .price-desc { color: hsl(39 45% 97% / 0.7); }
.price-amount {
  margin-top: 1.5rem;
  display: flex; align-items: baseline; gap: 0.25rem;
}
.price-amount .num { font-size: 3rem; }
.price-amount .per { font-size: 0.875rem; color: var(--muted-fg); }
.price-card.featured .price-amount .per { color: hsl(39 45% 97% / 0.7); }
.price-desc { margin-top: 1.25rem; font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }
.price-features { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.price-features li { display: flex; gap: 0.5rem; font-size: 0.875rem; align-items: flex-start; }
.price-features li::before {
  content: "✓"; color: var(--primary); font-weight: bold;
}
.price-card.featured .price-features li::before { color: var(--accent); }
.price-card .btn { width: 100%; margin-top: 2rem; height: 3rem; }
.price-footnote {
  margin-top: 1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--muted-fg);
  text-align: center;
}
.price-footnote--on-dark {
  color: hsl(39 45% 97% / 0.78);
}
.featured-badge {
  position: absolute; top: -0.75rem; left: 2rem;
  background: var(--accent); color: var(--accent-fg);
  padding: 0.25rem 0.75rem; border-radius: 999px;
  font-size: 0.7rem; font-weight: 500;
}

/* ---------- Testimonials ---------- */
.testimonials-section { padding: 6rem 0; }
@media (min-width: 768px) { .testimonials-section { padding: 8rem 0; } }
.testimonials-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card {
  background: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid hsl(38 22% 86% / 0.6);
  transition: all 0.5s var(--ease);
  display: flex; flex-direction: column;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.testi-quote { color: var(--accent); font-size: 2rem; line-height: 1; }
.testi-card blockquote {
  margin-top: 1rem;
  flex: 1;
  color: hsl(155 25% 14% / 0.9);
  line-height: 1.65;
}
.testi-card figcaption {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.testi-name { font-size: 1.125rem; }
.testi-role { font-size: 0.75rem; color: var(--muted-fg); margin-top: 0.25rem; }

/* ---------- Footer ---------- */
.footer { background: var(--primary); color: var(--primary-fg); }
.footer-grid {
  padding: 4rem 1.5rem 2rem;
  display: grid; gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 3fr 1fr 1fr; padding: 5rem 2.5rem 2rem; }
}
.footer-brand p { margin-top: 1.25rem; color: hsl(39 45% 97% / 0.7); max-width: 32rem; line-height: 1.5; font-size: 0.875rem; }
.footer-heading {
  font-size: 0.875rem;
  margin-bottom: 1rem; color: hsl(39 45% 97% / 0.6);
}
.footer ul li { margin-bottom: 0.75rem; font-size: 0.875rem; }
.footer ul a:hover { color: var(--accent); }
.footer-bottom {
  padding: 2rem 1.5rem;
  border-top: 1px solid hsl(39 45% 97% / 0.1);
  display: flex; flex-direction: column; gap: 1rem;
  align-items: center; justify-content: space-between;
  font-size: 0.75rem; color: hsl(39 45% 97% / 0.6);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; padding: 2rem 2.5rem; } }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a:hover { color: var(--accent); }

/* ===========================================================
   MODAL (Booking)
   =========================================================== */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: none; align-items: center; justify-content: center;
  padding: 1rem;
}
.modal.open { display: flex; animation: fadeIn 0.2s ease-out; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: hsl(155 25% 14% / 0.55);
  backdrop-filter: blur(4px);
}
.modal-card {
  position: relative;
  width: 100%; max-width: 60rem;
  max-height: 92vh;
  overflow: hidden;
  background: var(--card);
  border-radius: 1.5rem;
  border: 1px solid hsl(38 22% 86% / 0.6);
  box-shadow: var(--shadow-elegant);
  animation: fadeUp 0.3s var(--ease) both;
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  width: 2rem; height: 2rem; border-radius: 999px;
  display: grid; place-items: center;
  font-size: 1.5rem; line-height: 1; color: var(--muted-fg);
  background: hsl(0 0% 100% / 0.6);
}
.modal-close:hover { background: var(--secondary); color: var(--foreground); }
.modal-head {
  padding: 1.75rem 1.5rem 1rem;
  border-bottom: 1px solid hsl(38 22% 86% / 0.6);
  background: hsl(36 35% 90% / 0.4);
  border-radius: 1.5rem 1.5rem 0 0;
}
@media (min-width: 768px) { .modal-head { padding: 1.75rem 2rem 1rem; } }
.modal-head-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem; margin-bottom: 1rem;
}
.modal-title { font-size: 1.5rem; margin-top: 0.25rem; }
.modal-price { text-align: right; max-width: 46%; flex-shrink: 0; }
.modal-price .price { font-size: 1.25rem; }
#summary-name { line-height: 1.35; text-wrap: balance; }
.progress { height: 4px; border-radius: 999px; background: var(--secondary); overflow: hidden; }
.progress div {
  height: 100%; width: 25%;
  background: var(--accent);
  transition: width 0.5s var(--ease);
}
.modal-body { padding: 1.75rem 1.5rem; }
@media (min-width: 768px) { .modal-body { padding: 1.75rem 2rem; } }
.modal-foot {
  padding: 0.5rem 1.5rem 1.75rem;
  display: flex; justify-content: space-between; gap: 0.75rem;
}
@media (min-width: 768px) { .modal-foot { padding: 0.5rem 2rem 1.75rem; } }

/* Step content */
.field-label {
  display: block;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted-fg); margin-bottom: 0.75rem;
}
.session-list { display: flex; flex-direction: column; gap: 0.75rem; }
.session-option {
  width: 100%; text-align: left;
  border-radius: 1rem; border: 1px solid var(--border);
  padding: 1.25rem; background: var(--card);
  transition: all 0.2s;
}
.session-option:hover { border-color: hsl(155 28% 22% / 0.4); }
.session-option.selected {
  border-color: var(--primary);
  background: hsl(90 18% 82% / 0.4);
  box-shadow: var(--shadow-soft);
}
.session-option-row {
  display: flex; justify-content: space-between; gap: 1rem;
}
.session-option .name { font-size: 1.125rem; }
.session-option .dur { font-size: 0.75rem; color: var(--muted-fg); margin-top: 0.125rem; }
.session-option .desc { font-size: 0.875rem; color: var(--muted-fg); margin-top: 0.5rem; }
.session-option .price { font-size: 1.25rem; flex-shrink: 0; }

.day-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem;
}
@media (min-width: 640px) { .day-grid { grid-template-columns: repeat(7, 1fr); } }
.day-btn, .time-btn {
  border-radius: 0.75rem; padding: 0.75rem 0.25rem;
  text-align: center; border: 1px solid var(--border);
  background: var(--card); transition: all 0.2s;
  font-size: 0.875rem;
}
.day-btn:hover, .time-btn:hover { border-color: hsl(155 28% 22% / 0.4); }
.day-btn.selected, .time-btn.selected {
  background: var(--primary); color: var(--primary-fg); border-color: var(--primary);
}
.day-btn .d-label { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; }
.day-btn .d-sub { font-size: 0.875rem; font-weight: 500; margin-top: 0.25rem; }
.time-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem;
}
@media (min-width: 640px) { .time-grid { grid-template-columns: repeat(4, 1fr); } }

.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block; font-size: 0.875rem; font-weight: 500;
  margin-bottom: 0.5rem;
}
.form-field input, .form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--input-bg);
  font: inherit;
  color: inherit;
  transition: border-color 0.2s;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--primary);
}
.form-field input { height: 3rem; }
.form-field textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

.summary-box {
  background: hsl(90 18% 82% / 0.4);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.summary-box .row {
  display: flex; justify-content: space-between; font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.summary-box .row:last-child { margin-bottom: 0; }
.summary-box .row.total {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-weight: 500; font-size: 1rem;
}
.summary-box .row.total span:last-child { font-size: 1.25rem; }
.lock-note { font-size: 0.75rem; color: var(--muted-fg); margin-top: 0.5rem; }

.done-step { text-align: center; padding: 2rem 0; }
.done-check {
  width: 4rem; height: 4rem;
  border-radius: 999px; background: var(--sage);
  color: var(--forest);
  display: grid; place-items: center;
  font-size: 1.75rem; font-weight: bold;
  margin: 0 auto;
}
.done-title { font-size: 2rem; margin-top: 1.5rem; }
.done-msg { margin-top: 0.75rem; max-width: 24rem; margin-left: auto; margin-right: auto; }
.done-sparkle {
  margin-top: 1.5rem; font-size: 0.75rem;
  color: var(--accent);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--primary); color: var(--primary-fg);
  padding: 0.875rem 1.25rem; border-radius: 0.75rem;
  font-size: 0.875rem;
  box-shadow: var(--shadow-elegant);
  z-index: 200;
  transition: transform 0.4s var(--ease);
  max-width: calc(100vw - 2rem);
  display: none;
}
.toast.show { transform: translateX(-50%) translateY(0); display: block; }

/* ===== Hero Section (New) ===== */
.hero { position: relative; padding: 5rem 0; overflow: hidden; }
@media (min-width: 768px) { .hero { padding: 6rem 0 7rem; } }

.blob { position: absolute; border-radius: 9999px; filter: blur(80px); pointer-events: none; }
.blob-sage { top: -8rem; left: -8rem; width: 500px; height: 500px; background: hsl(90 22% 72% / 0.3); }
.blob-clay { top: 33%; right: -10rem; width: 600px; height: 600px; background: hsl(18 45% 68% / 0.2); }

.hero-grid { position: relative; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.hero-copy { position: relative; z-index: 1; }
.hero-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
}

.hero-text { margin-top: 2.5rem; max-width: 36rem; color: var(--muted-fg); font-size: 1.0625rem; line-height: 1.65; }
@media (min-width: 768px) { .hero-text { font-size: 1.125rem; } }
.hero-text p { margin: 0 0 1.25rem; }
.hero-text p:last-child { margin-bottom: 0; }
.hero-text strong { color: var(--foreground); font-weight: 700; }

.experience {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  max-width: 36rem; display: flex; align-items: center; gap: 1rem;
}
.experience-badge {
  width: 3rem; height: 3rem; border-radius: 9999px;
  background: var(--sage); color: var(--forest);
  font-size: 1.125rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.experience p { margin: 0; font-size: 0.95rem; color: hsl(155 25% 14% / 0.8); }
.experience strong { font-weight: 700; }

.hero-media { position: relative; }
.hero-image {
  position: relative; border-radius: 2rem; overflow: hidden;
  box-shadow: var(--shadow-elegant); aspect-ratio: 4 / 5;
}
@media (min-width: 768px) { .hero-image { aspect-ratio: 5 / 6; } }
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, hsl(155 25% 14% / 0.2), transparent); }

.rating-card {
  display: none; position: absolute; top: -1rem; right: -1rem;
  background: var(--card); border: 1px solid hsl(38 22% 86% / 0.6);
  border-radius: 1rem; padding: 1rem 1.25rem 1rem 1rem;
  box-shadow: var(--shadow-elegant);
}
@media (min-width: 640px) { .rating-card { display: block; } }
@media (min-width: 768px) { .rating-card { right: -1.5rem; } }
.stars { display: flex; gap: 2px; color: var(--accent); }
.stars svg { width: 16px; height: 16px; fill: currentColor; }
.rating-number { margin: 0.25rem 0 0; font-size: 1.5rem; font-weight: 700; color: var(--forest); line-height: 1; }
.rating-label { margin: 0.25rem 0 0; font-size: 0.75rem; color: var(--muted-fg); }

/* ===== Steps Section (New) ===== */
.steps {
  background: var(--cream-deep);
  padding: 5rem 0;
}
@media (min-width: 768px) { .steps { padding: 7rem 0; } }

.steps-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
}
.steps-title {
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  max-width: 36rem;
  line-height: 1.1;
}

.steps-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step-card {
  position: relative;
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elegant);
}

.step-number {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: hsl(155 12% 38% / 0.6);
}

.step-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--forest);
  color: var(--cream-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step-icon svg { width: 1.5rem; height: 1.5rem; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.step-title {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.01em;
}

.step-body {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  color: var(--muted-fg);
  line-height: 1.65;
}

/* Animations */
.fade-up { animation: fadeUp 0.7s var(--ease) both; }
.fade-in { animation: fadeIn 1s ease-out both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
