:root {
  --color-primary: #2563EB;
  --color-secondary: #3B82F6;
  --color-accent: #F97316;
  --color-neutral-dark: #1E293B;
  --color-neutral-light: #F8FAFC;
  --color-border: rgba(30, 41, 59, 0.12);
  --color-muted: #64748B;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 20px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(15, 23, 42, 0.18);
  --shadow-lg: 0 30px 60px -25px rgba(15, 23, 42, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-hover: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Base === */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-neutral-dark);
  background: var(--color-neutral-light);
  -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-hover); }
a:hover { color: var(--color-accent); }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-neutral-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}
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-inline: auto; padding-inline: 1.25rem; }
.center { text-align: center; }
.narrow { max-width: 760px; margin-inline: auto; }
.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin: 0 0 1rem;
}
.lede { font-size: 1.1rem; color: var(--color-muted); margin-bottom: 1.5rem; }

/* === Header / Nav (glass) === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  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 .3s var(--ease-hover), box-shadow .3s var(--ease-hover), border-color .3s var(--ease-hover);
}
.site-header.scrolled {
  background: rgba(248, 250, 252, 0.92);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  border-bottom-color: var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--color-neutral-dark); border-radius: 2px; }
.primary-nav { display: none; }
.primary-nav.is-open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.primary-nav ul { list-style: none; margin: 0; padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.25rem; }
.primary-nav a {
  display: block;
  padding: 0.7rem 0.5rem;
  color: var(--color-neutral-dark);
  font-weight: 500;
  font-family: var(--font-heading);
  border-radius: 8px;
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--color-primary); background: rgba(37, 99, 235, 0.06); }
.primary-nav .nav-cta {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  text-align: center;
}
.primary-nav .nav-cta:hover { background: var(--color-secondary); color: var(--color-neutral-light); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: block !important; position: static; background: transparent; border: 0; box-shadow: none; }
  .primary-nav ul { flex-direction: row; align-items: center; padding: 0; gap: 0.25rem; }
  .primary-nav a { padding: 0.55rem 0.9rem; font-size: 0.95rem; }
  .logo img { height: 96px; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s var(--ease-hover), box-shadow .2s var(--ease-hover), background .2s var(--ease-hover), color .2s var(--ease-hover);
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-neutral-light);
  box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(37, 99, 235, 0.6); color: var(--color-neutral-light); }
.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); transform: translateY(-2px); }
.btn-accent {
  background: var(--color-accent);
  color: var(--color-neutral-light);
  box-shadow: 0 10px 30px -10px rgba(249, 115, 22, 0.55);
}
.btn-accent:hover { transform: translateY(-2px); color: var(--color-neutral-light); }
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; border-radius: 6px; }

/* === Hero (centered) === */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 4rem 2rem;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(249, 115, 22, 0.10), transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.14), transparent 60%),
    var(--color-neutral-light);
}
.hero-inner { text-align: center; max-width: 820px; margin-inline: auto; }
.hero-inner h1 { max-width: 24ch; margin-inline: auto; }
.hero-sub { max-width: 52ch; margin: 1rem auto 1.75rem; font-size: 1.15rem; color: var(--color-muted); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.hero-figure { margin-top: 3rem; }
.hero-figure img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 768px) {
  .hero { padding-block: 6rem 3rem; }
}

/* === Sections === */
.section { padding-block: 4rem; }
.section-alt { background: #fff; }
.section-head { margin-bottom: 2.5rem; }
.split-grid { display: grid; gap: 2.5rem; align-items: center; }
.split-figure img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
@media (min-width: 900px) {
  .split-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* === Card grid === */
.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .card-grid { grid-template-columns: repeat(4, 1fr); }
}
.card {
  display: block;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-hover), box-shadow .25s var(--ease-hover), border-color .25s var(--ease-hover);
  color: inherit;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(37, 99, 235, 0.35); }
.card h3 { margin-top: 0.75rem; }
.card p { color: var(--color-muted); font-size: 0.95rem; margin-bottom: 0; }
.card-link { text-decoration: none; }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(59, 130, 246, 0.12));
  color: var(--color-primary);
}

/* === Testimonial === */
.testimonial {
  margin: 0;
  padding: 2.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-neutral-dark);
  margin-bottom: 1rem;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--color-muted);
  font-family: var(--font-body);
}

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), #1E40AF);
  color: var(--color-neutral-light);
  padding-block: 4rem;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(249, 115, 22, 0.25), transparent 55%);
  pointer-events: none;
}
.cta-band h2, .cta-band p { color: var(--color-neutral-light); position: relative; }
.cta-band p { max-width: 56ch; margin-inline: auto; opacity: 0.9; }

/* === Contact form / grid === */
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 3rem; } }
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.contact-form label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0.85rem 0 0.35rem;
  color: var(--color-neutral-dark);
}
.contact-form input, .contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-neutral-light);
  color: var(--color-neutral-dark);
  transition: border-color .2s var(--ease-hover), box-shadow .2s var(--ease-hover);
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
  outline: none;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1.2rem 0 1.2rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-weight: 400;
}
.form-consent input { margin-top: 0.2rem; }
.contact-form button { align-self: flex-start; margin-top: 0.5rem; }

/* === Map placeholder === */
.map-block {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, #E2E8F0, #F1F5F9);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-primary);
}
.map-block p { margin: 0; color: var(--color-muted); font-size: 0.9rem; }

/* === FAQ === */
.faq { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.faq details {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  transition: box-shadow .2s var(--ease-hover);
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--color-neutral-dark);
  padding-right: 1.5rem;
  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.4rem;
  color: var(--color-primary);
  transition: transform .2s var(--ease-hover);
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0.75rem 0 0; color: var(--color-muted); }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(248, 250, 252, 0.75);
  padding-block: 3.5rem 1.5rem;
  margin-top: 4rem;
}
.site-footer h3 {
  color: var(--color-neutral-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.site-footer a { color: rgba(248, 250, 252, 0.75); }
.site-footer a:hover { color: var(--color-accent); }
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.footer-tag { color: rgba(248, 250, 252, 0.6); font-size: 0.95rem; }
.logo-footer img { height: 60px; filter: brightness(0) invert(1); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.site-footer address { font-style: normal; margin-bottom: 1rem; line-height: 1.7; }
.legal-links { flex-direction: row !important; flex-wrap: wrap; gap: 1rem !important; font-size: 0.85rem; }
.copyright {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(248, 250, 252, 0.12);
  font-size: 0.85rem;
  color: rgba(248, 250, 252, 0.55);
  text-align: center;
}

/* === Cookie banner === */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: none;
  z-index: 9999;
  max-width: 520px;
  margin-inline: auto;
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.9rem; color: rgba(248, 250, 252, 0.85); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid rgba(248, 250, 252, 0.25);
  background: transparent;
  color: var(--color-neutral-light);
  transition: background .2s var(--ease-hover);
}
.cookie-banner button:hover { background: rgba(248, 250, 252, 0.08); }
.cookie-banner [data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); }
.cookie-banner [data-cookie-accept]:hover { background: #ea6a12; }
.cookie-banner__prefs { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(248, 250, 252, 0.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; }
.cookie-banner__prefs [data-cookie-save] { align-self: flex-start; margin-top: 0.4rem; background: var(--color-primary); border-color: var(--color-primary); }

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

.compliance-notice { position: relative; z-index: 1000; background: #fdf7e8; border-bottom: 2px solid #c9a227; color: #4a4335; padding: 0.875rem 1.5rem; }
.compliance-notice p { max-width: 68rem; margin: 0 auto; font-size: 0.8125rem; line-height: 1.6; text-align: center; }
.compliance-notice strong { text-transform: uppercase; letter-spacing: 0.04em; }
.compliance-notice__icon { font-size: 1rem; }
