/* === Tokens === */
:root {
  --color-primary: #4F46E5;
  --color-secondary: #6366F1;
  --color-accent: #F97316;
  --color-neutral-dark: #312E81;
  --color-neutral-light: #EEF2FF;
  --color-ink: #1E1B4B;
  --color-muted: #4B5470;
  --color-line: rgba(49, 46, 129, 0.12);
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 2px 20px rgba(49, 46, 129, 0.08);
  --shadow-lift: 0 20px 60px -20px rgba(49, 46, 129, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-hover: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-ink);
  background: #ffffff;
  -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.02em; margin: 0 0 .75rem; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
p { margin: 0 0 1rem; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-neutral-dark); }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: 760px; margin-inline: auto; }
.eyebrow { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; font-weight: 600; color: var(--color-accent); margin: 0 0 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: 1rem; border: 1px solid transparent; cursor: pointer; transition: transform .2s var(--ease-hover), box-shadow .2s var(--ease-hover), background .2s; text-decoration: none; }
.btn-sm { padding: .55rem 1rem; font-size: .9rem; }
.btn-primary { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: #fff; box-shadow: 0 10px 30px -10px rgba(79, 70, 229, 0.6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(79, 70, 229, 0.7); color: #fff; }
.btn-accent { background: var(--color-accent); color: #fff; }
.btn-accent:hover { transform: translateY(-2px); background: #ea6a10; color: #fff; box-shadow: 0 18px 40px -12px rgba(249, 115, 22, 0.55); }
.btn-ghost { background: rgba(255,255,255,0.7); color: var(--color-neutral-dark); border-color: var(--color-line); }
.btn-ghost:hover { background: #fff; transform: translateY(-2px); }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; border-radius: 4px; }

/* === Header / nav === */
.site-header { position: sticky; top: 0; z-index: 100; backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); background: rgba(238, 242, 255, 0.72); border-bottom: 1px solid transparent; transition: background .25s, box-shadow .25s, border-color .25s; }
.site-header.scrolled { background: rgba(255, 255, 255, 0.85); border-bottom-color: var(--color-line); box-shadow: 0 8px 30px -20px rgba(49,46,129,0.25); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding-block: .75rem; gap: 1rem; }
.logo img { height: 72px; width: auto; display: block; }
.site-nav { display: none; flex-direction: column; gap: .5rem; }
.site-nav a { font-family: var(--font-heading); font-weight: 500; color: var(--color-neutral-dark); padding: .35rem 0; position: relative; }
.site-nav a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease-hover); }
.site-nav a:not(.btn):hover::after, .site-nav a.is-active:not(.btn)::after { transform: scaleX(1); }
.nav-toggle { background: transparent; border: 1px solid var(--color-line); border-radius: 10px; padding: .4rem; color: var(--color-neutral-dark); cursor: pointer; }
.site-nav.is-open { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 1rem 1.25rem 1.5rem; box-shadow: var(--shadow-soft); border-top: 1px solid var(--color-line); }

@media (min-width: 900px) {
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .site-nav { display: flex; flex-direction: row; align-items: center; gap: 1.75rem; position: static; padding: 0; box-shadow: none; background: transparent; border-top: 0; }
}

/* === Hero === */
.hero { position: relative; padding: 3rem 0 4rem; background: linear-gradient(180deg, rgba(238,242,255,0.9), #ffffff 85%); overflow: hidden; }
.hero--sub { padding-top: 2.5rem; }
.hero__glow { position: absolute; inset: -20% 20% auto -10%; height: 60vh; background: radial-gradient(closest-side, rgba(249,115,22,0.16), transparent 70%); filter: blur(30px); pointer-events: none; z-index: 0; }
.hero__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; }
.hero h1 { max-width: 22ch; }
.hero__sub { font-size: 1.15rem; color: var(--color-muted); max-width: 56ch; margin-bottom: 1.5rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.25rem; }
.hero__visual { width: 100%; margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); }
.hero__visual img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.proof-strip { margin-top: 3rem; background: var(--color-neutral-dark); color: var(--color-neutral-light); padding: 1rem 0; }
.proof-strip__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 1.5rem; font-family: var(--font-heading); font-size: .95rem; letter-spacing: .02em; }

@media (min-width: 900px) {
  .hero { padding: 5rem 0 5rem; }
  .hero__inner { align-items: center; text-align: center; }
  .hero h1 { text-align: center; }
  .hero__sub { text-align: center; }
  .hero__ctas { justify-content: center; }
  .hero__visual { max-width: 960px; margin-inline: auto; }
}

/* === Sections === */
.section { padding: 4rem 0; }
.section--tint { background: linear-gradient(180deg, #ffffff, var(--color-neutral-light)); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head p { color: var(--color-muted); }

/* === Grids & cards === */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 720px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-soft); transition: transform .25s var(--ease-hover), box-shadow .25s var(--ease-hover); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: #fff; margin-bottom: 1rem; }
.card p { color: var(--color-muted); margin-bottom: 0; }

/* === Stats === */
.stats .stat { text-align: center; padding: 1.5rem; }
.stat__num { display: block; font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 700; color: var(--color-accent); line-height: 1; margin-bottom: .5rem; }
.stat p { color: var(--color-muted); margin-bottom: 0; }

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

/* === CTA band === */
.cta-band { padding: 3.5rem 0; background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; }
.cta-band__inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0; }
@media (min-width: 720px) {
  .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

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

/* === Contact === */
.contact-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; align-items: start; } }
.contact-info h3 { margin-top: 1.5rem; }
.hours { width: 100%; border-collapse: collapse; margin-top: .5rem; }
.hours th, .hours td { text-align: left; padding: .5rem .75rem; border-bottom: 1px solid var(--color-line); font-weight: 400; }
.hours th { font-family: var(--font-heading); color: var(--color-neutral-dark); }
.contact-card { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; background: #fff; padding: 1.75rem; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }

.contact-form { background: #fff; padding: 1.75rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); display: flex; flex-direction: column; gap: .5rem; }
.contact-form label { font-family: var(--font-heading); font-weight: 500; font-size: .9rem; color: var(--color-neutral-dark); margin-top: .75rem; }
.contact-form input, .contact-form textarea { font: inherit; padding: .75rem .9rem; border: 1px solid var(--color-line); border-radius: 10px; background: #fff; color: var(--color-ink); transition: border-color .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15); }
.form-consent { display: flex; gap: .55rem; align-items: flex-start; margin-top: 1rem; font-size: .88rem; color: var(--color-muted); font-family: var(--font-body); font-weight: 400; }
.form-consent input { margin-top: .2rem; flex-shrink: 0; }
.contact-form .btn { margin-top: 1.25rem; align-self: flex-start; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding: 3.5rem 0 1.5rem; margin-top: 2rem; }
.site-footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.site-footer h4 { color: #fff; margin-bottom: .75rem; font-size: .85rem; }
.site-footer a { color: var(--color-neutral-light); }
.site-footer a:hover { color: var(--color-accent); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .35rem; }
.site-footer address { font-style: normal; margin-bottom: 1rem; line-height: 1.7; }
.footer-tagline { color: rgba(238,242,255,0.75); max-width: 30ch; }
.legal-links { margin-top: 1rem; font-size: .9rem; }
.logo--footer img { height: 60px; margin-bottom: .75rem; filter: brightness(0) invert(1); }
.site-footer__base { border-top: 1px solid rgba(238,242,255,0.15); margin-top: 2.5rem; padding-top: 1.25rem; font-size: .85rem; color: rgba(238,242,255,0.7); }
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 1.2fr 1fr 1.4fr; } }

/* === 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-md); padding: 1.25rem 1.5rem; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4); max-width: 640px; margin-inline: auto; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .95rem; line-height: 1.55; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; padding-top: 1rem; border-top: 1px solid rgba(238,242,255,0.2); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }

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