:root {
  --color-primary: #0EA5E9;
  --color-secondary: #38BDF8;
  --color-accent: #F97316;
  --color-neutral-dark: #0C4A6E;
  --color-neutral-light: #F0F9FF;
  --color-text: #0B2A3A;
  --color-muted: #4E6B7A;
  --color-border: rgba(12, 74, 110, 0.12);
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 2px 20px rgba(12, 74, 110, 0.06);
  --shadow-lift: 0 20px 60px -20px rgba(12, 74, 110, 0.25);
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
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.02em; margin: 0 0 0.75rem; }
h1 { font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
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 { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.12em; font-weight: 600; color: var(--color-primary); margin: 0 0 1rem; }

/* === 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 .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: var(--color-border);
  box-shadow: 0 6px 20px -10px rgba(12, 74, 110, 0.2);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.75rem; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle { background: transparent; border: 1px solid var(--color-border); border-radius: 10px; padding: 0.5rem; color: var(--color-neutral-dark); cursor: pointer; display: inline-flex; }
.primary-nav { display: none; }
.primary-nav a { display: block; padding: 0.75rem 0; color: var(--color-neutral-dark); font-weight: 500; position: relative; }
.primary-nav a.is-active { color: var(--color-primary); }

@media (min-width: 900px) {
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav { display: flex; align-items: center; gap: 1.75rem; }
  .primary-nav a { padding: 0.25rem 0; }
  .primary-nav a:not(.btn)::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
    background: var(--color-primary); transform: scaleX(0); transform-origin: left;
    transition: transform .25s var(--ease);
  }
  .primary-nav a:not(.btn):hover::after,
  .primary-nav a.is-active::after { transform: scaleX(1); }
}
.primary-nav.is-open { display: flex; flex-direction: column; align-items: stretch; padding: 0.5rem 0 1rem; gap: 0; border-top: 1px solid var(--color-border); }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.5rem; border-radius: 999px; font-weight: 600;
  font-family: var(--font-heading); font-size: 0.98rem; letter-spacing: 0.01em;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.btn--sm { padding: 0.55rem 1rem; font-size: 0.9rem; }
.btn--primary { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: #fff; box-shadow: 0 10px 24px -12px rgba(14, 165, 233, 0.6); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(14, 165, 233, 0.7); color: #fff; }
.btn--accent { background: var(--color-accent); color: #fff; box-shadow: 0 10px 24px -12px rgba(249, 115, 22, 0.6); }
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(249, 115, 22, 0.7); color: #fff; }
.btn--ghost { background: transparent; color: var(--color-neutral-dark); border-color: var(--color-border); }
.btn--ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn:focus-visible { outline: 3px solid rgba(14, 165, 233, 0.4); outline-offset: 2px; }

/* === Hero === */
.hero { position: relative; overflow: hidden; padding: 3.5rem 0 4rem; }
.hero--spotlight { background: linear-gradient(180deg, var(--color-neutral-light) 0%, #ffffff 100%); }
.hero__glow {
  position: absolute; inset: -20% 10% auto -10%; height: 60%; z-index: 0;
  background: radial-gradient(closest-side, rgba(249, 115, 22, 0.14), transparent 70%),
              radial-gradient(closest-side, rgba(14, 165, 233, 0.2), transparent 70%);
  filter: blur(20px); pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; text-align: center; }
.hero__title { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 800; margin: 0.25rem auto 1rem; max-width: 22ch; }
.hero__sub { font-size: 1.125rem; color: var(--color-muted); max-width: 55ch; margin: 0 auto 1.75rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 2.5rem; }
.hero__visual { margin-top: 2rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); }
.hero__visual img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.proof-strip { display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: center; margin-top: 2rem; font-size: 0.9rem; color: var(--color-muted); font-weight: 500; }
.proof-strip span::before { content: "✓"; color: var(--color-primary); margin-right: 0.4rem; font-weight: 700; }

@media (min-width: 900px) {
  .hero { padding: 5rem 0 5.5rem; }
}

/* === Sections === */
.section { padding-block: 3.5rem; }
.section--muted { background: var(--color-neutral-light); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 2.25rem; }
.section__head p { color: var(--color-muted); }
.section__foot { text-align: center; margin-top: 2rem; }

@media (min-width: 900px) { .section { padding-block: 5rem; } }

/* === Grids === */
.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* === Cards === */
.card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: 1.75rem; box-shadow: var(--shadow-soft);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(56,189,248,0.16)); color: var(--color-primary); margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-muted); margin: 0; }
.card-link { color: inherit; text-decoration: none; display: block; }
.card-link:hover { color: inherit; }
.card-link:hover h3 { color: var(--color-primary); }

/* === Split === */
.split { display: grid; gap: 2.5rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.split__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow-lift); }

/* === Testimonial === */
.testimonial { max-width: 780px; margin: 0 auto; text-align: center; padding: 0 1rem; }
.testimonial p { font-family: var(--font-heading); font-size: clamp(1.25rem, 2.4vw, 1.65rem); line-height: 1.4; color: var(--color-neutral-dark); font-weight: 500; margin-bottom: 1rem; }
.testimonial cite { font-style: normal; color: var(--color-muted); font-size: 0.95rem; }

/* === CTA band === */
.cta-band {
  margin: 0;
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--color-neutral-dark), var(--color-primary));
  color: #fff;
}
.cta-band__inner { display: grid; gap: 1.5rem; align-items: center; grid-template-columns: 1fr; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0; }
.cta-band__meta { font-size: 0.9rem; margin-top: 0.75rem; }
.cta-band__meta a { color: #fff; text-decoration: underline; }
@media (min-width: 800px) {
  .cta-band__inner { grid-template-columns: 1fr auto; text-align: left; }
}

/* === FAQ === */
.faq details {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: 1rem 1.25rem; margin-bottom: 0.75rem; box-shadow: var(--shadow-soft);
}
.faq summary { cursor: pointer; font-weight: 600; font-family: var(--font-heading); color: var(--color-neutral-dark); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::after { content: "+"; color: var(--color-primary); font-size: 1.5rem; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 0.75rem; color: var(--color-muted); }

/* === Contact === */
.contact-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .contact-grid { grid-template-columns: repeat(4, 1fr); } }
.contact-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.5rem; box-shadow: var(--shadow-soft); }
.contact-card h3 { font-size: 1rem; }
.hours { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.hours th, .hours td { text-align: left; padding: 0.3rem 0; }
.hours th { font-weight: 500; color: var(--color-muted); }

/* === Form === */
.contact-form { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-soft); }
.form-row { margin-bottom: 1rem; }
.form-row label { display: block; font-weight: 500; margin-bottom: 0.4rem; color: var(--color-neutral-dark); }
.form-row input, .form-row textarea {
  width: 100%; padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border); border-radius: 10px;
  font-family: inherit; font-size: 1rem; color: var(--color-text); background: #fff;
  transition: border-color .2s;
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(14,165,233,0.15); }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--color-muted); margin-bottom: 1.25rem; }
.form-consent input { margin-top: 0.2rem; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(255,255,255,0.85); padding-top: 3rem; margin-top: 4rem; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; padding-bottom: 2rem; }
@media (min-width: 800px) { .footer__grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 0.75rem; }
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.site-footer address { font-style: normal; margin-bottom: 1rem; }
.logo--footer { display: inline-block; margin-bottom: 0.75rem; background: rgba(255,255,255,0.08); padding: 0.5rem 0.75rem; border-radius: 10px; }
.logo--footer img { height: 40px; }
.legal-links { display: flex; flex-wrap: wrap; gap: 0.75rem; font-size: 0.9rem; }
.footer__copy { border-top: 1px solid rgba(255,255,255,0.12); padding-block: 1.25rem; font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* === Cookie banner === */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem;
  display: none; z-index: 9999; max-width: 520px;
  background: var(--color-neutral-dark); color: var(--color-neutral-light);
  padding: 1.25rem; border-radius: var(--radius-md);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.9rem; font-size: 0.9rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.3); }
.cookie-banner__actions .btn--ghost:hover { border-color: #fff; color: #fff; }
.cookie-banner__prefs { margin-top: 0.9rem; display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.9rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: 0.5rem; }

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