:root {
  --color-primary: #1E3A8A;
  --color-secondary: #3B82F6;
  --color-accent: #F97316;
  --color-neutral-dark: #1E40AF;
  --color-neutral-light: #EFF6FF;
  --color-ink: #0F172A;
  --color-muted: #475569;
  --color-border: rgba(30, 58, 138, 0.12);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-lg: 20px;
  --radius-md: 14px;
  --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(30, 58, 138, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-secondary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--color-primary); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-primary); line-height: 1.2; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; margin: 0 0 1rem; }
h3 { font-size: 1.25rem; font-weight: 600; margin: 0 0 .5rem; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: 780px; margin-inline: auto; }
.eyebrow { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; color: var(--color-secondary); margin: 0 0 1rem; font-weight: 600; }
.section { padding-block: 4rem; }
@media (min-width: 768px) { .section { padding-block: 6rem; } }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section__head p { color: var(--color-muted); font-size: 1.0625rem; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--color-primary); color: #fff; padding: .75rem 1rem; z-index: 100; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* === Header / Nav === */
.site-header {
  position: sticky; top: 0; z-index: 50;
  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 .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 24px -12px rgba(15, 23, 42, 0.15);
  border-bottom-color: var(--color-border);
}
.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; }
@media (min-width: 768px) { .logo img { height: 96px; } }

.site-nav { display: none; }
.site-nav a { position: relative; font-family: var(--font-heading); font-weight: 500; color: var(--color-ink); padding: .5rem 0; }
.site-nav a::after { content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav .nav-cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff; padding: .6rem 1.1rem; border-radius: 999px; font-weight: 600;
  box-shadow: 0 8px 20px -8px rgba(30, 58, 138, 0.6);
}
.site-nav .nav-cta::after { display: none; }
.site-nav .nav-cta:hover { color: #fff; transform: translateY(-1px); }

.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--color-border); border-radius: 12px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--color-primary); border-radius: 2px; transition: transform .25s ease, opacity .2s 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); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav { display: flex; align-items: center; gap: 2rem; }
}
@media (max-width: 899px) {
  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--color-border);
    padding: 1rem 1.25rem 1.5rem; flex-direction: column; align-items: stretch; gap: .25rem;
    box-shadow: 0 10px 30px -20px rgba(15, 23, 42, 0.25);
  }
  .site-nav a { padding: .75rem .25rem; }
  .site-nav .nav-cta { text-align: center; margin-top: .5rem; }
  .site-nav[data-nav]:not(.is-open) { display: none; }
  .site-nav.is-open { display: flex; }
}

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .9rem 1.5rem; border-radius: 999px; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; cursor: pointer; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; text-align: center; }
.btn--primary { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: #fff; box-shadow: 0 12px 28px -12px rgba(30, 58, 138, 0.6); }
.btn--primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 18px 36px -14px rgba(30, 58, 138, 0.7); }
.btn--accent { background: var(--color-accent); color: #fff; box-shadow: 0 12px 28px -12px rgba(249, 115, 22, 0.6); }
.btn--accent:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 18px 36px -14px rgba(249, 115, 22, 0.7); }
.btn--ghost { background: transparent; color: var(--color-primary); border-color: var(--color-border); }
.btn--ghost:hover { background: var(--color-neutral-light); transform: translateY(-2px); }
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; border-radius: 6px; }

/* === Hero (centered) === */
.hero { position: relative; padding-block: 4rem 3rem; overflow: hidden; background: linear-gradient(180deg, var(--color-neutral-light) 0%, #ffffff 100%); }
.hero__glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 50% 20%, rgba(249, 115, 22, 0.14), transparent 60%), radial-gradient(ellipse at 80% 40%, rgba(59, 130, 246, 0.18), transparent 55%); }
.hero__inner { position: relative; text-align: center; }
.hero__title { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 600; max-width: 22ch; margin: 0 auto 1.25rem; letter-spacing: -0.02em; }
.hero__sub { max-width: 52ch; margin: 0 auto 2rem; font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--color-muted); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-bottom: 3rem; }
.hero__image { max-width: 1040px; margin: 0 auto; }
.hero__image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 16 / 9; object-fit: cover; }
@media (min-width: 768px) { .hero { padding-block: 6rem 4rem; } }

/* === Grids / Cards === */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 700px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .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), border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(30, 58, 138, 0.24); }
.card p { color: var(--color-muted); margin-bottom: 0; }
.card__icon { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 12px; background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(249, 115, 22, 0.12)); color: var(--color-primary); margin-bottom: 1rem; }
.card--stat h3 { font-size: 1.75rem; color: var(--color-primary); }

/* === Testimonial === */
.testimonial { background: var(--color-neutral-light); }
.quote { max-width: 780px; margin: 0 auto; text-align: center; padding: 2rem; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); position: relative; }
.quote p { font-size: 1.25rem; font-family: var(--font-heading); font-weight: 500; color: var(--color-ink); line-height: 1.5; margin-bottom: 1.25rem; }
.quote cite { font-style: normal; color: var(--color-muted); font-size: .95rem; }

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

/* === Intro === */
.intro__grid { display: grid; gap: 2.5rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .intro__grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; } }
.intro__image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4 / 3; object-fit: cover; }
.intro .narrow p { font-size: 1.0625rem; color: var(--color-muted); line-height: 1.75; }

/* === FAQ === */
.faq details { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.25rem 1.5rem; margin-bottom: .75rem; box-shadow: var(--shadow-sm); transition: box-shadow .2s ease; }
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary { font-family: var(--font-heading); font-weight: 600; color: var(--color-primary); 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-accent); transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: .75rem; color: var(--color-muted); }

/* === Contact page === */
.contact-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 800px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.contact-card h3 { margin-bottom: .75rem; }
.contact-card address { font-style: normal; color: var(--color-muted); line-height: 1.7; }
.hours { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours th, .hours td { padding: .35rem 0; text-align: left; color: var(--color-muted); font-weight: 400; }
.hours th { color: var(--color-ink); font-weight: 500; }
.hours td { text-align: right; }

.contact-band__inner { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; background: var(--color-neutral-light); padding: 2rem; border-radius: var(--radius-lg); }
.contact-band__inner p { margin: 0; color: var(--color-muted); }
@media (min-width: 800px) { .contact-band__inner { flex-direction: row; align-items: center; justify-content: space-between; } }

/* === Form === */
.contact-form { background: #fff; padding: 2rem; border-radius: var(--radius-lg); border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.form-row { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.form-row label { font-family: var(--font-heading); font-weight: 500; color: var(--color-ink); font-size: .95rem; }
.form-row input, .form-row textarea { font-family: var(--font-body); font-size: 1rem; padding: .75rem .9rem; border: 1px solid var(--color-border); border-radius: 10px; background: #fff; color: var(--color-ink); transition: border-color .2s ease, box-shadow .2s ease; }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--color-secondary); box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15); }
.form-consent { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: 1.25rem; font-size: .9rem; color: var(--color-muted); line-height: 1.5; }
.form-consent input { margin-top: .25rem; flex-shrink: 0; }

/* === Footer === */
.site-footer { background: var(--color-primary); color: rgba(239, 246, 255, 0.85); padding-block: 3rem 1.5rem; margin-top: 2rem; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 800px) { .footer__grid { grid-template-columns: 1.2fr 1fr 1.3fr; } }
.footer__col h3 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.footer__col a { color: rgba(239, 246, 255, 0.85); display: block; padding: .25rem 0; }
.footer__col a:hover { color: var(--color-accent); }
.footer__col address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.footer__col address a { display: inline; padding: 0; }
.footer__legal { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(239, 246, 255, 0.15); }
.logo--footer img { filter: brightness(0) invert(1); height: 60px; }
.footer__base { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(239, 246, 255, 0.15); font-size: .85rem; color: rgba(239, 246, 255, 0.6); }
.footer__base p { margin: 0; }

/* === 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.45); 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.5; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner button { font-family: var(--font-heading); font-size: .9rem; padding: .55rem 1rem; border-radius: 999px; border: 1px solid rgba(239, 246, 255, 0.3); background: transparent; color: var(--color-neutral-light); cursor: pointer; font-weight: 500; transition: background .2s ease, color .2s ease; }
.cookie-banner button:hover { background: rgba(239, 246, 255, 0.1); }
.cookie-banner [data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.cookie-banner [data-cookie-accept]:hover { background: #ea660b; }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; padding-top: 1rem; border-top: 1px solid rgba(239, 246, 255, 0.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.cookie-banner__prefs [data-cookie-save] { 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; }
  html { scroll-behavior: auto; }
}
