:root {
  --color-primary: #1E3A8A;
  --color-secondary: #3B82F6;
  --color-accent: #CA8A04;
  --color-neutral-dark: #1E40AF;
  --color-neutral-light: #F8FAFC;
  --color-text: #0F172A;
  --color-muted: #475569;
  --color-border: rgba(30, 58, 138, 0.12);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 2px 20px rgba(15, 23, 42, 0.06);
  --shadow-lift: 0 20px 60px -20px rgba(30, 58, 138, 0.35);
}

/* === Base === */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-neutral-light);
  background-image: radial-gradient(1200px 700px at 85% -10%, rgba(59, 130, 246, 0.14), transparent 60%),
                    radial-gradient(900px 600px at -10% 10%, rgba(202, 138, 4, 0.08), transparent 60%);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--font-heading); color: var(--color-primary); line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 0.6em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 600; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 1em; }

.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
.wrap-narrow { max-width: 780px; margin: 0 auto; }
.eyebrow { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-accent); font-weight: 600; margin: 0 0 0.75rem; }
.lede { font-size: 1.1rem; color: var(--color-muted); max-width: 60ch; }

/* === Header / nav === */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 250, 252, 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(248, 250, 252, 0.92); box-shadow: 0 8px 30px -20px rgba(15,23,42,0.25); border-bottom-color: var(--color-border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.9rem 0; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; }
.primary-nav { display: none; }
.primary-nav a { display: block; padding: 0.6rem 0.9rem; font-weight: 500; color: var(--color-text); border-radius: 8px; position: relative; }
.primary-nav a::after { content: ''; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.35rem; height: 2px; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.primary-nav a:hover { text-decoration: none; }
.primary-nav a:hover::after, .primary-nav a.is-current::after { transform: scaleX(1); }
.primary-nav a.nav-cta { background: var(--color-primary); color: #fff; padding: 0.55rem 1rem; border-radius: 999px; }
.primary-nav a.nav-cta::after { display: none; }
.primary-nav a.nav-cta:hover { background: var(--color-neutral-dark); }

.nav-toggle { display: inline-flex; flex-direction: column; gap: 4px; width: 40px; height: 40px; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--color-border); border-radius: 10px; cursor: pointer; }
.nav-toggle span { width: 20px; height: 2px; background: var(--color-primary); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.primary-nav.is-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; padding: 1rem 1.25rem 1.5rem; background: rgba(248,250,252,0.98); backdrop-filter: blur(16px); border-bottom: 1px solid var(--color-border); }

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

/* === Buttons === */
.btn { display: inline-block; padding: 0.85rem 1.4rem; border-radius: 999px; font-weight: 600; font-family: var(--font-heading); font-size: 0.98rem; border: 1px solid transparent; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s; }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; box-shadow: 0 10px 24px -14px rgba(30,58,138,0.7); }
.btn-primary:hover { box-shadow: 0 16px 32px -14px rgba(30,58,138,0.8); }
.btn-accent { background: var(--color-accent); color: #fff; box-shadow: 0 10px 24px -14px rgba(202,138,4,0.6); }
.btn-accent:hover { background: #a97404; }
.btn-ghost { background: transparent; color: var(--color-primary); border-color: var(--color-border); }
.btn-ghost:hover { background: rgba(30,58,138,0.06); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

/* === Hero card === */
.hero { padding: 2.5rem 0 1rem; }
.hero-card__box {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 2.25rem;
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.hero-card__box::before {
  content: '';
  position: absolute; inset: -40% -20% auto auto;
  width: 500px; height: 500px;
  background: radial-gradient(circle at center, rgba(59,130,246,0.18), transparent 60%);
  pointer-events: none;
}
.hero-card__figure { margin: 1.8rem 0 0; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 40px -24px rgba(15,23,42,0.35); }
.hero-card__figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
@media (min-width: 768px) { .hero-card__box { padding: 3.5rem; } .hero { padding: 4rem 0 2rem; } }

/* === Sections === */
.section { padding: 3.5rem 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head p { color: var(--color-muted); }

/* === Grid === */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* === Cards === */
.card {
  display: block;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  color: var(--color-text);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
  box-shadow: var(--shadow-soft);
}
.card h3 { margin-top: 0.3rem; }
.card p { color: var(--color-muted); margin-bottom: 0; }
.card-link:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -22px rgba(30,58,138,0.4); border-color: rgba(30,58,138,0.25); text-decoration: none; }
.card-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(59,130,246,0.12); color: var(--color-primary); margin-bottom: 0.75rem; }
.stat-card h3 { color: var(--color-accent); font-size: 1.35rem; }

.intro-split__figure img { border-radius: var(--radius-md); box-shadow: var(--shadow-soft); aspect-ratio: 4/5; object-fit: cover; }

/* === Testimonial === */
.testimonial-band { background: linear-gradient(135deg, rgba(30,58,138,0.04), rgba(59,130,246,0.06)); }
.testimonial { max-width: 780px; margin: 0 auto; text-align: center; padding: 1rem; position: relative; }
.testimonial p { font-size: 1.2rem; line-height: 1.6; color: var(--color-text); font-family: var(--font-heading); font-weight: 500; }
.testimonial cite { display: block; margin-top: 1rem; color: var(--color-muted); font-style: normal; font-size: 0.95rem; }
.testimonial-portrait { width: 84px; height: 84px; border-radius: 999px; overflow: hidden; margin: 0 auto 1.25rem; box-shadow: var(--shadow-soft); }
.testimonial-portrait img { width: 100%; height: 100%; object-fit: cover; }

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

/* === FAQ === */
.faq details { border-bottom: 1px solid var(--color-border); padding: 1rem 0; }
.faq summary { cursor: pointer; font-weight: 600; font-family: var(--font-heading); color: var(--color-primary); font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--color-accent); font-size: 1.4rem; line-height: 1; transition: transform .2s; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 0.75rem; color: var(--color-muted); }

/* === Contact === */
.contact-grid { align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-soft); }
.hours { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.hours th, .hours td { text-align: left; padding: 0.4rem 0.5rem 0.4rem 0; border-bottom: 1px solid var(--color-border); font-weight: 400; font-size: 0.95rem; }
.hours th { color: var(--color-muted); width: 40%; }

.contact-form { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 0.35rem; }
.contact-form label { font-weight: 500; font-size: 0.92rem; margin-top: 0.6rem; color: var(--color-text); }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.7rem 0.85rem; border: 1px solid var(--color-border); border-radius: 10px; font-family: var(--font-body); font-size: 1rem; background: var(--color-neutral-light); color: var(--color-text); transition: border-color .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-secondary); box-shadow: 0 0 0 3px rgba(59,130,246,0.2); }
.contact-form .btn { margin-top: 1.2rem; align-self: flex-start; }
.form-consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--color-muted); margin-top: 1rem; font-weight: 400; }
.form-consent input { width: auto; margin-top: 0.25rem; }

/* === Footer === */
.site-footer { background: var(--color-primary); color: rgba(255,255,255,0.85); padding: 3rem 0 1.5rem; margin-top: 3rem; }
.site-footer h3 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: var(--color-accent); text-decoration: none; }
.footer-grid { gap: 2rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.35rem; }
.logo--footer img { height: 64px; }
.logo--footer { margin-bottom: 1rem; }
.footer-legal { font-size: 0.85rem; margin-top: 1rem; }
.copyright { text-align: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.15); font-size: 0.85rem; color: rgba(255,255,255,0.65); }
address { font-style: normal; }











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

:root { --brand-accent: hsl(71 72% 44%); --brand-ink: hsl(66 48% 20%); }
.logo { min-width: 0; }
.logo img { max-width: min(100%, 17rem); height: auto; }
.reveal, .fade-in, .animate-in, [data-reveal], [data-animate], .scroll-reveal { opacity: 1 !important; transform: none !important; visibility: visible !important; }
.site-legal { min-height: 100vh; display: flex; flex-direction: column; }
.legal-main { flex: 1; padding: clamp(2rem, 6vw, 5rem) 1.25rem; }
.legal-card { width: min(100%, 52rem); margin: 0 auto; }
.legal-card h1, .legal-card h2 { color: var(--brand-ink, currentColor); }
.legal-date { margin-top: 2rem; opacity: .72; }
@media (max-width: 780px) { .site-header .container { gap: .75rem; } .site-header .logo { max-width: calc(100% - 3.75rem); } [data-nav-menu].is-open, .site-nav.is-open, .primary-nav.is-open, .nav-links.is-open { display: flex !important; } }
