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

/* === 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;
}
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; color: var(--color-neutral-dark); }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.625rem, 3vw, 2.25rem); margin: 0 0 1rem; }
h3 { font-size: 1.25rem; margin: 0 0 .75rem; }
h4 { font-size: 1rem; margin: 0 0 .75rem; }
p { margin: 0 0 1rem; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--color-neutral-dark); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; }
.container.narrow { max-width: 760px; }

/* === Header === */
.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 var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { background: rgba(250, 245, 255, 0.92); box-shadow: var(--shadow-sm); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1160px; margin: 0 auto; padding: .75rem 1.25rem;
  gap: 1rem;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; }
@media (min-width: 768px) { .logo img { height: 96px; } }

.site-nav { display: none; gap: 1.75rem; align-items: center; }
.site-nav a {
  font-family: var(--font-heading); font-weight: 600; font-size: .95rem;
  color: var(--color-neutral-dark); position: relative; padding: .25rem 0;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--color-primary); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; justify-content: center;
  width: 44px; height: 44px; padding: 10px; background: transparent;
  border: 1px solid rgba(76, 29, 149, 0.15); border-radius: 10px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--color-neutral-dark); border-radius: 2px; }
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav { display: flex; }
}
.site-nav.is-open {
  display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--color-neutral-light); padding: 1.25rem; gap: 1rem;
  border-bottom: 1px solid rgba(76, 29, 149, 0.08); box-shadow: var(--shadow-md);
}

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

/* === Hero card === */
.hero { position: relative; padding: 3rem 1.25rem 4rem; overflow: hidden; }
@media (min-width: 768px) { .hero { padding: 5rem 1.25rem 6rem; } }
.hero-card__inner {
  position: relative;
  max-width: 880px; margin: 0 auto;
  padding: 2.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 1;
}
@media (min-width: 768px) { .hero-card__inner { padding: 4rem 3.5rem; } }
.hero-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(600px circle at 20% 20%, rgba(124, 58, 237, 0.18), transparent 60%),
    radial-gradient(500px circle at 80% 70%, rgba(34, 197, 94, 0.12), transparent 60%),
    linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(76, 29, 149, 0.08));
}
.eyebrow {
  font-family: var(--font-heading); font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--color-primary); margin: 0 0 1rem;
}
.hero-card__inner h1 { max-width: 28ch; margin: 0 auto 1.25rem; }
.lede { font-size: 1.15rem; color: rgba(76, 29, 149, 0.78); max-width: 52ch; margin: 0 auto 1.75rem; }
.hero-card__ctas { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-bottom: 2rem; }
.hero-card__image {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-md);
}

/* === Sections === */
.section { padding: 3.5rem 1.25rem; }
@media (min-width: 768px) { .section { padding: 5rem 1.25rem; } }
.section.intro { text-align: center; }
.section.intro p { font-size: 1.05rem; color: rgba(76, 29, 149, 0.85); }

/* === Highlights grid === */
.highlights h2 { text-align: center; margin-bottom: 2.5rem; }
.grid { display: grid; gap: 1.25rem; 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: #fff; border: 1px solid rgba(124, 58, 237, 0.1); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .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: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(34, 197, 94, 0.12));
  color: var(--color-primary); margin-bottom: 1rem;
}
.card p { color: rgba(76, 29, 149, 0.8); margin: 0; font-size: .95rem; }

/* === Testimonial === */
.testimonial blockquote {
  margin: 0; padding: 2.5rem 1.5rem; text-align: center;
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid rgba(124, 58, 237, 0.1); box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial blockquote::before {
  content: "“"; position: absolute; top: -.5rem; left: 1.5rem;
  font-family: var(--font-heading); font-size: 5rem; color: var(--color-secondary); line-height: 1;
}
.testimonial blockquote p { font-size: 1.15rem; font-style: italic; color: var(--color-neutral-dark); margin: 0 0 1.25rem; }
.testimonial cite { font-style: normal; font-weight: 600; color: var(--color-primary); font-family: var(--font-heading); font-size: .95rem; }

/* === CTA band === */
.cta-band { padding: 3.5rem 1.25rem; }
.cta-band .container {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff; border-radius: var(--radius-lg); padding: 3rem 1.75rem; text-align: center;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.cta-band .container::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px circle at 80% 30%, rgba(34, 197, 94, 0.22), transparent 60%);
  pointer-events: none;
}
.cta-band h2, .cta-band p { color: #fff; position: relative; }
.cta-band .btn-primary {
  background: var(--color-accent); color: #052e16;
  box-shadow: 0 10px 30px -10px rgba(34, 197, 94, 0.55);
  position: relative;
}
.cta-band .btn-primary:hover { color: #052e16; }

/* === FAQ === */
.faq h2 { text-align: center; margin-bottom: 2rem; }
.faq details {
  background: #fff; border: 1px solid rgba(124, 58, 237, 0.1); border-radius: var(--radius);
  padding: 1.1rem 1.25rem; margin-bottom: .75rem; transition: box-shadow .2s var(--ease);
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark);
  list-style: none; 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); font-weight: 400;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: .75rem 0 0; color: rgba(76, 29, 149, 0.85); font-size: .95rem; }

/* === Contact form === */
.contact-form form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: flex; flex-direction: column; gap: .4rem; }
.form-row label { font-family: var(--font-heading); font-weight: 600; font-size: .9rem; color: var(--color-neutral-dark); }
.form-row input, .form-row textarea {
  font: inherit; padding: .85rem 1rem; border-radius: 12px;
  border: 1px solid rgba(124, 58, 237, 0.2); background: #fff; color: var(--color-neutral-dark);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}
.form-consent { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: rgba(76, 29, 149, 0.9); }
.form-consent input { margin-top: .25rem; }
.form-success { color: var(--color-accent); font-weight: 600; margin-top: 1rem; }

/* === Contact band === */
.contact-band__inner {
  display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: center;
  background: #fff; border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: var(--radius-lg); padding: 2.25rem 1.75rem; box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) { .contact-band__inner { grid-template-columns: 1.2fr 1fr; padding: 3rem; } }
.contact-band__inner img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-sm); }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark); color: #e9d5ff;
  padding: 3rem 1.25rem 1.5rem; margin-top: 2rem;
}
.footer-grid {
  display: grid; gap: 2rem; grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.4fr; } }
.site-footer h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.site-footer .logo img { filter: brightness(1.2) invert(1); height: 60px; }
.site-footer .tagline { color: #c4b5fd; font-size: .95rem; margin-top: .75rem; }
.site-footer nav { display: flex; flex-direction: column; gap: .5rem; }
.site-footer a { color: #e9d5ff; }
.site-footer a:hover { color: #fff; }
.site-footer address { font-style: normal; font-size: .95rem; line-height: 1.7; margin-bottom: 1rem; }
.legal-links { display: flex; flex-direction: column; gap: .35rem; font-size: .85rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.copyright { text-align: center; margin: 2.5rem 0 0; font-size: .85rem; color: #c4b5fd; }

/* === Cookie banner === */
.consent-panel {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem;
  display: none; z-index: 9999;
  background: var(--color-neutral-dark); color: var(--color-neutral-light);
  border-radius: var(--radius); padding: 1.25rem;
  box-shadow: var(--shadow-lg); max-width: 640px; margin-left: auto; margin-right: auto;
}
.consent-panel.is-visible { display: block; }
.consent-panel p { margin: 0 0 .9rem; font-size: .9rem; }
.consent-panel__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.consent-panel button {
  font: inherit; font-family: var(--font-heading); font-weight: 600; font-size: .85rem;
  padding: .55rem 1rem; border-radius: 999px; border: 0; cursor: pointer;
  background: rgba(255, 255, 255, 0.12); color: var(--color-neutral-light);
  transition: background .2s var(--ease);
}
.consent-panel button:hover { background: rgba(255, 255, 255, 0.2); }
.consent-panel [data-cookie-accept] { background: var(--color-accent); color: #052e16; }
.consent-panel [data-cookie-accept]:hover { background: #16a34a; color: #052e16; }
.consent-panel__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; font-size: .9rem; }
.consent-panel__prefs label { display: flex; align-items: center; gap: .5rem; }

/* === 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; } }

.reveal, [data-reveal], .fade-in, .animate-in { opacity: 1 !important; transform: none !important; visibility: visible !important; }
