:root {
  --color-primary: #8B5CF6;
  --color-secondary: #C4B5FD;
  --color-accent: #10B981;
  --color-neutral-dark: #4C1D95;
  --color-neutral-light: #FAF5FF;
  --color-text: #1F1147;
  --color-muted: #5B4A8A;
  --color-border: rgba(76, 29, 149, 0.12);
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-lg: 20px;
  --radius-md: 14px;
  --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);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* === Layout === */
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: 780px; }
.section { padding-block: 4rem; }
.section-head { text-align: center; max-width: 640px; margin-inline: auto; margin-bottom: 2.5rem; }
.section-head p { color: var(--color-muted); }
.eyebrow { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; font-weight: 600; color: var(--color-primary); margin: 0 0 1rem; }

/* === Header === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 245, 255, 0.7);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--color-border);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { background: rgba(250, 245, 255, 0.92); box-shadow: 0 6px 24px -12px rgba(76,29,149,.2); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .75rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) { .logo img { height: 96px; } }
.nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: transparent; border: 1px solid var(--color-border); color: var(--color-neutral-dark); cursor: pointer; }
.primary-nav { display: none; }
.primary-nav.is-open { display: block; position: absolute; left: 0; right: 0; top: 100%; background: var(--color-neutral-light); border-bottom: 1px solid var(--color-border); padding: 1rem 1.25rem; box-shadow: var(--shadow-md); }
.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.primary-nav a { display: block; padding: .6rem .75rem; border-radius: 10px; font-weight: 500; color: var(--color-neutral-dark); }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { background: rgba(139, 92, 246, 0.1); color: var(--color-primary); }
.primary-nav .nav-cta { background: var(--color-primary); color: #fff; text-align: center; }
.primary-nav .nav-cta:hover { background: var(--color-neutral-dark); color: #fff; }
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: block !important; position: static; background: transparent; border: 0; box-shadow: none; padding: 0; }
  .primary-nav ul { flex-direction: row; align-items: center; gap: .25rem; }
  .primary-nav a { padding: .5rem .85rem; font-size: .95rem; }
  .primary-nav .nav-cta { margin-left: .5rem; padding: .55rem 1.1rem; }
}

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem 1.5rem; border-radius: 999px; font-family: var(--font-heading); font-weight: 600; font-size: .95rem; cursor: pointer; border: 1px solid transparent; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease); text-align: center; }
.btn--primary { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; box-shadow: 0 10px 24px -10px rgba(139, 92, 246, .6); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(139, 92, 246, .7); color: #fff; }
.btn--ghost { background: transparent; color: var(--color-neutral-dark); border-color: var(--color-border); }
.btn--ghost:hover { background: rgba(139, 92, 246, .08); transform: translateY(-2px); }
.btn--sm { padding: .5rem 1rem; font-size: .85rem; }
.btn:focus-visible { outline: 3px solid var(--color-secondary); outline-offset: 2px; }

/* === Hero === */
.hero { position: relative; padding-block: 4rem 3rem; text-align: center; overflow: hidden; }
.hero-glow { position: absolute; inset: 0; pointer-events: none; z-index: 0; background: radial-gradient(60% 50% at 50% 20%, rgba(139, 92, 246, 0.18), transparent 70%), radial-gradient(40% 40% at 80% 60%, rgba(16, 185, 129, 0.10), transparent 70%); }
.hero .container { position: relative; z-index: 1; }
.hero__title { font-size: clamp(2.25rem, 5vw, 4rem); max-width: 22ch; margin-inline: auto; }
.hero__sub { max-width: 52ch; margin: 1rem auto 2rem; color: var(--color-muted); font-size: clamp(1rem, 1.4vw, 1.15rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-bottom: 3rem; }
.hero__image { max-width: 1000px; margin-inline: auto; }
.hero__image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 16/10; object-fit: cover; }
@media (min-width: 768px) { .hero { padding-block: 6rem 4rem; } }

.proof-strip { list-style: none; margin: 3rem 0 0; padding: 1rem 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 2.5rem; color: var(--color-muted); font-family: var(--font-heading); font-weight: 600; letter-spacing: .06em; font-size: .85rem; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }

/* === Intro / narrow === */
.intro { text-align: center; }
.intro .narrow p { color: var(--color-muted); font-size: 1.05rem; }

/* === Grids & cards === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
.card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); display: block; color: inherit; }
.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(139, 92, 246, .15), rgba(16, 185, 129, .12)); color: var(--color-primary); margin-bottom: 1rem; }
.card h3 { color: var(--color-neutral-dark); }
.card p { color: var(--color-muted); margin: 0; font-size: .95rem; }
.card-link { text-decoration: none; }
.card-link:hover h3 { color: var(--color-primary); }

/* === Testimonials === */
.testimonial blockquote { margin: 0; padding: 2rem; background: #fff; border-radius: var(--radius-lg); border-left: 4px solid var(--color-primary); box-shadow: var(--shadow-sm); position: relative; }
.testimonial blockquote p { font-size: 1.15rem; line-height: 1.6; color: var(--color-text); font-style: italic; }
.testimonial cite { display: block; margin-top: 1rem; font-family: var(--font-heading); font-weight: 600; font-style: normal; color: var(--color-primary); font-size: .95rem; }

/* === CTA band === */
.cta-band { padding-block: 4rem; text-align: center; background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(40% 60% at 50% 0%, rgba(16, 185, 129, .35), transparent 70%); pointer-events: none; }
.cta-band .container { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.88); max-width: 52ch; margin: 0 auto 1.5rem; }
.cta-band .btn--primary { background: #fff; color: var(--color-neutral-dark); box-shadow: 0 12px 30px -10px rgba(0,0,0,.35); }
.cta-band .btn--primary:hover { color: var(--color-primary); }

/* === Pricing === */
.pricing-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .pricing-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.pricing-card { position: relative; background: #fff; border: 1px solid var(--color-border); border-radius: 16px; padding: 2.25rem 1.75rem; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card--featured { border-color: var(--color-accent); border-width: 2px; box-shadow: var(--shadow-md); }
.pricing-card__badge { position: absolute; top: -12px; right: 1.25rem; background: var(--color-accent); color: #fff; padding: .3rem .75rem; border-radius: 999px; font-family: var(--font-heading); font-weight: 600; font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; }
.pricing-card__plan { font-size: 1.25rem; color: var(--color-neutral-dark); margin-bottom: .5rem; }
.pricing-card__price { font-family: var(--font-heading); font-weight: 700; color: var(--color-primary); font-size: clamp(2rem, 4vw, 2.75rem); margin: 0 0 .5rem; line-height: 1.1; }
.pricing-card__lede { color: var(--color-muted); font-size: .95rem; margin-bottom: 1.25rem; }
.pricing-card__features { list-style: none; padding: 0; margin: 0 0 1.75rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.pricing-card__features li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; color: var(--color-text); }
.pricing-card__features span { color: var(--color-accent); font-weight: 700; }
.pricing-card__cta { width: 100%; }

/* === FAQ === */
.faq details { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1rem 1.25rem; margin-bottom: .75rem; 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); transition: transform .2s var(--ease); }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: .75rem; color: var(--color-muted); }

/* === Contact === */
.contact-layout { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 860px) { .contact-layout { grid-template-columns: 1fr 1.4fr; } }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { padding: .65rem 0; border-bottom: 1px solid var(--color-border); text-align: left; font-size: .95rem; }
.hours-table th { color: var(--color-neutral-dark); font-weight: 600; }
.hours-table td { color: var(--color-muted); text-align: right; }
.contact-form { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
.field { display: flex; flex-direction: column; margin-bottom: 1rem; }
.field label { font-family: var(--font-heading); font-weight: 600; font-size: .85rem; color: var(--color-neutral-dark); margin-bottom: .35rem; }
.field input, .field textarea { font-family: var(--font-body); font-size: 1rem; padding: .75rem .9rem; border: 1px solid var(--color-border); border-radius: 10px; background: var(--color-neutral-light); color: var(--color-text); transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(139, 92, 246, .2); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(255,255,255,.85); padding-block: 3rem 1.5rem; margin-top: 4rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: .75rem; }
.site-footer a { color: rgba(255,255,255,.85); }
.site-footer a:hover { color: #fff; }
.site-footer .tagline { color: rgba(255,255,255,.7); margin-top: .5rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .35rem; }
.site-footer address { font-style: normal; line-height: 1.7; color: rgba(255,255,255,.85); }
.legal-links { margin-top: 1rem; font-size: .85rem; opacity: .8; }
.copyright { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.15); font-size: .85rem; color: rgba(255,255,255,.7); }
.logo--footer img { filter: brightness(0) invert(1); }

/* === 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 20px 60px -10px rgba(0,0,0,.4); max-width: 640px; }
@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: .9rem; line-height: 1.5; color: rgba(255,255,255,.9); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions .btn--primary { background: var(--color-accent); color: #fff; box-shadow: none; }
.cookie-banner__actions .btn--primary:hover { background: #0ea371; color: #fff; }
.cookie-banner__actions .btn--ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.cookie-banner__actions .btn--ghost:hover { background: rgba(255,255,255,.1); }
.cookie-banner__prefs { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.15); display: flex; flex-direction: column; gap: .5rem; }
.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; }

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