:root {
  --color-primary: #2563EB;
  --color-secondary: #3B82F6;
  --color-accent: #F97316;
  --color-neutral-dark: #1E293B;
  --color-neutral-light: #F8FAFC;
  --color-border: rgba(30, 41, 59, 0.12);
  --color-muted: #64748B;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 20px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(15, 23, 42, 0.18);
  --shadow-lg: 0 30px 60px -30px rgba(15, 23, 42, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-hover: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-neutral-dark);
  background: var(--color-neutral-light);
  -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; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 .75rem; color: var(--color-neutral-dark); }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: .5rem; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }
.container--narrow { max-width: 780px; }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link { position: absolute; left: -1000px; top: 0; background: var(--color-neutral-dark); color: var(--color-neutral-light); padding: .5rem 1rem; z-index: 10000; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.7);
  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-hover), box-shadow .25s var(--ease-hover), border-color .25s var(--ease-hover);
}
.site-header.scrolled {
  background: rgba(248, 250, 252, 0.92);
  box-shadow: 0 4px 20px -10px rgba(15,23,42,0.15);
  border-bottom-color: var(--color-border);
}
.site-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; }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 44px; height: 44px; padding: 0;
  background: transparent; border: 1px solid var(--color-border);
  border-radius: 10px;
}
.nav-toggle__bar { display: block; width: 22px; height: 2px; background: var(--color-neutral-dark); margin-inline: auto; border-radius: 2px; transition: transform .2s var(--ease-hover); }
.primary-nav {
  display: none; position: absolute; left: 0; right: 0; top: 100%;
  background: var(--color-neutral-light);
  border-top: 1px solid var(--color-border);
  flex-direction: column; padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
}
.primary-nav a { padding: .75rem 0; color: var(--color-neutral-dark); font-weight: 500; }
.primary-nav a:hover { color: var(--color-primary); text-decoration: none; }
.site-header.is-open .primary-nav { display: flex; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; position: static; flex-direction: row; align-items: center; gap: 1.75rem; padding: 0; background: transparent; border: 0; box-shadow: none; }
  .primary-nav a { padding: 0; position: relative; }
  .primary-nav a:not(.btn)::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
    height: 2px; background: var(--color-primary);
    transform: scaleX(0); transform-origin: left;
    transition: transform .25s var(--ease-hover);
  }
  .primary-nav a:not(.btn):hover::after,
  .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
  .logo img { height: 96px; }
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .875rem 1.5rem;
  border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  border: 1px solid transparent;
  transition: transform .2s var(--ease-hover), box-shadow .2s var(--ease-hover), background .2s var(--ease-hover);
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid rgba(37, 99, 235, 0.35); outline-offset: 2px; }
.btn--primary { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: #fff; box-shadow: 0 10px 30px -12px rgba(37, 99, 235, 0.55); }
.btn--primary:hover { box-shadow: 0 16px 36px -12px rgba(37, 99, 235, 0.7); }
.btn--accent { background: var(--color-accent); color: #fff; box-shadow: 0 10px 30px -12px rgba(249, 115, 22, 0.55); }
.btn--accent:hover { box-shadow: 0 16px 36px -12px rgba(249, 115, 22, 0.7); }
.btn--ghost { background: transparent; color: var(--color-neutral-dark); border-color: var(--color-border); }
.btn--ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn--link { background: transparent; padding: .5rem .75rem; color: var(--color-primary); }
.btn--sm { padding: .625rem 1.125rem; font-size: .85rem; }

/* === Hero === */
.hero { position: relative; padding-block: 3.5rem 3rem; text-align: center; overflow: hidden; }
.hero__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(600px circle at 20% 10%, rgba(59, 130, 246, 0.12), transparent 60%),
    radial-gradient(500px circle at 85% 30%, rgba(249, 115, 22, 0.10), transparent 60%);
}
.hero .container { position: relative; z-index: 1; }
.eyebrow { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--color-primary); font-weight: 600; margin-bottom: 1rem; }
.hero h1 { max-width: 22ch; margin-inline: auto; }
.hero__sub { max-width: 52ch; margin: 1.25rem auto 2rem; color: var(--color-muted); font-size: 1.125rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-bottom: 2.5rem; }
.hero__figure { margin: 2rem 0 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: #fff; }
.hero__figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.social-proof { margin-top: 2rem; display: inline-flex; flex-wrap: wrap; gap: .75rem; justify-content: center; color: var(--color-muted); font-size: .9rem; }
.social-proof span { display: inline-block; }

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

/* === Sections === */
.section { padding-block: 3.5rem; }
.section--tint { background: linear-gradient(180deg, rgba(59,130,246,0.04), rgba(249,115,22,0.03)); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section__head p { color: var(--color-muted); }
.lede { font-size: 1.0625rem; color: #334155; }

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

/* === Cards === */
.cards { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) {
  .cards--3 { grid-template-columns: repeat(3, 1fr); }
  .cards--2 { grid-template-columns: repeat(2, 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-hover), box-shadow .25s var(--ease-hover), border-color .25s var(--ease-hover);
  color: inherit;
  display: block;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(37,99,235,0.25); }
.card-link { text-decoration: none; color: inherit; }
.card-link:hover { text-decoration: none; }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(249,115,22,0.12));
  color: var(--color-primary);
  border-radius: 12px;
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: .5rem; }
.card p { margin: 0; color: #475569; }

/* === Blockquote === */
.section--quote { padding-block: 3rem; }
blockquote { margin: 0; text-align: center; }
blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.4;
  font-weight: 500;
  color: var(--color-neutral-dark);
  max-width: 60ch;
  margin: 0 auto 1.25rem;
  letter-spacing: -0.01em;
}
blockquote cite { display: block; font-style: normal; color: var(--color-muted); font-size: .95rem; font-weight: 500; }

/* === CTA band === */
.cta-band {
  margin-block: 2rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem 1.5rem;
  margin-inline: 1rem;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px circle at 90% 20%, rgba(249, 115, 22, 0.25), transparent 60%);
  pointer-events: none;
}
.cta-band__inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; position: relative; }
.cta-band h2 { color: #fff; margin: 0 0 .5rem; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0; }
@media (min-width: 768px) {
  .cta-band { padding: 3.5rem 3rem; margin-inline: auto; max-width: 1140px; }
  .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* === Split === */
.split { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: center; }
.split__figure { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.split__figure img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* === FAQ === */
.faq details {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: .75rem;
  transition: box-shadow .2s var(--ease-hover);
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.0625rem;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--color-primary); transition: transform .2s var(--ease-hover); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: .75rem 0 0; color: #475569; }

/* === Contact === */
.contact-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; } }
.contact-info address { font-style: normal; margin-bottom: 1.25rem; line-height: 1.8; }
.hours { width: 100%; border-collapse: collapse; margin-top: 1rem; background: #fff; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.hours caption { text-align: left; font-family: var(--font-heading); font-weight: 600; padding: .75rem 1rem; }
.hours th, .hours td { padding: .625rem 1rem; text-align: left; border-top: 1px solid var(--color-border); font-weight: 500; }
.hours th { color: var(--color-muted); font-weight: 500; }

.contact-form { background: #fff; padding: 2rem; border-radius: var(--radius-md); border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.contact-form label { display: block; font-weight: 500; margin: 1rem 0 .375rem; font-size: .9rem; }
.contact-form .opt { color: var(--color-muted); font-weight: 400; }
.contact-form input[type=text], .contact-form input[type=email], .contact-form textarea {
  width: 100%; padding: .75rem .875rem;
  border: 1px solid var(--color-border); border-radius: 10px;
  font: inherit; background: #fff; color: inherit;
  transition: border-color .2s var(--ease-hover), box-shadow .2s var(--ease-hover);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(37,99,235,0.12); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.form-consent { display: flex; gap: .625rem; align-items: flex-start; font-size: .85rem; margin-top: 1.25rem; color: var(--color-muted); font-weight: 400; }
.form-consent input { margin-top: .25rem; flex-shrink: 0; }
.contact-form button[type=submit] { margin-top: 1.5rem; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(248, 250, 252, 0.85); margin-top: 3rem; }
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.site-footer a { color: rgba(248, 250, 252, 0.85); }
.site-footer a:hover { color: #fff; }
.site-footer__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; padding-block: 3rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1.2fr 1fr 1.3fr; } }
.logo--footer img { height: 60px; filter: brightness(0) invert(1); margin-bottom: .75rem; }
.tagline { color: rgba(248, 250, 252, 0.65); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer address { font-style: normal; line-height: 1.9; margin-bottom: 1rem; }
.legal-links { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; font-size: .875rem; }
.legal-links li { margin: 0; }
.site-footer__base { border-top: 1px solid rgba(255,255,255,0.08); padding-block: 1.25rem; font-size: .85rem; color: rgba(248, 250, 252, 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);
  padding: 1.25rem 1.5rem; border-radius: var(--radius-md);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.5);
  max-width: 620px; margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .9rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions .btn--ghost { color: var(--color-neutral-light); border-color: rgba(255,255,255,0.25); }
.cookie-banner__actions .btn--ghost:hover { border-color: #fff; color: #fff; }
.cookie-banner__actions .btn--link { color: var(--color-neutral-light); }
.cookie-banner__prefs { margin-top: 1rem; display: grid; gap: .5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.15); }
.cookie-banner__prefs label { display: flex; gap: .5rem; align-items: center; font-size: .9rem; }
.cookie-banner__prefs button { justify-self: start; margin-top: .5rem; }

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