:root {
  --color-primary: #7C3AED;
  --color-secondary: #A78BFA;
  --color-accent: #F97316;
  --color-neutral-dark: #4C1D95;
  --color-neutral-light: #FAF5FF;
  --text: #1F1240;
  --text-muted: #5B4E85;
  --border: rgba(76, 29, 149, 0.12);
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 18px;
  --shadow-sm: 0 2px 20px rgba(76, 29, 149, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(76, 29, 149, 0.22);
  --shadow-lg: 0 30px 60px -25px rgba(76, 29, 149, 0.35);
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--color-neutral-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 .75rem; }
h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1rem; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: 780px; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: .78rem; font-weight: 600; color: var(--color-primary); margin-bottom: .75rem; }
.body-lead { font-size: 1.075rem; color: var(--text); }

/* === Header / Nav === */
.site-header {
  position: sticky; top: 0; z-index: 50;
  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 var(--border);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(250, 245, 255, 0.92); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .85rem; }
.logo { display: inline-block; line-height: 0; }
.logo img { height: 72px; width: auto; }
.nav-toggle { background: none; border: 0; color: var(--color-neutral-dark); cursor: pointer; padding: .5rem; border-radius: 8px; }
.nav-toggle:hover { background: rgba(124, 58, 237, 0.08); }
.primary-nav { display: none; flex-direction: column; gap: .25rem; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); padding: 1rem 1.25rem 1.5rem; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.primary-nav.is-open { display: flex; }
.primary-nav a { position: relative; color: var(--color-neutral-dark); font-weight: 500; padding: .6rem 0; text-decoration: none; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
.primary-nav .nav-cta { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; padding: .55rem 1.1rem; border-radius: 999px; text-align: center; margin-top: .5rem; }

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

/* === Buttons === */
.btn { display: inline-block; font-family: var(--font-heading); font-weight: 600; padding: .95rem 1.6rem; border-radius: 999px; text-decoration: none; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .25s ease; border: 0; cursor: pointer; font-size: 1rem; }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; box-shadow: 0 8px 24px -8px rgba(124, 58, 237, 0.55); }
.btn-primary:hover { box-shadow: 0 14px 30px -8px rgba(124, 58, 237, 0.7); }
.btn-accent { background: var(--color-accent); color: #fff; box-shadow: 0 8px 24px -8px rgba(249, 115, 22, 0.5); }
.btn-ghost { background: transparent; color: var(--color-neutral-dark); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; border-radius: 4px; }

/* === Hero (centered) === */
.hero {
  position: relative;
  padding-block: 3.5rem 3rem;
  text-align: center;
  background:
    radial-gradient(1000px 500px at 50% -10%, rgba(249, 115, 22, 0.12), transparent 60%),
    radial-gradient(700px 400px at 10% 20%, rgba(167, 139, 250, 0.28), transparent 60%),
    linear-gradient(180deg, #F5EDFF 0%, var(--color-neutral-light) 100%);
  overflow: hidden;
}
.hero h1 { max-width: 22ch; margin-inline: auto; }
.hero-sub { max-width: 54ch; margin: 1rem auto 1.75rem; font-size: 1.15rem; color: var(--text-muted); }
.hero-cta { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-visual { margin-top: 2rem; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); max-width: 960px; margin-inline: auto; }
.hero-visual img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
@media (min-width: 768px) { .hero { padding-block: 6rem 5rem; } }

/* === Sections === */
.section { padding-block: 4rem; }
.section.alt { background: #fff; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head p { color: var(--text-muted); }

/* === Grid & Cards === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: #fff;
  border: 1px solid var(--border);
  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 p { color: var(--text-muted); margin: 0; }
.card h3 { margin-bottom: .5rem; }
.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(249, 115, 22, 0.14)); color: var(--color-primary); margin-bottom: 1rem; }

/* === Split (intro + image) === */
.split { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: center; }
.split-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr 1fr; gap: 4rem; } }

/* === Testimonial === */
.testimonial .quote { max-width: 780px; margin-inline: auto; text-align: center; font-size: 1.2rem; font-style: italic; color: var(--color-neutral-dark); border: 0; padding: 0; }
.testimonial .quote p { position: relative; padding: 0 1rem; }
.testimonial .quote cite { display: block; font-style: normal; font-size: .95rem; color: var(--text-muted); margin-top: 1rem; font-weight: 500; }

/* === Stats === */
.stats { background: linear-gradient(135deg, var(--color-neutral-dark), var(--color-primary)); color: #fff; border-radius: 24px; margin: 0 1rem; padding: 3rem 1rem; }
.stats .stat { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(8px); padding: 1.75rem; border-radius: var(--radius); }
.stats .stat p { color: rgba(255,255,255,0.85); }
.stat-value { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--color-accent); margin-bottom: .5rem; }
@media (min-width: 900px) { .stats { margin-inline: auto; max-width: 1180px; padding: 4rem; } }

/* === CTA band === */
.cta-band { margin: 3rem 1rem; padding: 2.5rem; border-radius: 24px; background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: rgba(255,255,255,0.9); margin: 0; }
.cta-inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.contact-line { margin-top: .75rem; font-size: .95rem; color: rgba(255,255,255,0.8); }
@media (min-width: 800px) { .cta-band { margin-inline: auto; max-width: 1120px; padding: 3.5rem; } .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; } }

/* === FAQ === */
.faq-list details { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 1rem 1.25rem; margin-bottom: .75rem; transition: box-shadow .2s ease; }
.faq-list details[open] { box-shadow: var(--shadow-sm); }
.faq-list summary { font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark); cursor: pointer; list-style: none; position: relative; padding-right: 2rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: -2px; font-size: 1.5rem; color: var(--color-primary); transition: transform .2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { margin: .75rem 0 0; color: var(--text-muted); }

/* === Contact === */
.contact-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.contact-info { background: #fff; padding: 2rem; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.contact-info p { color: var(--text-muted); }
.contact-info strong { color: var(--color-neutral-dark); font-family: var(--font-heading); }
.contact-form { background: #fff; padding: 2rem; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem; }
.contact-form label { display: flex; flex-direction: column; gap: .35rem; font-size: .9rem; font-weight: 500; color: var(--color-neutral-dark); }
.contact-form input, .contact-form textarea { font: inherit; padding: .75rem .9rem; border: 1px solid var(--border); border-radius: 10px; background: var(--color-neutral-light); color: var(--text); transition: border-color .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form textarea:focus { outline: 0; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.18); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-consent { flex-direction: row !important; align-items: flex-start; gap: .55rem; font-weight: 400; color: var(--text-muted); font-size: .85rem; }
.form-consent input { margin-top: .2rem; }
.contact-form .btn { align-self: flex-start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(250, 245, 255, 0.85); padding: 3.5rem 0 1.5rem; margin-top: 4rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.site-footer a { color: rgba(250, 245, 255, 0.85); }
.site-footer a:hover { color: var(--color-accent); text-decoration: none; }
.footer-logo img { height: 64px; filter: brightness(0) invert(1); }
.tagline { color: rgba(250, 245, 255, 0.7); margin-top: .75rem; }
.footer-nav { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a { display: block; }
.footer-contact p { margin: 0 0 .4rem; }
.legal-links { margin-top: 1rem !important; font-size: .85rem; }
.copy { border-top: 1px solid rgba(250, 245, 255, 0.12); padding-top: 1.25rem; margin-top: 2.5rem; font-size: .85rem; color: rgba(250, 245, 255, 0.6); }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1.4fr; gap: 3rem; } }

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

/* === 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); border-radius: 16px; padding: 1.25rem 1.5rem; box-shadow: var(--shadow-lg); max-width: 720px; margin-inline: auto; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .92rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner button { font: inherit; font-family: var(--font-heading); font-weight: 600; padding: .55rem 1.1rem; border-radius: 999px; border: 1px solid rgba(250, 245, 255, 0.3); background: transparent; color: var(--color-neutral-light); cursor: pointer; font-size: .88rem; }
.cookie-banner button[data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.cookie-banner button:hover { border-color: var(--color-accent); }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; padding-top: 1rem; border-top: 1px solid rgba(250, 245, 255, 0.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: .5rem; }
