:root {
  --color-primary: #7C3AED;
  --color-secondary: #A78BFA;
  --color-accent: #22C55E;
  --color-neutral-dark: #4C1D95;
  --color-neutral-light: #FAF5FF;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 2px 20px rgba(76, 29, 149, 0.06);
  --shadow-lift: 0 24px 60px -20px rgba(76, 29, 149, 0.28);
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-neutral-dark);
  background: var(--color-neutral-light);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--color-neutral-dark); }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 1rem; color: var(--color-neutral-dark); }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* === Header / Nav === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 255, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(76, 29, 149, 0.08);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(250, 245, 255, 0.92);
  box-shadow: 0 6px 24px -12px rgba(76, 29, 149, 0.18);
}
.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle {
  background: transparent;
  border: 0;
  width: 44px; height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span { display: block; height: 2px; background: var(--color-neutral-dark); border-radius: 2px; transition: transform .2s; }
.primary-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--color-neutral-light);
  padding: 1rem 1.25rem 1.5rem;
  flex-direction: column;
  gap: .75rem;
  border-bottom: 1px solid rgba(76, 29, 149, 0.08);
  box-shadow: 0 20px 40px -20px rgba(76, 29, 149, 0.2);
}
.primary-nav.is-open { display: flex; }
.primary-nav a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  padding: .5rem 0;
  position: relative;
}
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
.nav-cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: var(--color-neutral-light) !important;
  padding: .625rem 1.125rem !important;
  border-radius: 999px;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 900px) {
  .site-header__inner { padding: 1rem 2rem; }
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .primary-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--ease);
  }
  .primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
  .nav-cta::after { display: none !important; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: .875rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  text-align: center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
}
.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: var(--color-neutral-light);
  box-shadow: 0 12px 30px -12px rgba(124, 58, 237, 0.6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(124, 58, 237, 0.7); color: var(--color-neutral-light); }
.btn--ghost {
  background: transparent;
  color: var(--color-neutral-dark);
  border: 1.5px solid rgba(76, 29, 149, 0.2);
}
.btn--ghost:hover { border-color: var(--color-primary); color: var(--color-primary); transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--color-secondary); outline-offset: 3px; }

/* === Hero === */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 1.25rem 4rem;
  background: linear-gradient(180deg, var(--color-neutral-light) 0%, #F3E8FF 100%);
}
.hero--inner { padding-top: 2.5rem; }
.hero__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, rgba(124, 58, 237, 0) 60%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}
.eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 1rem;
}
.hero h1 { max-width: 22ch; margin: 0 auto 1.25rem; }
.hero__sub {
  max-width: 52ch;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  color: rgba(76, 29, 149, 0.75);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-bottom: 3rem; }
.hero__visual {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  max-width: 960px;
  margin: 0 auto;
}
.hero__visual img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

@media (min-width: 768px) {
  .hero { padding: 5rem 2rem 6rem; }
  .hero__sub { font-size: 1.25rem; }
}

/* === Sections === */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}
.section__head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section__head p { color: rgba(76, 29, 149, 0.72); font-size: 1.05rem; }

@media (min-width: 768px) {
  .section { padding: 6rem 2rem; }
}

/* === Grid / Cards === */
.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--color-neutral-light);
  border: 1px solid rgba(76, 29, 149, 0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.14), rgba(167, 139, 250, 0.18));
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: .5rem; }
.card p { color: rgba(76, 29, 149, 0.78); font-size: 0.975rem; margin: 0; }

.card--step { position: relative; padding-top: 2.25rem; }
.step__num {
  position: absolute;
  top: -18px; left: 1.75rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: var(--color-neutral-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 10px 24px -10px rgba(124, 58, 237, 0.6);
}

/* === Stats === */
.stats { text-align: center; }
.stat { padding: 1.5rem; }
.stat__num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-accent);
  margin-bottom: .5rem;
  letter-spacing: -0.02em;
}
.stat p { color: rgba(76, 29, 149, 0.72); font-size: 0.975rem; margin: 0; }

/* === Split === */
.split {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .split--reverse .split__text { order: 2; }
  .split--reverse .split__image { order: 1; }
}
.split--single { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }
.split__text .lede { font-size: 1.15rem; color: rgba(76, 29, 149, 0.75); margin-bottom: 1rem; }
.split__image { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); }
.split__image img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
@media (min-width: 900px) { .split__image img { aspect-ratio: 5 / 6; } }

/* === Quote === */
.section--quote { max-width: 900px; }
.quote {
  margin: 0;
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(76, 29, 149, 0.08);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.quote::before {
  content: "„";
  display: block;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-secondary);
  margin-bottom: -1.5rem;
}
.quote p {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--color-neutral-dark);
  font-family: var(--font-heading);
  font-weight: 500;
  max-width: 60ch;
  margin: 0 auto 1.25rem;
}
.quote cite {
  display: block;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--color-primary);
  font-weight: 500;
}

/* === CTA band === */
.cta-band {
  padding: 4rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}
.cta-band__inner {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: 3rem 1.75rem;
  text-align: center;
  box-shadow: 0 30px 60px -20px rgba(76, 29, 149, 0.4);
  position: relative;
  overflow: hidden;
}
.cta-band__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.18), transparent 50%);
  pointer-events: none;
}
.cta-band__inner > * { position: relative; }
.cta-band__inner h2 { color: var(--color-neutral-light); max-width: 22ch; margin: 0 auto 1rem; }
.cta-band__inner p { color: rgba(250, 245, 255, 0.85); margin: 0 auto 1.75rem; max-width: 50ch; }
.cta-band .btn--primary {
  background: var(--color-neutral-light);
  color: var(--color-neutral-dark);
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.3);
}
.cta-band .btn--primary:hover { color: var(--color-primary); }

@media (min-width: 768px) {
  .cta-band__inner { padding: 4rem 3rem; }
}

/* === FAQ === */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq details {
  background: var(--color-neutral-light);
  border: 1px solid rgba(76, 29, 149, 0.1);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow .2s;
}
.faq details[open] { box-shadow: var(--shadow-lift); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-neutral-dark);
  list-style: none;
  padding-right: 2rem;
  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 .2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: .75rem; color: rgba(76, 29, 149, 0.8); font-size: 0.975rem; }

/* === Form === */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--color-neutral-light);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(76, 29, 149, 0.08);
  box-shadow: var(--shadow-soft);
}
@media (min-width: 640px) { .contact-form { padding: 2.5rem; } }
.field { display: flex; flex-direction: column; gap: .375rem; }
.field label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.925rem;
  color: var(--color-neutral-dark);
}
.field input, .field textarea {
  font: inherit;
  padding: .75rem .875rem;
  border-radius: 10px;
  border: 1.5px solid rgba(76, 29, 149, 0.15);
  background: #fff;
  color: var(--color-neutral-dark);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
}

/* === Hours list === */
.hours { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-direction: column; gap: .5rem; }
.hours li { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 1px dashed rgba(76, 29, 149, 0.15); font-size: 0.975rem; }
.hours li:last-child { border-bottom: 0; }
.hours span:last-child { color: var(--color-primary); font-weight: 500; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(250, 245, 255, 0.85);
  padding: 3.5rem 1.25rem 2rem;
  margin-top: 4rem;
}
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .site-footer__inner { grid-template-columns: 1.4fr 1fr 1.2fr; padding: 0 1rem; } }
.site-footer h3 { color: var(--color-neutral-light); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.site-footer .logo img { height: 64px; }
.site-footer .tagline { color: rgba(250, 245, 255, 0.7); margin-top: 1rem; max-width: 32ch; }
.site-footer nav { display: flex; flex-direction: column; gap: .5rem; }
.site-footer nav a, .site-footer address a { color: rgba(250, 245, 255, 0.85); }
.site-footer nav a:hover, .site-footer address a:hover, .legal-links a:hover { color: var(--color-secondary); }
.site-footer address { font-style: normal; line-height: 1.7; }
.legal-links { margin-top: 1rem; font-size: 0.9rem; color: rgba(250, 245, 255, 0.6); }
.legal-links a { color: rgba(250, 245, 255, 0.75); }
.copyright { max-width: 1200px; margin: 3rem auto 0; padding: 1.5rem 1rem 0; border-top: 1px solid rgba(250, 245, 255, 0.12); text-align: center; font-size: 0.875rem; color: rgba(250, 245, 255, 0.6); }

/* === 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: 0 30px 60px -20px rgba(0,0,0,0.4);
  max-width: 560px;
}
@media (min-width: 640px) { .cookie-banner { left: auto; right: 1.5rem; bottom: 1.5rem; } }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.925rem; color: rgba(250, 245, 255, 0.9); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner button {
  font: inherit;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(250, 245, 255, 0.2);
  background: transparent;
  color: var(--color-neutral-light);
  cursor: pointer;
  transition: background .2s;
}
.cookie-banner button:hover { background: rgba(250, 245, 255, 0.1); }
.cookie-banner [data-cookie-accept] {
  background: var(--color-accent);
  color: var(--color-neutral-dark);
  border-color: var(--color-accent);
}
.cookie-banner [data-cookie-accept]:hover { background: #16a34a; }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.cookie-banner__prefs label { font-size: 0.9rem; display: inline-flex; align-items: center; gap: .5rem; }
.cookie-banner__prefs [data-cookie-save] { margin-top: .5rem; align-self: flex-start; background: var(--color-primary); border-color: var(--color-primary); }

/* === Scroll reveal === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .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; } }
