/* === Tokens === */
:root {
  --color-primary: #7C3AED;
  --color-secondary: #A78BFA;
  --color-accent: #22C55E;
  --color-neutral-dark: #4C1D95;
  --color-neutral-light: #FAF5FF;
  --color-ink: #1F1147;
  --color-muted: #5B4B85;
  --color-border: rgba(76, 29, 149, 0.12);
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 2px 20px rgba(31, 17, 71, 0.06);
  --shadow-md: 0 10px 30px -10px rgba(31, 17, 71, 0.18);
  --shadow-lg: 0 30px 60px -30px rgba(31, 17, 71, 0.35);
  --radius: 20px;
  --radius-sm: 12px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-neutral-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
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.75em; font-weight: 700; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }

/* === 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 var(--color-border);
  transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 245, 255, 0.92);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo img { height: 72px; width: auto; display: block; }
.logo:hover { text-decoration: none; }
.primary-nav { display: none; align-items: center; gap: 1.75rem; }
.primary-nav a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.35rem 0;
}
.primary-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 0.25s var(--ease);
}
.primary-nav a:hover { text-decoration: none; }
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav .nav-cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
}
.primary-nav .nav-cta::after { display: none; }
.primary-nav .nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav-toggle {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-neutral-dark);
  border-radius: 10px;
  padding: 0.4rem;
  cursor: pointer;
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; }
  .logo img { height: 96px; }
}
.primary-nav.is-open {
  display: flex;
  position: absolute;
  left: 0; right: 0; top: 100%;
  flex-direction: column;
  background: var(--color-neutral-light);
  padding: 1.25rem 1.5rem;
  gap: 1rem;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  font-family: inherit;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:focus-visible { outline: 3px solid var(--color-secondary); outline-offset: 3px; }
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--color-neutral-dark);
  border-color: var(--color-neutral-dark);
}
.btn-accent {
  background: var(--color-accent);
  color: #fff;
}

/* === Hero (hero-card) === */
.hero {
  position: relative;
  padding: 3rem 1.25rem 4rem;
  background:
    radial-gradient(ellipse at 15% 15%, rgba(167, 139, 250, 0.35), transparent 55%),
    radial-gradient(ellipse at 85% 85%, rgba(34, 197, 94, 0.12), transparent 55%),
    linear-gradient(180deg, #F3E8FF 0%, #FAF5FF 100%);
  overflow: hidden;
}
.hero-card__panel {
  max-width: 880px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  text-align: left;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.hero .sub {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 55ch;
  margin-bottom: 1.75rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.hero-card__figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-card__figure img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
@media (min-width: 768px) {
  .hero { padding: 5rem 1.5rem 6rem; }
  .hero-card__panel { padding: 4rem; }
}

/* === Sections === */
.section {
  padding: 4rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) { .section { padding: 5.5rem 1.5rem; } }
.section-head { max-width: 720px; margin: 0 auto 2.5rem; text-align: center; }
.section-head .sub { color: var(--color-muted); font-size: 1.05rem; }
.intro { max-width: 780px; text-align: center; }
.intro p { color: var(--color-ink); font-size: 1.05rem; }

/* === Cards grid === */
.cards-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .cards-grid.cards-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-grid.cards-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: block;
  color: inherit;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); text-decoration: none; }
.card-link { color: inherit; }
.card-link:hover h3 { color: var(--color-primary); }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(167, 139, 250, 0.2));
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.5rem; transition: color 0.2s var(--ease); }
.card p { color: var(--color-muted); font-size: 0.98rem; margin: 0; }

/* === Testimonial === */
.testimonial { text-align: center; max-width: 820px; }
.testimonial blockquote { margin: 0; }
.testimonial blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: var(--color-neutral-dark);
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 1rem;
}
.testimonial cite {
  font-style: normal;
  color: var(--color-muted);
  font-weight: 500;
}

/* === CTA band === */
.cta-band {
  margin: 3rem 1.25rem;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff;
  padding: 3rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band__inner { max-width: 720px; margin: 0 auto; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin-bottom: 1.5rem; }
@media (min-width: 768px) {
  .cta-band { margin: 4rem auto; max-width: 1140px; padding: 4rem 2rem; }
}

/* === FAQ === */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 0.75rem; }
.faq-list details {
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-neutral-dark);
  font-family: var(--font-heading);
  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.25rem;
  top: 0;
  font-size: 1.4rem;
  color: var(--color-primary);
  transition: transform 0.2s var(--ease);
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list p { margin: 0.75rem 0 0; color: var(--color-muted); }

/* === Contact form === */
.form-section .form-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .form-section .form-grid { grid-template-columns: 1.4fr 1fr; }
}
.contact-form {
  background: #fff;
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
  color: var(--color-neutral-dark);
}
.field input, .field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-ink);
  background: var(--color-neutral-light);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field 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;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--color-muted);
  margin: 1rem 0 1.25rem;
  line-height: 1.5;
}
.form-consent input { margin-top: 0.2rem; flex-shrink: 0; }
.contact-side {
  background: linear-gradient(160deg, #F3E8FF, #FAF5FF);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.contact-side h3 { margin-top: 0; }
.contact-side p { font-size: 0.95rem; }
.hours { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.hours th, .hours td { text-align: left; padding: 0.4rem 0; border-bottom: 1px solid var(--color-border); }
.hours th { color: var(--color-neutral-dark); font-weight: 500; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(250, 245, 255, 0.88);
  padding: 3.5rem 1.5rem 1.75rem;
  margin-top: 3rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; }
}
.site-footer h4 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.site-footer a { color: rgba(250, 245, 255, 0.85); }
.site-footer a:hover { color: #fff; }
.site-footer .logo-footer img { height: 72px; background: #fff; padding: 0.4rem 0.6rem; border-radius: 8px; }
.site-footer .tagline { color: rgba(250, 245, 255, 0.7); font-size: 0.95rem; margin-top: 1rem; max-width: 30ch; }
.site-footer address { font-style: normal; font-size: 0.92rem; margin-bottom: 1rem; }
.legal-links { border-top: 1px solid rgba(250, 245, 255, 0.15); padding-top: 1rem; margin-top: 1rem; font-size: 0.88rem; }
.copyright {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 245, 255, 0.15);
  font-size: 0.85rem;
  color: rgba(250, 245, 255, 0.65);
  text-align: center;
}

/* === 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);
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  max-width: 560px;
  margin-left: auto;
}
.consent-panel.is-visible { display: block; }
.consent-panel p { margin: 0 0 0.85rem; font-size: 0.92rem; line-height: 1.5; }
.consent-panel__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.consent-panel button {
  border: 1px solid rgba(250, 245, 255, 0.35);
  background: transparent;
  color: var(--color-neutral-light);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.consent-panel button:hover { background: rgba(250, 245, 255, 0.12); }
.consent-panel [data-cookie-accept] {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.consent-panel [data-cookie-accept]:hover { background: #16a34a; }
.consent-panel__prefs {
  margin-top: 1rem;
  display: grid;
  gap: 0.4rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(250, 245, 255, 0.15);
  font-size: 0.9rem;
}
.consent-panel__prefs label { display: flex; gap: 0.5rem; align-items: center; }
.consent-panel__prefs button {
  margin-top: 0.5rem;
  justify-self: start;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

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

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