:root {
  --color-primary: #4F46E5;
  --color-secondary: #818CF8;
  --color-accent: #22C55E;
  --color-neutral-dark: #312E81;
  --color-neutral-light: #EEF2FF;
  --color-text: #1F1E3D;
  --color-muted: #5B5A85;
  --color-border: rgba(49, 46, 129, 0.12);
  --color-white: #ffffff;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 20px rgba(31, 30, 61, 0.06);
  --shadow-md: 0 12px 30px -12px rgba(31, 30, 61, 0.18);
  --shadow-lg: 0 30px 60px -30px rgba(31, 30, 61, 0.35);
  --container: 1160px;
}

/* === Reset === */
*, *::before, *::after { 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-white);
  line-height: 1.6;
  font-size: 16px;
  -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, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; letter-spacing: -0.015em; margin: 0 0 .75rem; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.65rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1rem; }
button { font-family: inherit; cursor: pointer; }

/* === Layout === */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: 3.5rem; }
.section.band-light { background: var(--color-neutral-light); }
.narrow { max-width: 720px; margin-inline: auto; }
.center { text-align: center; }
.section-head { max-width: 700px; margin: 0 auto 2.5rem; }
.section-head.center { text-align: center; }
.section-head p { color: var(--color-muted); font-size: 1.05rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; font-weight: 600; color: var(--color-primary); margin: 0 0 1rem; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--color-neutral-dark); color: var(--color-white); padding: .5rem 1rem; z-index: 9999; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* === Header / Nav === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.site-header.scrolled { background: rgba(255,255,255,0.92); box-shadow: var(--shadow-sm); border-bottom-color: var(--color-border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: .75rem; gap: 1rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; }
.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: transparent; border: 0; padding: .5rem; }
.nav-toggle span { width: 24px; height: 2px; background: var(--color-neutral-dark); border-radius: 2px; transition: transform .2s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.primary-nav { display: none; }
.primary-nav.is-open { display: block; position: absolute; left: 0; right: 0; top: 100%; background: var(--color-white); border-top: 1px solid var(--color-border); box-shadow: var(--shadow-md); }
.primary-nav ul { list-style: none; margin: 0; padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: .25rem; }
.primary-nav a { display: block; padding: .65rem .25rem; color: var(--color-neutral-dark); font-weight: 500; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
.primary-nav .nav-cta { color: var(--color-primary); font-weight: 600; }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.5rem; border-radius: 999px;
  font-weight: 600; font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
}
.btn-primary { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: var(--color-white); box-shadow: 0 10px 25px -12px rgba(79, 70, 229, 0.6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(79, 70, 229, 0.7); color: var(--color-white); }
.btn-ghost { background: transparent; border-color: var(--color-border); color: var(--color-neutral-dark); }
.btn-ghost:hover { border-color: var(--color-primary); color: var(--color-primary); transform: translateY(-2px); }
.btn-link { background: transparent; border: 0; color: var(--color-neutral-dark); padding: .5rem .75rem; text-decoration: underline; }
.btn-sm { padding: .55rem 1rem; font-size: 0.9rem; }
:focus-visible { outline: 3px solid var(--color-secondary); outline-offset: 3px; border-radius: 6px; }

/* === Hero split === */
.hero { position: relative; padding-block: 3rem; overflow: hidden; }
.hero-split { background:
  radial-gradient(1200px 500px at 90% -20%, rgba(34, 197, 94, 0.12), transparent 60%),
  radial-gradient(900px 500px at -10% 20%, rgba(129, 140, 248, 0.20), transparent 60%),
  var(--color-neutral-light);
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.hero-grid.single { grid-template-columns: 1fr; max-width: 720px; }
.hero-copy .lede { font-size: 1.15rem; color: var(--color-muted); max-width: 52ch; margin-block: 1rem 1.75rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.hero-proof { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 480px; }
.hero-proof li { display: flex; flex-direction: column; }
.hero-proof strong { font-family: var(--font-heading); font-size: 1.4rem; color: var(--color-neutral-dark); font-weight: 700; }
.hero-proof span { font-size: 0.82rem; color: var(--color-muted); }
.hero-visual { order: -1; }
.hero-visual img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* === Grids & cards === */
.grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(79, 70, 229, 0.25); }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(79,70,229,0.12), rgba(129,140,248,0.18));
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--color-muted); margin: 0; font-size: 0.98rem; }

/* === Two column === */
.two-col { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.two-col-visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* === Pullquote === */
.pullquote { margin: 0; padding: 2rem 1rem; text-align: center; position: relative; }
.pullquote::before { content: "“"; font-family: var(--font-heading); font-size: 6rem; line-height: 0.8; color: var(--color-secondary); display: block; margin-bottom: -1rem; }
.pullquote p { font-family: var(--font-heading); font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 500; color: var(--color-neutral-dark); max-width: 42rem; margin: 0 auto 1rem; line-height: 1.4; }
.pullquote cite { font-style: normal; color: var(--color-muted); font-size: 0.95rem; }

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-neutral-dark), var(--color-primary));
  color: var(--color-white);
  padding-block: 3rem;
  position: relative;
  overflow: hidden;
}
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 300px at 90% 10%, rgba(34,197,94,0.25), transparent 60%); pointer-events: none; }
.cta-inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; position: relative; }
.cta-band h2 { color: var(--color-white); margin-bottom: .5rem; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0; }
.cta-band .btn-primary { background: var(--color-white); color: var(--color-neutral-dark); box-shadow: 0 12px 30px -10px rgba(0,0,0,0.35); }
.cta-band .btn-primary:hover { color: var(--color-primary); }

/* === FAQ === */
.faq details {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
  transition: box-shadow .2s var(--ease);
}
.faq details[open] { 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; position: relative; padding-right: 2rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: -2px; font-size: 1.5rem; color: var(--color-primary); transition: transform .2s var(--ease); }
.faq details[open] summary::after { content: "–"; }
.faq p { color: var(--color-muted); margin: .75rem 0 .25rem; }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.contact-address { font-style: normal; margin-bottom: 1.5rem; line-height: 1.75; }
.hours { width: 100%; border-collapse: collapse; margin-top: .5rem; }
.hours th, .hours td { text-align: left; padding: .55rem 0; border-bottom: 1px solid var(--color-border); font-size: 0.95rem; }
.hours th { font-weight: 500; color: var(--color-neutral-dark); }
.hours td { color: var(--color-muted); }
.map-block { background: var(--color-neutral-light); border: 1px solid var(--color-border); border-radius: var(--radius); min-height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--color-neutral-dark); text-align: center; padding: 2rem; }
.map-pin { color: var(--color-primary); margin-bottom: .5rem; }

/* === Contact form === */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: flex; flex-direction: column; gap: .35rem; }
.form-row label { font-weight: 500; color: var(--color-neutral-dark); font-size: 0.95rem; }
.form-row input, .form-row textarea {
  font: inherit; color: var(--color-text);
  padding: .75rem .9rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-white);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(79,70,229,0.18); }
.form-consent { display: flex; align-items: flex-start; gap: .6rem; font-size: 0.9rem; color: var(--color-muted); }
.form-consent input { margin-top: .2rem; }
.form-consent a { color: var(--color-primary); text-decoration: underline; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(255,255,255,0.85); padding-block: 3rem 1.5rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.site-footer h3 { color: var(--color-white); font-size: 1rem; margin-bottom: .75rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .4rem; }
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: var(--color-white); }
.site-footer address { font-style: normal; line-height: 1.75; margin-bottom: .75rem; }
.legal-links { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1); }
.logo-footer img { height: 56px; filter: brightness(0) invert(1); margin-bottom: .75rem; }
.copyright { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.88rem; color: rgba(255,255,255,0.6); }

/* === 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: 0 30px 60px -20px rgba(0,0,0,0.5);
  max-width: 640px;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 .85rem; font-size: 0.92rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions .btn-ghost { border-color: rgba(255,255,255,0.3); color: var(--color-neutral-light); }
.cookie-banner__actions .btn-ghost:hover { border-color: var(--color-white); color: var(--color-white); }
.cookie-banner__actions .btn-link { color: var(--color-neutral-light); }
.cookie-banner__prefs { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: 0.9rem; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: .35rem; }

/* === 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; }
  html { scroll-behavior: auto; }
}

/* === Responsive === */
@media (min-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .section { padding-block: 5rem; }
  .hero { padding-block: 5rem; }
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav { display: block; position: static; background: transparent; border: 0; box-shadow: none; }
  .primary-nav ul { flex-direction: row; align-items: center; padding: 0; gap: .35rem; }
  .primary-nav a { padding: .5rem .85rem; border-radius: 999px; position: relative; }
  .primary-nav a:hover { color: var(--color-primary); background: rgba(79,70,229,0.08); }
  .primary-nav .nav-cta { background: var(--color-neutral-dark); color: var(--color-white); }
  .primary-nav .nav-cta:hover { background: var(--color-primary); color: var(--color-white); }
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 3.5rem; }
  .hero-visual { order: 0; }
  .two-col { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; gap: 3rem; }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
