:root {
  --color-primary: #0369A1;
  --color-secondary: #0EA5E9;
  --color-accent: #CA8A04;
  --color-neutral-dark: #0C4A6E;
  --color-neutral-light: #F0F9FF;
  --color-text: #0C4A6E;
  --color-muted: #475569;
  --color-border: rgba(12, 74, 110, 0.12);
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 2px 20px rgba(12, 74, 110, 0.06);
  --shadow-md: 0 20px 60px -20px rgba(12, 74, 110, 0.25);
  --radius: 18px;
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); letter-spacing: -0.01em; line-height: 1.2; margin: 0 0 .75rem; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1rem; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: .8rem; font-weight: 600; color: var(--color-primary); margin-bottom: 1rem; }

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: .85rem 1.5rem; border-radius: 999px; font-weight: 600; font-family: var(--font-heading); font-size: 1rem; border: 1px solid transparent; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease); }
.btn--primary { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: #fff; box-shadow: 0 10px 30px -12px rgba(3, 105, 161, 0.6); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(3, 105, 161, 0.75); text-decoration: none; }
.btn--ghost { background: transparent; color: var(--color-neutral-dark); border-color: var(--color-border); }
.btn--ghost:hover { transform: translateY(-2px); background: var(--color-neutral-light); text-decoration: none; }
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }

/* === Header / Nav === */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(240, 249, 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 .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease); }
.site-header.scrolled { background: rgba(255, 255, 255, 0.9); box-shadow: 0 6px 20px -12px rgba(12, 74, 110, 0.25); border-bottom-color: var(--color-border); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .85rem; }
.logo img { height: 72px; width: auto; display: block; }
.logo--footer img { height: 64px; }
.primary-nav { display: none; align-items: center; gap: 1.75rem; }
.primary-nav a { position: relative; color: var(--color-neutral-dark); font-weight: 500; padding-block: .35rem; }
.primary-nav a:not(.nav-cta)::after { content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--color-primary); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.primary-nav a:not(.nav-cta):hover { text-decoration: none; }
.primary-nav a:not(.nav-cta):hover::after,
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav .nav-cta { background: var(--color-neutral-dark); color: #fff; padding: .55rem 1.15rem; border-radius: 999px; }
.primary-nav .nav-cta:hover { background: var(--color-primary); text-decoration: none; }
.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: transparent; border: 1px solid var(--color-border); padding: .55rem; border-radius: 10px; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--color-neutral-dark); border-radius: 2px; }

@media (min-width: 900px) {
  .logo img { height: 96px; }
  .primary-nav { display: flex; }
  .nav-toggle { display: none; }
}

.primary-nav.is-open { display: flex; flex-direction: column; align-items: stretch; gap: .5rem; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 1rem 1.25rem 1.5rem; box-shadow: var(--shadow-md); border-top: 1px solid var(--color-border); }
@media (min-width: 900px) { .primary-nav.is-open { position: static; flex-direction: row; padding: 0; box-shadow: none; border-top: 0; } }

/* === Hero === */
.hero { position: relative; overflow: hidden; padding-block: 4rem 3rem; background: linear-gradient(180deg, var(--color-neutral-light) 0%, #ffffff 100%); }
.hero--sub { padding-block: 3rem 2rem; }
.hero__glow { position: absolute; inset: -20% 20% auto -10%; height: 60vh; background: radial-gradient(closest-side, rgba(202, 138, 4, 0.10), transparent 70%); pointer-events: none; z-index: 0; }
.hero__inner { position: relative; z-index: 1; max-width: 860px; }
.hero__inner--center { text-align: center; margin-inline: auto; }
.hero__title { margin-bottom: 1.25rem; }
.hero__sub { font-size: 1.15rem; color: var(--color-muted); max-width: 58ch; margin-bottom: 1.75rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 3rem; }
.hero__inner--center .hero__actions { justify-content: center; }
.hero__figure { margin: 0; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.hero__figure::before { content: ''; position: absolute; inset: -2px; border-radius: 22px; background: linear-gradient(135deg, rgba(3, 105, 161, 0.15), rgba(14, 165, 233, 0.15)); z-index: -1; }
.hero__figure img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }

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

/* === Proof strip === */
.proof-strip { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding-block: 1rem; }
.proof-strip__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 1.25rem; font-size: .9rem; letter-spacing: 0.04em; font-family: var(--font-heading); }
.proof-strip__inner span:not(:nth-child(even)) { opacity: .95; }

/* === Sections === */
section { padding-block: 4rem; }
@media (min-width: 768px) { section { padding-block: 5.5rem; } }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.intro__inner { max-width: 780px; margin-inline: auto; text-align: center; }
.intro__inner p { font-size: 1.05rem; color: var(--color-muted); }

/* === Grid & Cards === */
.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@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: #fff; 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); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__icon { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 12px; background: linear-gradient(135deg, rgba(3, 105, 161, 0.12), rgba(14, 165, 233, 0.12)); color: var(--color-primary); margin-bottom: 1rem; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--color-muted); margin: 0; }

/* === Testimonial === */
.testimonial { background: linear-gradient(180deg, #ffffff, var(--color-neutral-light)); }
.testimonial blockquote { max-width: 780px; margin-inline: auto; text-align: center; position: relative; padding: 0 1rem; }
.testimonial blockquote p { font-family: var(--font-heading); font-size: clamp(1.25rem, 2.4vw, 1.75rem); line-height: 1.4; color: var(--color-neutral-dark); font-weight: 500; }
.testimonial cite { font-style: normal; font-size: .95rem; color: var(--color-muted); }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; border-radius: 0; }
.cta-band__inner { display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(240, 249, 255, 0.85); margin: 0; max-width: 58ch; }
.cta-band .btn--primary { background: var(--color-accent); box-shadow: 0 10px 30px -12px rgba(202, 138, 4, 0.7); }
.cta-band .btn--primary:hover { box-shadow: 0 16px 40px -12px rgba(202, 138, 4, 0.85); }
@media (min-width: 768px) { .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 3rem; } }

/* === Stats === */
.stats { background: #fff; }
.stat { text-align: center; padding: 1.5rem; }
.stat__value { 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: .75rem; letter-spacing: -0.02em; }
.stat p { color: var(--color-muted); margin: 0; }

/* === Contact === */
.contact-section { background: var(--color-neutral-light); }
.contact-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.4fr 1fr; align-items: start; } }
.contact-form { display: grid; gap: 1rem; margin-top: 1.5rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-weight: 500; font-size: .95rem; color: var(--color-neutral-dark); }
.field input, .field textarea { font-family: inherit; font-size: 1rem; padding: .75rem .9rem; border: 1px solid var(--color-border); border-radius: 12px; background: #fff; color: var(--color-neutral-dark); transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.15); }
.contact-card { background: #fff; padding: 1.75rem; border-radius: var(--radius); border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.contact-card h3 { margin-top: 1.25rem; font-size: 1.05rem; }
.contact-card h3:first-child { margin-top: 0; }
.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 { text-align: left; padding: .5rem 0; border-bottom: 1px dashed var(--color-border); font-weight: 400; color: var(--color-muted); }
.hours th { color: var(--color-neutral-dark); font-weight: 500; }

/* === FAQ === */
.faq { background: #fff; }
.faq__list { max-width: 820px; margin-inline: auto; display: grid; gap: .75rem; }
.faq details { border: 1px solid var(--color-border); border-radius: 14px; background: #fff; padding: 1rem 1.25rem; 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; padding-right: 2rem; position: relative; }
.faq summary::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--color-primary); transition: transform .2s var(--ease); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { margin: .75rem 0 0; color: var(--color-muted); }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding-block: 3.5rem 1.5rem; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.site-footer a { color: var(--color-neutral-light); opacity: .85; }
.site-footer a:hover { opacity: 1; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer__tag { color: rgba(240, 249, 255, 0.75); margin-top: 1rem; }
.footer__legal { margin-top: 1.25rem; font-size: .9rem; }
.site-footer address { font-style: normal; color: rgba(240, 249, 255, 0.85); line-height: 1.75; }
.footer__meta { border-top: 1px solid rgba(240, 249, 255, 0.12); margin-top: 2.5rem; padding-top: 1.25rem; font-size: .85rem; color: rgba(240, 249, 255, 0.7); text-align: center; }
.logo--footer img { filter: brightness(0) invert(1); }

/* === 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: 16px; box-shadow: 0 24px 60px -20px rgba(0,0,0,0.5); max-width: 640px; margin-inline: auto; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .95rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner button { font-family: var(--font-heading); font-weight: 600; font-size: .9rem; padding: .55rem 1rem; border-radius: 999px; border: 1px solid rgba(240, 249, 255, 0.3); background: transparent; color: var(--color-neutral-light); cursor: pointer; transition: background .2s var(--ease); }
.cookie-banner button:hover { background: rgba(240, 249, 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: #a86f00; border-color: #a86f00; }
.cookie-banner__prefs { display: grid; gap: .5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(240, 249, 255, 0.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.cookie-banner__prefs [data-cookie-save] { justify-self: start; margin-top: .5rem; }

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