/* =========================================================================
   May Christy Behavioral Health & Wellness
   Light + purple design system
   Display: Cormorant Garamond  ·  Body: Mulish
   ========================================================================= */

:root {
  /* Purple core */
  --plum:        #3F2462;   /* deepest — headings, footer */
  --plum-700:    #4A2C6B;
  --purple:      #6B4C9A;   /* primary brand purple */
  --purple-500:  #7C5CD9;   /* vivid accent / links */
  --purple-300:  #A98FD8;
  --lavender:    #EDE4FA;   /* soft fills */
  --lavender-50: #F7F3FC;   /* page background */
  --mist:        #FBF9FE;

  /* Wellness accent (holistic / sage) */
  --sage:        #79B89A;
  --sage-soft:   #E4F1EB;

  /* Neutrals */
  --ink:         #2C2540;   /* body text */
  --muted:       #6A6280;
  --line:        #E7DFF3;
  --white:       #FFFFFF;

  /* Feedback */
  --ok:          #2E8B6F;
  --ok-soft:     #E2F3EC;
  --err:         #B23A5B;
  --err-soft:    #FBE7EC;

  /* Shape & motion */
  --radius:      18px;
  --radius-sm:   12px;
  --radius-pill: 999px;
  --shadow-sm:   0 4px 16px rgba(63, 36, 98, 0.06);
  --shadow-md:   0 14px 40px rgba(63, 36, 98, 0.10);
  --shadow-lg:   0 28px 70px rgba(63, 36, 98, 0.16);
  --ease:        cubic-bezier(0.22, 0.61, 0.36, 1);

  --maxw: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--lavender-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--plum);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
}

a { color: var(--purple-500); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--plum); }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: "Mulish", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--purple-500);
  margin: 0 0 14px;
}

.section { padding: 92px 0; }
.section--tight { padding: 60px 0; }
.section--lavender { background: var(--lavender-50); }
.section--white { background: var(--white); }
.section--plum {
  background: linear-gradient(150deg, var(--plum) 0%, var(--purple) 100%);
  color: #EFE7FB;
}
.section--plum h1,
.section--plum h2,
.section--plum h3 { color: #FFFFFF; }

.lead { font-size: 1.15rem; color: var(--muted); max-width: 60ch; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ----------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background 0.2s var(--ease), color 0.2s var(--ease);
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple-500), var(--purple));
  color: #fff;
  box-shadow: 0 12px 26px rgba(124, 92, 217, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); color: #fff;
  box-shadow: 0 18px 34px rgba(124, 92, 217, 0.42); }
.btn-ghost {
  background: var(--white);
  color: var(--plum);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--purple-300); color: var(--plum); }
.btn-on-plum {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn-on-plum:hover { background: #fff; color: var(--plum); }

/* ---------- Navbar ------------------------------------------------------ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 249, 254, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple-500), var(--plum));
  box-shadow: var(--shadow-sm);
}
.brand__name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700; font-size: 1.32rem; line-height: 1; color: var(--plum);
}
.brand__name span { display: block; font-size: 0.66rem; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--purple-500); font-family: "Mulish", sans-serif;
  font-weight: 800; margin-top: 4px; }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  font-weight: 700; font-size: 0.94rem; color: var(--ink);
  padding: 9px 14px; border-radius: var(--radius-pill);
}
.nav__links a:hover { color: var(--plum); background: var(--lavender); }
.nav__links a.is-active { color: var(--purple-500); background: var(--lavender); }
.nav__links .btn { margin-left: 10px; padding: 11px 22px; }

.nav__toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; border-radius: 12px;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--plum);
  border-radius: 2px; position: relative; margin: 0 auto;
  transition: transform 0.25s var(--ease);
}
.nav__toggle span::before { position: absolute; top: -7px; }
.nav__toggle span::after  { position: absolute; top: 7px; }

/* ---------- Hero -------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding: 104px 0 96px; }
.hero__aura {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}

/* Photographic hero */
.hero--photo { color: #F3ECFB; }
.hero__img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(112deg,
      rgba(38, 21, 60, 0.94) 0%,
      rgba(63, 36, 98, 0.84) 38%,
      rgba(74, 44, 107, 0.52) 70%,
      rgba(124, 92, 217, 0.26) 100%);
}
.hero--photo h1 { color: #FFFFFF; }
.hero--photo h1 em { color: #D9C6FF; }
.hero--photo .eyebrow { color: #D9C6FF; }
.hero--photo .lead { color: #E8DFF7; }
.hero--photo .hero__trust { color: #E2D8F4; }
.hero--photo .hero__trust svg { color: #9FE6C4; }
.hero--photo .hero__card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(140%) blur(8px);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 30px 70px rgba(20, 10, 40, 0.45);
}

.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero h1 { font-size: clamp(2.7rem, 6vw, 4.4rem); }
.hero h1 em { font-style: italic; color: var(--purple-500); }
.hero .lead { margin: 18px 0 30px; font-size: 1.22rem; }

/* CTAs: always on one line, shrink instead of wrap */
.hero__cta { display: flex; gap: 12px; flex-wrap: nowrap; }
.hero__cta .btn { white-space: nowrap; }

.hero__trust {
  margin-top: 30px; display: flex; gap: 22px; flex-wrap: wrap;
  color: var(--muted); font-size: 0.92rem; font-weight: 700;
}
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust svg { color: var(--sage); }

/* Reusable inline button row (e.g. services section) */
.btn-row { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: nowrap; }
.btn-row .btn { white-space: nowrap; }

.hero__card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 30px; border: 1px solid var(--line);
}
.hero__card h3 { font-size: 1.7rem; margin-bottom: 4px; }
.hero__pillars { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 14px; }
.hero__pillars li { display: flex; gap: 14px; align-items: flex-start; }
.pill-icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; background: var(--lavender); color: var(--purple-500);
}
.hero__pillars b { color: var(--plum); font-family: "Mulish", sans-serif; font-weight: 800; }
.hero__pillars small { color: var(--muted); display: block; font-size: 0.86rem; }

/* ---------- Wave divider ----------------------------------------------- */
.wave { display: block; width: 100%; height: auto; }
.wave--top { margin-bottom: -6px; }
.wave--bottom { margin-top: -6px; }

/* ---------- Section heading -------------------------------------------- */
.head { max-width: 62ch; }
.head--center { margin: 0 auto; text-align: center; }
.head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }

/* ---------- Cards / services ------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--purple-300); }
.card__icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--lavender), var(--sage-soft));
  color: var(--purple); margin-bottom: 18px;
}
.card h3 { font-size: 1.55rem; margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0 0 18px; }
.card__link {
  font-weight: 800; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px;
}
.card__link svg { transition: transform 0.2s var(--ease); }
.card__link:hover svg { transform: translateX(4px); }

/* ---------- Steps ------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); }
.step__num {
  font-family: "Cormorant Garamond", serif; font-size: 2.4rem; font-weight: 700;
  color: var(--purple-300); line-height: 1;
}
.step h3 { font-size: 1.35rem; margin: 8px 0 6px; }
.step p { color: var(--muted); margin: 0; }

/* ---------- Testimonials ------------------------------------------------ */
.quote {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm); position: relative;
}
.quote::before {
  content: "\201C"; font-family: "Cormorant Garamond", serif; font-size: 4.4rem;
  color: var(--purple-300); line-height: 0.6; position: absolute; top: 22px; left: 22px; opacity: 0.5;
}
.quote p { position: relative; z-index: 1; font-size: 1.06rem; color: var(--ink); margin: 14px 0 18px; }
.quote__who b { display: block; color: var(--plum); font-weight: 800; }
.quote__who small { color: var(--muted); }

/* ---------- CTA band ---------------------------------------------------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.cta-band p { color: #E4D8F6; max-width: 56ch; margin: 0 auto 26px; }
.cta-band .btn-primary { box-shadow: 0 14px 30px rgba(0,0,0,0.22); }

/* ---------- Forms ------------------------------------------------------- */
.form-wrap {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 40px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 800; font-size: 0.9rem; color: var(--plum); }
.field .helptext, .helptext { font-size: 0.8rem; color: var(--muted); }

.form-control {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--mist); transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-control:focus {
  outline: none; border-color: var(--purple-500); background: #fff;
  box-shadow: 0 0 0 4px rgba(124, 92, 217, 0.14);
}
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B4C9A' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }

.check-row { display: flex; gap: 12px; align-items: flex-start; }
.check-row .form-check { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--purple-500); flex: none; }
.check-row label { font-weight: 600; color: var(--ink); font-size: 0.94rem; }

.errorlist { list-style: none; margin: 6px 0 0; padding: 0; color: var(--err); font-size: 0.85rem; font-weight: 700; }
.field--error .form-control { border-color: var(--err); background: var(--err-soft); }

/* ---------- Messages / alerts ------------------------------------------ */
.alert {
  border-radius: var(--radius-sm); padding: 15px 18px; margin-bottom: 18px;
  font-weight: 700; border: 1px solid transparent; display: flex; gap: 12px; align-items: center;
}
.alert.success { background: var(--ok-soft); color: var(--ok); border-color: #BFE6D6; }
.alert.error   { background: var(--err-soft); color: var(--err); border-color: #F3C9D4; }
.alert.info, .alert.warning { background: var(--lavender); color: var(--plum); border-color: var(--line); }

/* ---------- Info / contact tiles --------------------------------------- */
.info-tile {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); display: flex; gap: 16px; align-items: flex-start;
}
.info-tile .ic {
  flex: none; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: var(--lavender); color: var(--purple-500);
}
.info-tile b { display: block; color: var(--plum); font-weight: 800; margin-bottom: 2px; }
.info-tile a, .info-tile span { color: var(--muted); }
.info-tile a:hover { color: var(--purple-500); }

/* ---------- About ------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
.about-figure {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  background: linear-gradient(150deg, var(--lavender), var(--sage-soft));
  aspect-ratio: 4 / 5; display: grid; place-items: center; color: var(--purple); padding: 30px;
}
.stat-row { display: flex; gap: 34px; flex-wrap: wrap; margin-top: 26px; }
.stat b { font-family: "Cormorant Garamond", serif; font-size: 2.4rem; color: var(--purple-500); display: block; line-height: 1; }
.stat small { color: var(--muted); font-weight: 700; }

.value-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 16px; }
.value-list li { display: flex; gap: 14px; align-items: flex-start; }
.value-list .vmark { flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; background: var(--sage-soft); color: var(--sage); margin-top: 2px; }
.value-list b { color: var(--plum); }

/* ---------- Legal / prose ---------------------------------------------- */
.prose { max-width: 76ch; margin: 0 auto; }
.prose h2 { font-size: 1.8rem; margin-top: 1.8em; }
.prose h3 { font-size: 1.35rem; margin-top: 1.4em; color: var(--purple); }
.prose p, .prose li { color: var(--ink); }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 0.5em; }
.prose .muted-date { color: var(--muted); font-style: italic; }
.legal-note {
  background: var(--sage-soft); border-left: 4px solid var(--sage);
  padding: 18px 22px; border-radius: var(--radius-sm); margin: 24px 0; color: var(--plum);
}

/* ---------- Footer ------------------------------------------------------ */
.footer { background: var(--plum); color: #D9CCEE; padding: 70px 0 30px; }
.footer a { color: #D9CCEE; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__brand .brand__name { color: #fff; }
.footer__brand p { color: #B6A6D6; margin: 14px 0 0; max-width: 30ch; }
.footer h4 { color: #fff; font-family: "Mulish", sans-serif; font-weight: 800; font-size: 0.82rem;
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; color: #C6B7E4; }
.footer__contact svg { flex: none; margin-top: 3px; color: var(--purple-300); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12); margin-top: 50px; padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 0.85rem; color: #A795CC;
}
.footer__bottom a { margin-left: 18px; }

/* ---------- Reveal on scroll ------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Staggered reveals for grids */
.stagger > .reveal:nth-child(1) { transition-delay: 0.04s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.12s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.20s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.28s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.36s; }
.stagger > .reveal:nth-child(6) { transition-delay: 0.44s; }

/* ---------- Motion / life ---------------------------------------------- */
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.10) translate(-1%, -1%); } }
@keyframes floaty   { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes gradientshift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes blobdrift { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(18px,-14px) scale(1.06); } }

.hero__img { animation: kenburns 24s ease-in-out infinite alternate; }
.hero--photo .hero__card { animation: floaty 7s ease-in-out infinite; }

/* Ambient blobs (decorative) */
.blobs { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(40px); opacity: 0.5; animation: blobdrift 16s ease-in-out infinite; }
.blob--1 { width: 320px; height: 320px; background: var(--lavender); top: -80px; right: -60px; }
.blob--2 { width: 240px; height: 240px; background: var(--sage-soft); bottom: -70px; left: -50px; animation-delay: 4s; }
.section { position: relative; }
.section > .container { position: relative; z-index: 1; }

/* ---------- Feature cards (What sets us apart) -------------------------- */
.card--feature { position: relative; overflow: hidden; }
.card--feature::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0;
  background: linear-gradient(90deg, var(--purple-500), var(--sage));
  transition: width 0.4s var(--ease);
}
.card--feature:hover::before { width: 100%; }

/* ---------- Audience cards (Who we help) ------------------------------- */
.aud-list { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 8px; }
.aud-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 0.94rem; }
.aud-list svg { flex: none; margin-top: 3px; color: var(--sage); }

/* ---------- Telehealth: what you'll need ------------------------------- */
.need-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 14px; }
.need-list li {
  display: flex; gap: 14px; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 18px; box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.need-list li:hover { transform: translateX(5px); box-shadow: var(--shadow-md); }
.need-list .nmark {
  flex: none; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: var(--lavender); color: var(--purple-500);
}
.need-list b { color: var(--plum); display: block; }
.need-list small { color: var(--muted); }

/* ---------- Stats band ------------------------------------------------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat-big b {
  font-family: "Cormorant Garamond", serif; font-weight: 700; line-height: 1;
  font-size: clamp(2.6rem, 5vw, 3.8rem); color: #fff; display: inline-block;
}
.stat-big .unit { font-family: "Cormorant Garamond", serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--purple-300); }
.stat-big small {
  display: block; margin-top: 8px; color: #D9CCEE; font-weight: 700;
  letter-spacing: 0.04em; font-size: 0.92rem;
}

/* ---------- FAQ (accordion) -------------------------------------------- */
.faq { max-width: 820px; margin: 46px auto 0; display: grid; gap: 14px; }
.faq__item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.faq__item[open] { box-shadow: var(--shadow-md); border-color: var(--purple-300); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 20px 24px; gap: 18px;
  font-weight: 800; color: var(--plum); font-size: 1.04rem;
  display: flex; align-items: center; justify-content: space-between;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; flex: none; width: 11px; height: 11px;
  border-right: 2.5px solid var(--purple-500); border-bottom: 2.5px solid var(--purple-500);
  transform: rotate(45deg); transition: transform 0.25s var(--ease); margin-top: -4px;
}
.faq__item[open] summary { color: var(--purple-500); }
.faq__item[open] summary::after { transform: rotate(-135deg); margin-top: 2px; }
.faq__a { padding: 0 24px 22px; color: var(--muted); animation: fadeUp 0.3s var(--ease); }
.faq__a a { font-weight: 700; }

/* ---------- Animated CTA band ------------------------------------------ */
.cta-band {
  background: linear-gradient(125deg, var(--plum) 0%, var(--purple) 45%, var(--purple-500) 100%);
  background-size: 220% 220%; animation: gradientshift 18s ease infinite;
}
.cta-band__note {
  margin-top: 22px; font-size: 0.86rem; color: #D8C9F2;
}
.cta-band__note strong { color: #fff; }

/* ---------- About hero: business-card showcase ------------------------- */
.about-hero {
  background: linear-gradient(135deg, var(--plum) 0%, var(--purple) 55%, var(--purple-500) 100%);
  background-size: 220% 220%; animation: gradientshift 20s ease infinite;
  overflow: hidden;
}
.about-hero .eyebrow { color: #D9C6FF; }
.about-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); }
.about-hero .lead { color: #E8DFF7; margin-left: auto; margin-right: auto; }
.cardshow {
  position: relative; max-width: 860px; margin: 30px auto 0;
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 40px 90px rgba(20, 10, 40, 0.5);
  aspect-ratio: 16 / 9; background: #fff;
}
.cardshow__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cardshow__overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(135deg, rgba(124, 92, 217, 0.10) 0%, rgba(63, 36, 98, 0.14) 100%);
  box-shadow: inset 0 0 90px rgba(40, 20, 70, 0.18);
}
.cardshow__shine {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 38%);
}

/* ---------- Responsive -------------------------------------------------- */
@media (max-width: 960px) {
  .hero__grid, .about-grid { grid-template-columns: 1fr; }
  .grid--3, .steps { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .nav__links {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--mist); border-bottom: 1px solid var(--line); padding: 14px 20px 22px;
    gap: 4px; transform: translateY(-130%); transition: transform 0.3s var(--ease);
    box-shadow: var(--shadow-md);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links .btn { margin: 8px 0 0; justify-content: center; }
  .nav__toggle { display: block; }
  .grid--3, .grid--2, .steps, .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 26px 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
}

/* Keep paired CTAs side-by-side on phones: shrink, never wrap */
@media (max-width: 520px) {
  .hero__cta, .btn-row { gap: 10px; }
  .hero__cta .btn, .btn-row .btn {
    flex: 1 1 0; min-width: 0; justify-content: center;
    padding: 13px 12px; font-size: 0.82rem;
  }
}
@media (max-width: 380px) {
  .hero__cta .btn, .btn-row .btn { padding: 12px 8px; font-size: 0.75rem; letter-spacing: 0; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

:focus-visible { outline: 3px solid var(--purple-500); outline-offset: 2px; border-radius: 6px; }