:root {
  --color-primary: #1E40AF;
  --color-secondary: #3B82F6;
  --color-accent: #F97316;
  --color-neutral-dark: #1E3A8A;
  --color-neutral-light: #EFF6FF;
  --text: #0F172A;
  --text-muted: #475569;
  --border: rgba(30, 58, 138, 0.12);
  --shadow-sm: 0 2px 20px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(30, 64, 175, 0.25);
  --shadow-lg: 0 30px 60px -20px rgba(30, 64, 175, 0.35);
  --radius: 16px;
  --radius-lg: 24px;
  --font-heading: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* === Reset & base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--color-secondary); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 .8rem; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.narrow { max-width: 760px; margin-inline: auto; }
.center { text-align: center; }

/* === Header / glass nav === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(239, 246, 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 var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 6px 24px -12px rgba(30, 64, 175, 0.18);
  border-color: var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 84px; gap: 1rem;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; }
.nav-toggle {
  background: transparent; border: 1px solid var(--border);
  color: var(--color-primary); padding: .5rem; border-radius: 10px;
  cursor: pointer; display: inline-flex;
}
.primary-nav { display: none; }
.primary-nav a {
  font-weight: 500; color: var(--color-neutral-dark);
  padding: .5rem 0; position: relative;
}
.primary-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--color-accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav .nav-cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff; padding: .7rem 1.2rem; border-radius: 999px;
  font-weight: 600; box-shadow: var(--shadow-sm);
}
.primary-nav .nav-cta::after { display: none; }
.primary-nav .nav-cta:hover { color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.primary-nav.is-open {
  display: flex; flex-direction: column; gap: .25rem;
  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(--border);
}

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

/* === Hero === */
.hero {
  position: relative; overflow: hidden;
  padding: 4rem 0 3rem;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(249, 115, 22, 0.12), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(59, 130, 246, 0.18), transparent 60%),
    linear-gradient(180deg, var(--color-neutral-light) 0%, #ffffff 100%);
}
.hero-inner-page { padding: 3rem 0 2rem; }
.hero-inner { display: flex; flex-direction: column; gap: 1.25rem; }
.eyebrow {
  font-family: var(--font-heading); text-transform: uppercase;
  letter-spacing: .12em; font-size: .8rem; font-weight: 600;
  color: var(--color-secondary); margin: 0;
}
.hero-sub {
  font-size: 1.15rem; color: var(--text-muted); max-width: 58ch;
  margin: 0;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .5rem; }
.hero-visual { margin-top: 1.5rem; }
.hero-visual img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 10; object-fit: cover;
}
.proof-strip {
  list-style: none; padding: 1.25rem; margin: 2rem 0 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.proof-strip li { color: var(--text-muted); font-size: .95rem; }
.proof-strip strong {
  display: block; font-family: var(--font-heading);
  font-size: 1.5rem; color: var(--color-primary); font-weight: 700;
}

@media (min-width: 900px) {
  .hero { padding: 6rem 0 5rem; }
  .hero-inner { max-width: 900px; }
  .hero-visual img { aspect-ratio: 21 / 9; }
  .proof-strip { grid-template-columns: repeat(4, 1fr); }
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 600;
  padding: .95rem 1.6rem; border-radius: 999px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  font-size: 1rem; line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff; box-shadow: var(--shadow-sm);
}
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent; color: var(--color-primary);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--color-neutral-light); transform: translateY(-2px); }
.btn-accent {
  background: var(--color-accent); color: #fff;
  box-shadow: 0 8px 24px -8px rgba(249, 115, 22, 0.55);
}
.btn-accent:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(249, 115, 22, 0.75); }
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }

/* === Sections === */
.section { padding: 4rem 0; }
.section-tint {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(59, 130, 246, 0.08), transparent 55%),
    var(--color-neutral-light);
}
.section-head { max-width: 720px; margin: 0 auto 2.5rem; text-align: center; }
.section-head p { color: var(--text-muted); }

/* === Grid & cards === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: #fff; border: 1px solid var(--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);
  display: block;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(30, 64, 175, 0.25); }
.card-link { color: inherit; text-decoration: none; }
.card-link:hover { color: inherit; }
.card p { color: var(--text-muted); margin-bottom: 0; }
.card h3 { margin-bottom: .5rem; }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(30, 64, 175, 0.15));
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.card-span-2 { grid-column: 1 / -1; }
@media (min-width: 640px) { .card-span-2 { grid-column: span 2; } }

/* === Testimonial === */
.testimonial {
  margin: 0; padding: 2.5rem;
  background: linear-gradient(135deg, var(--color-neutral-light), #fff);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.testimonial p {
  font-family: var(--font-heading); font-size: 1.2rem;
  line-height: 1.5; color: var(--color-neutral-dark);
  font-weight: 500;
}
.testimonial cite {
  display: block; margin-top: 1rem; font-style: normal;
  color: var(--text-muted); font-size: .95rem;
}

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff; padding: 3.5rem 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(249, 115, 22, 0.25), transparent 55%);
  pointer-events: none;
}
.cta-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(239, 246, 255, 0.85); margin: 0; max-width: 60ch; }
@media (min-width: 800px) {
  .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* === Contact band === */
.contact-band {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.contact-band p { margin: 0; color: var(--text-muted); }
@media (min-width: 800px) {
  .contact-band { flex-direction: row; align-items: center; justify-content: space-between; padding: 2.25rem 2.5rem; }
  .contact-band p { flex: 1; }
}

/* === FAQ === */
.faq { display: flex; flex-direction: column; gap: .75rem; }
.faq details {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s var(--ease);
}
.faq details[open] { border-color: rgba(30, 64, 175, 0.3); }
.faq summary {
  cursor: pointer; font-family: var(--font-heading); font-weight: 600;
  color: var(--color-neutral-dark); list-style: none;
  padding: .5rem 2rem .5rem 0; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%); font-size: 1.5rem; color: var(--color-accent);
  transition: transform .2s var(--ease);
}
.faq details[open] summary::after { content: '−'; }
.faq details p { padding: .5rem 0 0; color: var(--text-muted); margin: 0; }

/* === Contact form === */
.contact-form {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1rem;
}
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-weight: 600; color: var(--color-neutral-dark); font-size: .95rem; }
.field input, .field select, .field textarea {
  font: inherit; padding: .8rem 1rem;
  border: 1px solid var(--border); border-radius: 10px;
  background: #fff; color: var(--text);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}
.field textarea { resize: vertical; min-height: 140px; }
.form-consent {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .9rem; color: var(--text-muted); line-height: 1.5;
}
.form-consent input { margin-top: .2rem; }
.contact-form .btn { align-self: flex-start; }

/* === Footer === */
.site-footer {
  background: #0B1E4A;
  color: #cdd8f0; padding: 3.5rem 0 2rem; margin-top: 2rem;
}
.site-footer h4 {
  color: #fff; font-family: var(--font-heading);
  font-size: 1rem; text-transform: uppercase; letter-spacing: .1em;
  margin: 0 0 1rem;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.footer-nav { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a, .footer-contact a { color: #cdd8f0; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--color-accent); }
.footer-tag { color: #9db1d9; margin: .5rem 0 0; font-size: .95rem; }
.footer-contact p { margin: 0 0 .4rem; color: #cdd8f0; }
.logo-footer img { height: 56px; filter: brightness(0) invert(1); opacity: .95; }
.legal-links { margin-top: 1rem !important; font-size: .9rem; }
.copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem; margin-top: 2.5rem;
  color: #9db1d9; font-size: .85rem;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1.5fr; gap: 3rem; }
}












/* === Reveal on scroll === */
.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; }
}

:root { --brand-accent: hsl(186 72% 44%); --brand-ink: hsl(156 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; } }
