:root {
  --color-primary: #8B5CF6;
  --color-secondary: #C4B5FD;
  --color-accent: #10B981;
  --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);
  --ease-hover: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 20px rgba(76, 29, 149, 0.06);
  --shadow-md: 0 10px 30px -10px rgba(76, 29, 149, 0.18);
  --shadow-lg: 0 30px 60px -25px rgba(76, 29, 149, 0.28);
  --radius: 16px;
  --radius-lg: 24px;
}

/* === Reset === */
*, *::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; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 1rem; }
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
p { margin: 0 0 1rem; }

/* === Layout === */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
.container.narrow { max-width: 760px; }
.section { padding: 4rem 0; }
.section--tinted { background: linear-gradient(180deg, rgba(196,181,253,0.18), rgba(250,245,255,0)); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 2.5rem; }
.section-head p { color: rgba(76,29,149,0.7); }
@media (min-width: 768px) { .section { padding: 6rem 0; } }

/* === Header / Nav === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  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 rgba(76,29,149,0.08);
  transition: background .25s var(--ease-hover), box-shadow .25s var(--ease-hover);
}
.site-header.scrolled { background: rgba(250,245,255,0.92); box-shadow: 0 4px 20px -10px rgba(76,29,149,0.15); }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: .75rem 1.25rem; gap: 1rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) { .logo img { height: 96px; } }
.logo--footer img { height: 72px; }
.primary-nav { display: none; }
.primary-nav a { color: var(--color-neutral-dark); font-weight: 500; font-size: .95rem; position: relative; padding: .25rem 0; }
.primary-nav a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--color-primary); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease-hover); }
.primary-nav a:hover { text-decoration: none; }
.primary-nav a:hover::after, .primary-nav a.is-active::after { transform: scaleX(1); }
.nav-toggle { display: inline-flex; background: transparent; border: 1px solid rgba(76,29,149,0.15); border-radius: 10px; padding: .5rem; color: var(--color-neutral-dark); cursor: pointer; }
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; gap: 2rem; }
}
.primary-nav.is-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); padding: 1.25rem; border-bottom: 1px solid rgba(76,29,149,0.1); gap: 1rem; }

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: .85rem 1.5rem; border-radius: 999px; font-family: var(--font-body); font-weight: 600; font-size: .95rem; border: 1px solid transparent; cursor: pointer; transition: transform .2s var(--ease-hover), box-shadow .2s var(--ease-hover), background .2s; text-decoration: none; }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; }
.btn--primary { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; box-shadow: 0 12px 24px -12px rgba(139,92,246,0.6); }
.btn--primary:hover { box-shadow: 0 18px 30px -12px rgba(139,92,246,0.7); }
.btn--accent { background: var(--color-accent); color: #fff; box-shadow: 0 12px 24px -12px rgba(16,185,129,0.55); }
.btn--accent:hover { box-shadow: 0 18px 30px -12px rgba(16,185,129,0.7); }
.btn--ghost { background: transparent; color: var(--color-neutral-light); border-color: rgba(250,245,255,0.35); }
.btn--ghost:hover { background: rgba(250,245,255,0.1); }
.btn--sm { padding: .55rem 1rem; font-size: .85rem; }

/* === Hero Card === */
.hero-card-section { padding: 3rem 0 4rem; position: relative; overflow: hidden; }
.hero-card-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(1000px 500px at 20% 0%, rgba(139,92,246,0.14), transparent 60%), radial-gradient(700px 400px at 90% 30%, rgba(16,185,129,0.10), transparent 60%); pointer-events: none; z-index: 0; }
.hero-card-section .container { position: relative; z-index: 1; }
.hero-card { max-width: 880px; margin: 0 auto; padding: 2.5rem 1.5rem; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid rgba(76,29,149,0.06); text-align: center; }
@media (min-width: 768px) { .hero-card { padding: 4rem 3.5rem; } }
.hero-card .eyebrow { display: inline-block; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--color-primary); background: rgba(139,92,246,0.1); padding: .35rem .85rem; border-radius: 999px; margin-bottom: 1.25rem; }
.hero-card h1 { margin: 0 0 1rem; max-width: 20ch; margin-inline: auto; }
.hero-sub { color: rgba(76,29,149,0.75); font-size: 1.125rem; max-width: 52ch; margin: 0 auto 1.75rem; }
.hero-cta { margin: 0 0 2.25rem; }
.hero-card__figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.hero-card__figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

/* === Proof strip === */
.proof-strip { max-width: 880px; margin: 2rem auto 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; font-size: .85rem; color: rgba(76,29,149,0.65); font-weight: 500; letter-spacing: 0.02em; }
.proof-strip span { position: relative; }

/* === Grid / Cards === */
.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(76,29,149,0.08); border-radius: var(--radius); padding: 1.75rem 1.5rem; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease-hover), box-shadow .25s var(--ease-hover); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: .5rem; }
.card p { color: rgba(76,29,149,0.75); font-size: .95rem; margin: 0; }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, rgba(139,92,246,0.14), rgba(16,185,129,0.14)); color: var(--color-primary); margin-bottom: 1.15rem; }

/* === Testimonial === */
.testimonial { margin: 0; padding: 2.5rem 1.5rem; text-align: center; border-left: 3px solid var(--color-accent); background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.testimonial p { font-family: var(--font-heading); font-size: 1.25rem; line-height: 1.5; color: var(--color-neutral-dark); font-weight: 500; margin-bottom: 1.25rem; }
.testimonial cite { font-style: normal; font-size: .9rem; color: rgba(76,29,149,0.65); font-weight: 500; }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-neutral-dark), var(--color-primary)); color: #fff; padding: 3.5rem 0; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(600px 300px at 80% 50%, rgba(16,185,129,0.25), transparent 60%); pointer-events: none; }
.cta-band__inner { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem; }
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: rgba(250,245,255,0.85); margin: 0; max-width: 55ch; }
@media (min-width: 768px) { .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 3rem; } }

/* === FAQ === */
.faq details { background: #fff; border: 1px solid rgba(76,29,149,0.08); border-radius: 12px; padding: 1rem 1.25rem; margin-bottom: .75rem; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-weight: 600; font-family: var(--font-heading); color: var(--color-neutral-dark); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::after { content: '+'; font-size: 1.5rem; color: var(--color-primary); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { content: '−'; }
.faq p { margin: .75rem 0 0; color: rgba(76,29,149,0.8); font-size: .95rem; }

/* === Contact form === */
.contact-form { display: flex; flex-direction: column; gap: 1.15rem; background: #fff; padding: 2rem 1.5rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid rgba(76,29,149,0.06); }
@media (min-width: 640px) { .contact-form { padding: 2.5rem; } }
.form-row { display: flex; flex-direction: column; gap: .4rem; }
.form-row label { font-weight: 500; font-size: .9rem; color: var(--color-neutral-dark); }
.form-row input, .form-row textarea { font: inherit; padding: .75rem .9rem; border: 1px solid rgba(76,29,149,0.18); border-radius: 10px; background: var(--color-neutral-light); color: var(--color-neutral-dark); transition: border-color .15s, box-shadow .15s; }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(139,92,246,0.18); }
.form-consent { display: flex; align-items: flex-start; gap: .6rem; font-size: .85rem; color: rgba(76,29,149,0.8); line-height: 1.5; }
.form-consent input { margin-top: .25rem; flex-shrink: 0; }
.form-consent a { color: var(--color-primary); text-decoration: underline; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(250,245,255,0.85); padding: 3.5rem 0 1.5rem; margin-top: 3rem; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; gap: 3rem; } }
.site-footer h4 { color: #fff; margin-bottom: 1rem; }
.footer__nav { display: flex; flex-direction: column; gap: .5rem; }
.footer__nav a, .footer__contact a { color: rgba(250,245,255,0.8); }
.footer__nav a:hover, .footer__contact a:hover { color: #fff; }
.footer__contact p { margin: 0 0 .4rem; font-size: .95rem; }
.footer__legal { margin-top: 1rem !important; font-size: .85rem; }
.footer__tag { color: rgba(250,245,255,0.7); font-size: .95rem; margin-top: .75rem; }
.footer__copy { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(250,245,255,0.12); font-size: .85rem; color: rgba(250,245,255,0.6); }
.logo--footer img { filter: brightness(0) invert(1); opacity: 0.95; }

/* === 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: var(--radius); padding: 1.25rem 1.35rem; box-shadow: var(--shadow-lg); max-width: 520px; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .9rem; color: rgba(250,245,255,0.9); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; font-size: .9rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; }
.cookie-banner__prefs button { margin-top: .5rem; align-self: flex-start; }

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

.disclaimer-bar { position: relative; z-index: 1000; background: #fdf7e8; border-bottom: 2px solid #c9a227; color: #4a4335; padding: 0.875rem 1.5rem; }
.disclaimer-bar p { max-width: 68rem; margin: 0 auto; font-size: 0.8125rem; line-height: 1.6; text-align: center; }
.disclaimer-bar strong { text-transform: uppercase; letter-spacing: 0.04em; }
.disclaimer-bar__icon { font-size: 1rem; }
