root {
  --purple:        #6b3fa0;
  --purple-dark:   #4a2875;
  --purple-mid:    #8b5cc0;
  --purple-light:  #f0eaf8;
  --purple-border: #d4c0eb;
  --white:         #ffffff;
  --off-white:     #f9f7fc;
  --charcoal:      #1e1e2e;
  --body-text:     #4a4a5a;
  --mid-grey:      #888899;
  --radius:        10px;
  --radius-lg:     18px;
  --shadow:        0 4px 20px rgba(107,63,160,0.12);
  --shadow-lg:     0 12px 40px rgba(107,63,160,0.18);
}
 
/* BUTTONS */
.es-btn-white { background:#fff; color:#4a2875; padding:14px 30px;
  border-radius:6px; font-size:13px; font-weight:700; letter-spacing:.04em;
  text-transform:uppercase; text-decoration:none; display:inline-block;
  transition:opacity .15s,transform .15s; }
.es-btn-white:hover { opacity:.92; transform:translateY(-1px); color:#4a2875; }
.es-btn-ghost-white { background:transparent; color:#fff; padding:14px 30px;
  border-radius:6px; font-size:14px; font-weight:500; text-decoration:none;
  border:2px solid rgba(255,255,255,.45); display:inline-block; transition:background .15s; }
.es-btn-ghost-white:hover { background:rgba(255,255,255,.1); color:#fff; }
.es-btn-purple { background:#6b3fa0; color:#fff !important; padding:15px 30px;
  border-radius:6px; font-size:13px; font-weight:700; letter-spacing:.04em;
  text-transform:uppercase; text-decoration:none; border:none; cursor:pointer;
  display:inline-block; transition:background .15s; font-family:inherit; }
.es-btn-purple:hover { background:#4a2875; color:#fff !important; }
 
/* HERO */
.es-hero { background:linear-gradient(135deg,#4a2875 0%,#6b3fa0 55%,#8b5cc0 100%);
  color:#fff; padding:80px 40px 90px; position:relative; overflow:hidden; }
.es-hero::before { content:''; position:absolute; top:-80px; right:-100px;
  width:500px; height:500px; background:rgba(255,255,255,.04);
  border-radius:50%; pointer-events:none; }
.es-hero-inner { max-width:1080px; margin:0 auto; position:relative; z-index:1; }
.es-hero-badge { display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.3);
  padding:6px 16px; border-radius:50px; font-size:12px; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase; margin-bottom:22px; }
.es-hero h1 { font-size:clamp(2rem,4.5vw,3.2rem); font-weight:700;
  line-height:1.2; margin-bottom:18px; max-width:680px; color:#fff; }
.es-hero-lead { font-size:17px; font-weight:300; opacity:.9;
  max-width:540px; margin-bottom:28px; line-height:1.65; color:#fff; }
.es-hero-checklist { list-style:none; margin-bottom:36px;
  display:flex; flex-direction:column; gap:8px; padding:0; }
.es-hero-checklist li { font-size:15px; display:flex;
  align-items:center; gap:10px; opacity:.93; color:#fff; }
.es-hero-checklist li::before { content:'✔'; font-size:13px;
  font-weight:700; color:#d4b8f0; }
.es-hero-actions { display:flex; gap:14px; flex-wrap:wrap; }
 
/* TRUST BAR */
.es-trust { background:#f0eaf8; border-bottom:1px solid #d4c0eb;
  padding:20px 40px; display:flex; justify-content:center;
  gap:44px; flex-wrap:wrap; }
.es-trust-item { display:flex; align-items:center; gap:10px;
  font-size:13px; color:#4a4a5a; }
.es-trust-icon { width:34px; height:34px; background:#6b3fa0;
  border-radius:50%; display:flex; align-items:center;
  justify-content:center; font-size:15px; flex-shrink:0; }
.es-trust-item strong { color:#4a2875; font-weight:600; }
 
/* STEPS */
.es-section { padding:72px 40px; }
.es-section-inner { max-width:1080px; margin:0 auto; }
.es-eyebrow { font-size:12px; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:#6b3fa0; margin-bottom:10px; }
.es-sec-title { font-size:clamp(1.6rem,3vw,2.2rem); font-weight:700;
  line-height:1.25; color:#1e1e2e; margin-bottom:14px; }
.es-sec-sub { font-size:16px; color:#4a4a5a; font-weight:300;
  max-width:560px; line-height:1.7; }
.es-steps-grid { display:grid; grid-template-columns:repeat(3,1fr);
  gap:28px; margin-top:48px; }
.es-step { background:#f9f7fc; border:1px solid #d4c0eb;
  border-radius:18px; padding:36px 28px; transition:box-shadow .2s; }
.es-step:hover { box-shadow:0 4px 20px rgba(107,63,160,.12); }
.es-step-num { width:48px; height:48px; background:#6b3fa0; color:#fff;
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:20px; font-weight:700; margin-bottom:20px; }
.es-step h3 { font-size:16px; font-weight:600; margin-bottom:10px; }
.es-step p { font-size:14px; color:#4a4a5a; font-weight:300; line-height:1.7; }
 
/* CALCULATOR */
.es-calc-section { background:#4a2875; padding:72px 40px; }
.es-calc-header { max-width:1080px; margin:0 auto 40px; text-align:center; }
.es-calc-header .es-eyebrow { color:rgba(255,255,255,.65); }
.es-calc-header h2 { font-size:clamp(1.6rem,3vw,2.2rem); font-weight:700;
  color:#fff; margin-bottom:10px; }
.es-calc-header p { font-size:14px; color:rgba(255,255,255,.6); font-weight:300; }
.es-calc-card { max-width:920px; margin:0 auto; background:#fff;
  border-radius:18px; overflow:hidden;
  box-shadow:0 12px 40px rgba(107,63,160,.18);
  display:grid; grid-template-columns:1fr 1fr; }
.es-calc-left { background:#6b3fa0; padding:48px 40px; color:#fff; }
.es-calc-left h3 { font-size:1.4rem; font-weight:700; margin-bottom:8px; color:#fff; }
.es-calc-left > p { font-size:13px; opacity:.8; font-weight:300;
  margin-bottom:32px; line-height:1.6; }
.es-calc-field { margin-bottom:28px; }
.es-calc-field label { display:block; font-size:11px; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase; opacity:.8; margin-bottom:10px; }
.es-range-display { font-size:30px; font-weight:700; margin-bottom:10px; color:#fff; }
.es-calc-field input[type=range] { width:100%; -webkit-appearance:none;
  height:5px; border-radius:3px; background:rgba(255,255,255,.3);
  outline:none; cursor:pointer; }
.es-calc-field input[type=range]::-webkit-slider-thumb {
  -webkit-appearance:none; width:22px; height:22px; border-radius:50%;
  background:#fff; box-shadow:0 2px 8px rgba(0,0,0,.25); cursor:pointer; }
.es-range-minmax { display:flex; justify-content:space-between;
  font-size:11px; opacity:.5; margin-top:6px; }
.es-term-grid { display:flex; gap:8px; flex-wrap:wrap; }
.es-term-btn { padding:10px 14px; border-radius:6px;
  border:1.5px solid rgba(255,255,255,.35); background:transparent;
  color:#fff; font-size:12px; font-weight:500; cursor:pointer;
  transition:all .15s; text-align:center; line-height:1.3;
  font-family:inherit; }
.es-term-btn small { font-size:10px; opacity:.65; display:block; }
.es-term-btn.active,.es-term-btn:hover { background:#fff;
  color:#4a2875; border-color:#fff; font-weight:700; }
.es-calc-right { padding:48px 40px; background:#f9f7fc;
  display:flex; flex-direction:column; justify-content:center; }
.es-result-eyebrow { font-size:11px; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; color:#6b3fa0; margin-bottom:6px; }
.es-result-amount { font-size:64px; font-weight:700; color:#4a2875;
  line-height:1; margin-bottom:4px; }
.es-result-amount sup { font-size:30px; vertical-align:top;
  margin-top:14px; display:inline-block; }
.es-result-sub { font-size:13px; color:#888899; margin-bottom:28px; font-weight:300; }
.es-breakdown { background:#fff; border:1px solid #d4c0eb;
  border-radius:10px; padding:20px 22px; margin-bottom:24px; }
.es-b-row { display:flex; justify-content:space-between; align-items:center;
  font-size:13px; padding:7px 0; border-bottom:1px solid #f0ecf8; }
.es-b-row:last-child { border-bottom:none; }
.es-b-label { color:#4a4a5a; }
.es-b-val { font-weight:600; color:#1e1e2e; }
.es-b-val.accent { color:#6b3fa0; }
.es-tag-free { display:inline-block; background:#f0eaf8; color:#4a2875;
  font-size:10px; font-weight:700; padding:2px 8px; border-radius:50px;
  letter-spacing:.05em; text-transform:uppercase; margin-left:6px; }
.es-calc-disclaimer { font-size:10px; color:#bbb; text-align:center;
  margin-top:12px; line-height:1.6; }
 
/* TREATMENTS */
.es-treat-grid { display:grid; grid-template-columns:repeat(3,1fr);
  gap:20px; margin-top:48px; }
.es-treat-card { background:#f9f7fc; border:1px solid #d4c0eb;
  border-radius:18px; padding:26px 22px; transition:box-shadow .2s,transform .2s; }
.es-treat-card:hover { box-shadow:0 4px 20px rgba(107,63,160,.12);
  transform:translateY(-2px); }
.es-treat-icon { font-size:26px; margin-bottom:12px; }
.es-treat-card h3 { font-size:15px; font-weight:600; margin-bottom:4px; }
.es-treat-price { font-size:13px; color:#6b3fa0; font-weight:600; margin-bottom:8px; }
.es-treat-monthly { font-size:12px; background:#f0eaf8; color:#4a2875;
  padding:3px 10px; border-radius:50px; display:inline-block; font-weight:500; }
 
/* ELIGIBILITY */
.es-elig-grid { display:grid; grid-template-columns:1fr 1fr;
  gap:56px; margin-top:48px; align-items:start; }
.es-elig-list { list-style:none; padding:0; }
.es-elig-list li { display:flex; align-items:flex-start; gap:14px;
  padding:13px 0; border-bottom:1px solid #d4c0eb;
  font-size:15px; color:#4a4a5a; font-weight:300; }
.es-elig-list li:last-child { border-bottom:none; }
.es-elig-icon { width:26px; height:26px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:12px; font-weight:700; flex-shrink:0; margin-top:2px; }
.es-elig-icon.yes { background:#f0eaf8; color:#6b3fa0; }
.es-elig-icon.no  { background:#fce8e8; color:#c0392b; }
.es-chrysalis-box { background:#fff; border:1px solid #d4c0eb;
  border-radius:18px; padding:32px 28px; }
.es-chrysalis-box h3 { font-size:1.1rem; font-weight:700; margin-bottom:12px; }
.es-chrysalis-box p { font-size:14px; color:#4a4a5a; line-height:1.7;
  font-weight:300; margin-bottom:16px; }
.es-fca-pill { display:inline-flex; align-items:center; gap:8px;
  background:#f0eaf8; border:1px solid #d4c0eb;
  padding:10px 16px; border-radius:8px; font-size:12px;
  font-weight:600; color:#4a2875; }
 
/* FAQ */
.es-faq-wrap { max-width:740px; margin-top:48px; }
.es-faq-item { border-bottom:1px solid #d4c0eb; }
.es-faq-q { width:100%; background:none; border:none; text-align:left;
  padding:20px 0; font-size:15px; font-weight:600; color:#1e1e2e;
  cursor:pointer; display:flex; justify-content:space-between;
  align-items:center; gap:16px; font-family:inherit; }
.es-faq-icon { width:28px; height:28px; background:#f0eaf8;
  border-radius:50%; display:flex; align-items:center;
  justify-content:center; color:#6b3fa0; font-size:18px; flex-shrink:0;
  transition:transform .25s,background .2s; line-height:1; }
.es-faq-item.open .es-faq-icon { transform:rotate(45deg);
  background:#6b3fa0; color:#fff; }
.es-faq-a { max-height:0; overflow:hidden; transition:max-height .3s ease; }
.es-faq-a-inner { padding:0 0 20px; font-size:14px; color:#4a4a5a;
  line-height:1.75; font-weight:300; }
.es-faq-item.open .es-faq-a { max-height:200px; }
 
/* CTA BAND */
.es-cta-band { background:linear-gradient(135deg,#4a2875 0%,#6b3fa0 100%);
  padding:64px 40px; text-align:center; color:#fff; }
.es-cta-band .es-eyebrow { color:rgba(255,255,255,.65); }
.es-cta-band h2 { font-size:clamp(1.6rem,3vw,2.1rem);
  font-weight:700; margin-bottom:12px; color:#fff; }
.es-cta-band .es-sub { font-size:16px; font-weight:300;
  opacity:.85; margin-bottom:32px; color:#fff; }
.es-cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
 
/* RESPONSIVE */
@media(max-width:860px) {
  .es-steps-grid,.es-treat-grid { grid-template-columns:1fr 1fr; }
  .es-calc-card { grid-template-columns:1fr; }
  .es-elig-grid { grid-template-columns:1fr; gap:32px; }
  .es-trust { gap:20px; padding:18px 20px; }
  .es-section,.es-calc-section { padding:52px 20px; }
  .es-hero { padding:60px 20px 72px; }
}
@media(max-width:540px) {
  .es-steps-grid,.es-treat-grid { grid-template-columns:1fr; }
  .es-result-amount { font-size:48px; }
}
.es-result-amount sup {
  font-size: 28px;
  vertical-align: middle;
  margin-top: 0;
  line-height: 1;
}