:root {
  --color-primary: #8B5CF6;
  --color-secondary: #C4B5FD;
  --color-accent: #10B981;
  --color-neutral-dark: #4C1D95;
  --color-neutral-light: #FAF5FF;
  --color-text: #1f1340;
  --color-muted: #6b5b8a;
  --color-border: rgba(76, 29, 149, 0.12);
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-sm: 0 2px 20px rgba(76, 29, 149, 0.06);
  --shadow-md: 0 12px 40px -10px rgba(76, 29, 149, 0.18);
  --shadow-lg: 0 30px 60px -25px rgba(76, 29, 149, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max-w: 1180px;
}

/* === Base === */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-neutral-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-neutral-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1rem; }
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 1.25rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.eyebrow { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-primary); margin-bottom: 1rem; }
.lede { font-size: 1.125rem; color: var(--color-muted); }

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
  text-decoration: none;
  line-height: 1;
}
.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(139, 92, 246, 0.6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(139, 92, 246, 0.7); text-decoration: none; }
.btn--ghost {
  background: transparent;
  color: var(--color-neutral-dark);
  border: 1.5px solid var(--color-border);
}
.btn--ghost:hover { background: rgba(139, 92, 246, 0.08); transform: translateY(-2px); text-decoration: none; }
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }

/* === Header / nav === */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 245, 255, 0.75);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled { background: rgba(250, 245, 255, 0.92); box-shadow: 0 4px 20px -10px rgba(76, 29, 149, 0.18); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 0.75rem; gap: 1rem; }
.logo { display: inline-flex; align-items: center; line-height: 0; }
.logo img { height: 72px; width: auto; }
.primary-nav { display: flex; align-items: center; }
.primary-nav__list { display: none; list-style: none; margin: 0; padding: 0; gap: 2rem; }
.primary-nav__list a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-block: 0.3rem;
  text-decoration: none;
}
.primary-nav__list a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--color-primary); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.primary-nav__list a:hover::after, .primary-nav__list a[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 4px;
  background: transparent; border: none; cursor: pointer; padding: 0.5rem;
}
.nav-toggle__bar { display: block; width: 24px; height: 2px; background: var(--color-neutral-dark); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.primary-nav__list.is-open {
  display: flex; flex-direction: column; gap: 1rem;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--color-neutral-light);
  padding: 1.5rem 1.25rem; border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav__list { display: flex; }
}

/* === Hero === */
.hero {
  position: relative;
  padding-block: 4rem 3rem;
  text-align: center;
  background: radial-gradient(60% 60% at 50% 20%, rgba(16, 185, 129, 0.10), transparent 60%),
              linear-gradient(180deg, var(--color-neutral-light) 0%, #fff 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: -10% -10% auto -10%; height: 60%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(139, 92, 246, 0.18), transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }
.hero__title { max-width: 22ch; margin-inline: auto; }
.hero__sub { max-width: 52ch; margin: 0 auto 2rem; font-size: 1.15rem; color: var(--color-muted); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin: 0 0 3rem; }
.hero__media { margin-top: 2.5rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero__media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
@media (min-width: 768px) { .hero { padding-block: 6rem 4rem; } }

/* === Sections === */
.section { padding-block: 4rem; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section__head .lede { margin-top: 0.75rem; }

.intro__grid { display: grid; gap: 2.5rem; }
.intro__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.intro__media img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.intro--single { max-width: 760px; margin-inline: auto; text-align: left; }
@media (min-width: 900px) {
  .intro__grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; }
}

/* === Cards / highlights grid === */
.grid { display: grid; gap: 1.25rem; }
.grid--cards { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid--cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(16, 185, 129, 0.15));
  color: var(--color-primary); margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-muted); margin: 0; }

/* === Testimonial === */
.testimonial { background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.05)); }
.quote {
  max-width: 760px; margin: 0 auto; text-align: center; padding: 2rem 1rem; position: relative;
}
.quote p { font-family: var(--font-heading); font-size: clamp(1.25rem, 2.4vw, 1.6rem); line-height: 1.4; color: var(--color-neutral-dark); margin-bottom: 1rem; }
.quote cite { font-style: normal; color: var(--color-muted); font-size: 0.95rem; }

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff; text-align: center; padding-block: 4rem;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 100% at 80% 20%, rgba(16, 185, 129, 0.25), transparent 60%);
  pointer-events: none;
}
.cta-band > .container { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 560px; margin: 0 auto 1.5rem; }
.cta-band .btn--primary { background: var(--color-accent); box-shadow: 0 8px 24px -8px rgba(16, 185, 129, 0.6); }
.cta-band .btn--primary:hover { box-shadow: 0 14px 30px -8px rgba(16, 185, 129, 0.7); }

/* === FAQ === */
.faq__list { max-width: 800px; margin-inline: auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq details {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary {
  font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark);
  cursor: pointer; list-style: none; font-size: 1.05rem; padding-right: 1.5rem; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--color-primary); transition: transform 0.2s;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { margin: 1rem 0 0; color: var(--color-muted); }

/* === Pricing === */
.pricing-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.pricing-card {
  position: relative; background: #fff;
  padding: 2.25rem;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card--featured { border-color: var(--color-accent); border-width: 2px; box-shadow: var(--shadow-md); }
.pricing-card__badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--color-accent); color: #fff;
  padding: 0.3rem 0.8rem; border-radius: 999px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em;
}
.pricing-card__plan { font-size: 1.1rem; color: var(--color-muted); font-weight: 600; margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: 0.08em; }
.pricing-card__price { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; color: var(--color-neutral-dark); margin-bottom: 0.5rem; }
.pricing-card__lede { color: var(--color-muted); margin-bottom: 1.25rem; font-size: 0.95rem; }
.pricing-card__features { list-style: none; margin: 0 0 1.75rem; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.pricing-card__features li { display: flex; gap: 0.5rem; color: var(--color-text); font-size: 0.95rem; }
.pricing-card__features li span { color: var(--color-accent); font-weight: 700; flex-shrink: 0; }
.pricing-card__cta { width: 100%; text-align: center; }

/* === Contact form === */
.contact-form { max-width: 640px; margin-inline: auto; background: #fff; padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--color-border); }
.form-row { display: flex; flex-direction: column; margin-bottom: 1.25rem; }
.form-row label { font-weight: 500; color: var(--color-neutral-dark); margin-bottom: 0.4rem; font-size: 0.95rem; }
.form-row input, .form-row textarea {
  font: inherit; padding: 0.75rem 0.9rem; border: 1.5px solid var(--color-border);
  border-radius: 10px; background: var(--color-neutral-light); color: var(--color-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15); }
.form-row textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { width: 100%; }
@media (min-width: 600px) { .contact-form .btn { width: auto; } }

/* === Hours table === */
.hours-table { width: 100%; max-width: 520px; margin-inline: auto; border-collapse: collapse; background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.hours-table th, .hours-table td { padding: 0.85rem 1.25rem; text-align: left; border-bottom: 1px solid var(--color-border); }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }
.hours-table th { font-weight: 600; color: var(--color-neutral-dark); }
.hours-table td { color: var(--color-muted); text-align: right; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(255, 255, 255, 0.85); padding-block: 3.5rem 1.5rem; margin-top: 4rem; }
.site-footer .logo img { filter: brightness(0) invert(1); }
.site-footer__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1.4fr; gap: 3rem; } }
.footer__h { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.12em; color: #fff; margin: 0 0 1rem; font-weight: 600; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.footer__tag { color: var(--color-secondary); margin-top: 1rem; }
.footer__legal { margin-top: 1rem; }
.site-footer__copy { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 1.5rem; margin-top: 2.5rem; font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); text-align: center; }

/* === Cookie banner === */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem;
  display: none; z-index: 9999;
  background: var(--color-neutral-dark); color: var(--color-neutral-light);
  padding: 1.25rem 1.5rem; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 640px; margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { color: rgba(255, 255, 255, 0.9); font-size: 0.92rem; margin-bottom: 1rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner .btn { font-size: 0.9rem; padding: 0.6rem 1.1rem; }
.cookie-banner .btn--primary { background: var(--color-accent); box-shadow: none; }
.cookie-banner .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.3); }
.cookie-banner .btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.6rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.92rem; }

/* === Reveal motion === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
