:root {
  --color-primary: #7C3AED;
  --color-secondary: #A78BFA;
  --color-accent: #06B6D4;
  --color-neutral-dark: #1E1B4B;
  --color-neutral-light: #FAF5FF;
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 2px 20px rgba(30, 27, 75, 0.08);
  --shadow-hover: 0 20px 60px -20px rgba(30, 27, 75, 0.25);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-neutral-dark);
  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; }
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.75rem); font-weight: 700; }
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; }

/* === Layout === */
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }
.container.narrow { max-width: 780px; }
.section { padding-block: 4rem; }
.section--tinted { background: linear-gradient(180deg, rgba(167,139,250,0.08), rgba(6,182,212,0.05)); }
.section__sub { color: var(--color-primary); font-weight: 500; margin-top: -0.5rem; }
.section__body { font-size: 1.0625rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.75rem; font-weight: 600; color: var(--color-accent); margin: 0 0 1rem; }

/* === 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 rgba(30, 27, 75, 0.08); transition: box-shadow .3s var(--ease), background .3s var(--ease); }
.site-header.scrolled { background: rgba(250, 245, 255, 0.92); box-shadow: 0 4px 20px rgba(30, 27, 75, 0.08); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; max-width: 1280px; margin-inline: auto; padding: 0.75rem 1.25rem; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle { background: transparent; border: 0; width: 44px; height: 44px; padding: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; cursor: pointer; }
.nav-toggle__bar { display: block; width: 22px; height: 2px; background: var(--color-neutral-dark); border-radius: 2px; transition: transform .2s; }
.primary-nav { display: none; flex-direction: column; gap: .25rem; width: 100%; padding: .5rem 1.25rem 1rem; background: var(--color-neutral-light); border-top: 1px solid rgba(30,27,75,0.08); }
.primary-nav.is-open { display: flex; }
.primary-nav a { color: var(--color-neutral-dark); font-weight: 500; padding: .5rem 0; position: relative; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
.primary-nav .nav-cta { color: var(--color-primary); font-weight: 600; }

@media (min-width: 900px) {
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav { display: flex; flex-direction: row; align-items: center; gap: 1.5rem; width: auto; padding: 0; background: transparent; border: 0; }
  .primary-nav a { padding: .25rem 0; }
  .primary-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--color-primary); transform: scaleX(0); transform-origin: left; transition: transform .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 { padding: .55rem 1.1rem; background: var(--color-primary); color: var(--color-neutral-light); border-radius: 999px; }
  .primary-nav .nav-cta::after { display: none; }
  .primary-nav .nav-cta:hover { background: var(--color-neutral-dark); }
}

/* === Buttons === */
.btn { display: inline-block; padding: .85rem 1.6rem; border-radius: 999px; font-weight: 600; font-family: var(--font-body); font-size: 1rem; border: 0; cursor: pointer; text-decoration: none; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s; }
.btn--primary { background: linear-gradient(135deg, var(--color-primary), #6d28d9); color: var(--color-neutral-light); box-shadow: 0 8px 24px -8px rgba(124,58,237,0.5); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -8px rgba(124,58,237,0.6); text-decoration: none; }
.btn--ghost { background: transparent; color: var(--color-primary); border: 1.5px solid rgba(124,58,237,0.35); }
.btn--ghost:hover { border-color: var(--color-primary); background: rgba(124,58,237,0.05); text-decoration: none; }
.btn--sm { padding: .55rem 1rem; font-size: .9rem; }
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }

/* === Hero-card === */
.hero { padding-block: 3rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: -20% -20% auto -20%; height: 60%; background: radial-gradient(ellipse at center, rgba(6,182,212,0.15), transparent 60%); z-index: 0; pointer-events: none; }
.hero-card__inner { position: relative; z-index: 1; max-width: 880px; margin-inline: auto; padding: 2.5rem 1.5rem; background: var(--color-neutral-light); border-radius: 24px; box-shadow: 0 30px 60px -30px rgba(30,27,75,0.25); border: 1px solid rgba(124,58,237,0.08); }
.hero-card__inner h1 { margin-bottom: 1rem; }
.hero__sub { font-size: 1.15rem; color: rgba(30,27,75,0.72); max-width: 52ch; margin-bottom: 1.5rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.hero-card__image { margin-top: 1.5rem; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-soft); }
.hero-card__image img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }

@media (min-width: 768px) {
  .hero { padding-block: 5rem; }
  .hero-card__inner { padding: 4rem; }
}

.proof-strip { position: relative; z-index: 1; max-width: 880px; margin: 2rem auto 0; padding: 1rem 1.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; color: rgba(30,27,75,0.55); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }

/* === Grid & cards === */
.grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2rem; }
@media (min-width: 640px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.card { background: var(--color-neutral-light); border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-soft); border: 1px solid rgba(30,27,75,0.06); transition: transform .25s var(--ease), box-shadow .25s var(--ease); display: flex; flex-direction: column; gap: .5rem; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.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(6,182,212,0.12)); color: var(--color-primary); margin-bottom: .5rem; }
.card h3 { margin: 0; }
.card p { color: rgba(30,27,75,0.75); margin: 0; font-size: 0.95rem; }
.card-link { color: inherit; text-decoration: none; }
.card-link:hover { text-decoration: none; }

/* === Testimonial === */
.testimonial { margin: 0; padding: 2rem 1rem; text-align: center; }
.testimonial p { font-family: var(--font-heading); font-size: clamp(1.2rem, 2.5vw, 1.6rem); line-height: 1.4; color: var(--color-neutral-dark); margin-bottom: 1rem; }
.testimonial cite { display: block; font-style: normal; font-size: .95rem; color: var(--color-primary); font-weight: 500; }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: var(--color-neutral-light); padding: 3.5rem 0; text-align: center; }
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(250,245,255,0.85); max-width: 52ch; margin-inline: auto; margin-bottom: 1.5rem; }
.cta-band .btn--primary { background: var(--color-accent); box-shadow: 0 12px 30px -10px rgba(6,182,212,0.6); }
.cta-band .btn--primary:hover { background: #0891b2; }

/* === Pricing === */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.pricing-card { position: relative; background: var(--color-neutral-light); padding: 2.25rem; border-radius: 16px; border: 1px solid rgba(30,27,75,0.12); display: flex; flex-direction: column; box-shadow: var(--shadow-soft); }
.pricing-card--featured { border-color: var(--color-accent); border-width: 2px; transform: translateY(-4px); box-shadow: 0 24px 50px -20px rgba(6,182,212,0.3); }
.pricing-card__badge { position: absolute; top: 1rem; right: 1rem; background: var(--color-accent); color: var(--color-neutral-light); padding: .3rem .75rem; border-radius: 999px; font-size: .75rem; font-weight: 600; letter-spacing: 0.03em; }
.pricing-card__plan { font-family: var(--font-heading); margin: 0 0 .25rem; color: var(--color-primary); }
.pricing-card__price { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; margin: 0 0 1rem; color: var(--color-neutral-dark); }
.pricing-card__lede { font-size: .95rem; color: rgba(30,27,75,0.75); margin-bottom: 1.25rem; }
.pricing-card__features { list-style: none; margin: 0 0 1.5rem; padding: 0; display: flex; flex-direction: column; gap: .55rem; flex-grow: 1; }
.pricing-card__features li { display: flex; gap: .5rem; font-size: .95rem; align-items: flex-start; }
.pricing-card__features span { color: var(--color-accent); font-weight: 700; }
.pricing-card__cta { text-decoration: none; }
.pricing-card__cta .btn { width: 100%; text-align: center; }

/* === FAQ === */
.faq { margin-top: 2rem; display: flex; flex-direction: column; gap: .75rem; }
.faq details { background: var(--color-neutral-light); border: 1px solid rgba(30,27,75,0.08); border-radius: var(--radius-md); padding: 1rem 1.25rem; box-shadow: var(--shadow-soft); }
.faq summary { cursor: pointer; font-weight: 600; font-family: var(--font-heading); 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; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: .75rem; color: rgba(30,27,75,0.8); }

/* === Hours table === */
.hours { width: 100%; border-collapse: collapse; margin-top: 1rem; background: var(--color-neutral-light); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); }
.hours th, .hours td { text-align: left; padding: .85rem 1.25rem; border-bottom: 1px solid rgba(30,27,75,0.06); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours th { font-family: var(--font-heading); font-weight: 500; }
.hours td { color: rgba(30,27,75,0.8); }

/* === Contact form === */
.contact-form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.form-row { display: flex; flex-direction: column; gap: .35rem; }
.form-row label { font-weight: 600; font-size: .9rem; }
.form-row input, .form-row textarea { font-family: inherit; font-size: 1rem; padding: .75rem 1rem; border: 1.5px solid rgba(30,27,75,0.15); border-radius: 10px; background: var(--color-neutral-light); color: var(--color-neutral-dark); transition: border-color .2s; }
.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); }

/* === 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; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer .logo img { filter: brightness(0) invert(1); height: 60px; }
.footer__tag { margin-top: 1rem; color: rgba(250,245,255,0.65); }
.site-footer h4 { color: var(--color-neutral-light); font-family: var(--font-heading); margin-bottom: 1rem; font-size: 1rem; }
.site-footer nav ul, .legal-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .4rem; }
.site-footer a { color: rgba(250,245,255,0.75); }
.site-footer a:hover { color: var(--color-accent); text-decoration: none; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.legal-links { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(250,245,255,0.15); }
.footer__base { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(250,245,255,0.15); font-size: .85rem; color: rgba(250,245,255,0.55); }

/* === Reveal (scroll motion) === */
.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; }
  html { scroll-behavior: auto; }
}

/* === 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 30px 60px -20px rgba(0,0,0,0.4); max-width: 620px; margin-inline: auto; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .95rem; color: rgba(250,245,255,0.9); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions .btn--ghost { color: var(--color-neutral-light); border-color: rgba(250,245,255,0.35); }
.cookie-banner__actions .btn--ghost:hover { border-color: var(--color-neutral-light); background: rgba(250,245,255,0.08); }
.cookie-banner__actions .btn--primary { background: var(--color-accent); box-shadow: none; }
.cookie-banner__actions .btn--primary:hover { background: #0891b2; }
.cookie-banner__prefs { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; 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; }
