/* === Tokens === */
:root {
  --color-primary: #0369A1;
  --color-secondary: #0EA5E9;
  --color-accent: #22C55E;
  --color-neutral-dark: #0C4A6E;
  --color-neutral-light: #F0F9FF;
  --color-ink: #0B2A3B;
  --color-muted: #486A80;
  --color-border: rgba(12, 74, 110, 0.12);
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 20px rgba(3, 105, 161, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(3, 105, 161, 0.20);
  --shadow-lg: 0 30px 60px -25px rgba(12, 74, 110, 0.35);
}

/* === 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(--color-ink);
  background: #ffffff;
  line-height: 1.6;
  -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-neutral-dark); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; letter-spacing: -0.015em; margin: 0 0 .75rem; font-weight: 600; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--color-neutral-dark); color: #fff; padding: .5rem 1rem; z-index: 10000; }
.skip-link:focus { left: 1rem; top: 1rem; }

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

/* === Header === */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  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 .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 30px -18px rgba(12, 74, 110, 0.35);
  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; }
.nav-toggle { background: none; border: 1px solid var(--color-border); border-radius: 10px; color: var(--color-neutral-dark); padding: .5rem; cursor: pointer; display: inline-flex; }
.primary-nav { display: none; }
.primary-nav a {
  position: relative; display: block; padding: .5rem .25rem; font-weight: 500; color: var(--color-neutral-dark); font-size: .95rem;
}
.primary-nav a::after {
  content: ""; position: absolute; left: .25rem; right: .25rem; bottom: .25rem; 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 a.nav-cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff; padding: .55rem 1rem; border-radius: 999px;
}
.primary-nav a.nav-cta::after { display: none; }
.primary-nav.is-open { display: flex; flex-direction: column; gap: .25rem; padding: 1rem 0; }

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

/* === Hero (centered) === */
.hero { position: relative; padding-block: 4.5rem 4rem; overflow: hidden; text-align: center; }
.hero-glow {
  position: absolute; inset: -20% 10% auto 10%; height: 60%; z-index: -1;
  background: radial-gradient(60% 60% at 50% 40%, rgba(34, 197, 94, 0.12), transparent 70%),
              radial-gradient(70% 70% at 30% 50%, rgba(14, 165, 233, 0.18), transparent 70%);
  filter: blur(20px);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(180deg, var(--color-neutral-light) 0%, #ffffff 100%);
}
.hero-inner { max-width: 780px; margin: 0 auto; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .18em; font-size: .78rem;
  color: var(--color-primary); font-weight: 600; margin: 0 0 1rem;
  padding: .35rem .8rem; background: rgba(14, 165, 233, 0.10); border-radius: 999px;
}
.hero h1 { max-width: 28ch; margin-inline: auto; }
.hero-sub { max-width: 52ch; margin: 1rem auto 2rem; font-size: 1.15rem; color: var(--color-muted); }
.hero-ctas { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.hero-image-wrap { margin-top: 3.5rem; }
.hero-image {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.proof-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1rem;
  color: var(--color-muted); font-size: .9rem; margin-top: 2rem;
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.5rem; border-radius: 999px; font-weight: 600; font-family: var(--font-body);
  font-size: 1rem; cursor: pointer; border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  line-height: 1;
}
.btn-sm { padding: .55rem 1rem; font-size: .9rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #ffffff; box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 45px -15px rgba(3, 105, 161, 0.55); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--color-neutral-dark); border-color: var(--color-border);
}
.btn-ghost:hover { background: var(--color-neutral-light); transform: translateY(-2px); }
.btn-link { background: none; border: 0; color: var(--color-primary); padding: .5rem .75rem; text-decoration: underline; }
.btn:focus-visible { outline: 3px solid rgba(34, 197, 94, 0.4); outline-offset: 3px; }

/* === Sections === */
.section { padding-block: 4.5rem; }
.section-tinted { background: var(--color-neutral-light); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head p { color: var(--color-muted); font-size: 1.05rem; }

/* === Cards grid === */
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .cards-grid { grid-template-columns: repeat(4, 1fr); } }
.contact-grid { max-width: 960px; margin-inline: auto; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: #fff; border-radius: var(--radius-md); padding: 1.75rem;
  border: 1px solid var(--color-border); box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  display: flex; flex-direction: column; gap: .5rem;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(14, 165, 233, 0.35); }
.card p { color: var(--color-muted); font-size: .97rem; margin: 0; }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(3, 105, 161, 0.12), rgba(14, 165, 233, 0.18));
  color: var(--color-primary); margin-bottom: .5rem;
}
a.card-link { color: inherit; text-decoration: none; }
a.card-link h3 { color: var(--color-neutral-dark); transition: color .2s var(--ease); }
a.card-link:hover h3 { color: var(--color-primary); }

/* === Testimonial === */
.testimonial {
  margin: 0; padding: 2.5rem 1.5rem; text-align: center; position: relative;
  border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border);
}
.testimonial p {
  font-family: var(--font-heading); font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: var(--color-neutral-dark); line-height: 1.4; margin-bottom: 1.25rem; font-weight: 500;
}
.testimonial cite { color: var(--color-muted); font-style: normal; font-size: .95rem; letter-spacing: .02em; }

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff; padding-block: 3.5rem; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: -50% -20% auto auto; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.25), transparent 65%); z-index: 0;
}
.cta-inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
@media (min-width: 768px) { .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.cta-band h2 { color: #fff; margin-bottom: .25rem; }
.cta-band p { color: rgba(240, 249, 255, 0.85); margin: 0; max-width: 46ch; }
.cta-band .btn-primary { background: #fff; color: var(--color-primary); }
.cta-band .btn-primary:hover { background: var(--color-neutral-light); color: var(--color-neutral-dark); }

/* === Contact form === */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; background: #fff; padding: 2rem; border-radius: var(--radius-md); border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.form-row { display: flex; flex-direction: column; gap: .35rem; }
.form-row label { font-weight: 500; font-size: .92rem; color: var(--color-neutral-dark); }
.form-row input, .form-row textarea {
  font: inherit; padding: .75rem .9rem; border: 1px solid var(--color-border); border-radius: 10px;
  background: #fff; color: var(--color-ink); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: var(--color-secondary); box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
}
.form-consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--color-muted); }
.form-consent input { margin-top: .2rem; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(240, 249, 255, 0.85); padding-block: 3rem 1.5rem; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(240, 249, 255, 0.12); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1rem; }
.site-footer a { color: rgba(240, 249, 255, 0.85); display: block; padding: .2rem 0; font-size: .95rem; }
.site-footer a:hover { color: #fff; }
.footer-nav { display: flex; flex-direction: column; }
.footer-tagline { color: rgba(240, 249, 255, 0.7); margin-top: .5rem; }
.footer-legal { margin-top: 1rem; font-size: .85rem; }
.footer-legal a { display: inline; padding: 0; }
.logo-footer img { height: 60px; filter: brightness(0) invert(1); }
.footer-copy { padding-top: 1.5rem; font-size: .85rem; color: rgba(240, 249, 255, 0.55); }

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












:root { --brand-accent: hsl(105 72% 44%); --brand-ink: hsl(242 48% 20%); }
.logo { min-width: 0; }
.logo img { max-width: min(100%, 17rem); height: auto; }
.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; } }

:root { --brand-accent: hsl(105 72% 44%); --brand-ink: hsl(242 48% 20%); }
.logo { min-width: 0; }
.logo img { max-width: min(100%, 17rem); height: auto; }
.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; } }

:root { --brand-accent: hsl(105 72% 44%); --brand-ink: hsl(242 48% 20%); }
.logo { min-width: 0; }
.logo img { max-width: min(100%, 17rem); height: auto; }
.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; } }

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