:root {
  --blue: #0067c7;
  --blue-dark: #004f9d;
  --navy: #101c2b;
  --ink: #202a35;
  --muted: #eff4fa;
  --line: #cbd6e2;
  --white: #fff;
  --success: #147a3d;
  --error: #a51d18;
  color-scheme: light;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-padding-top: 5.5rem; }
body { margin: 0; color: var(--ink); background: #f8fafc; line-height: 1.65; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
main section[id] { scroll-margin-top: 5.5rem; }
a { color: var(--blue-dark); text-underline-offset: .18em; }
a:hover { color: #003d7a; }
img, svg, video, iframe { max-width: 100%; }
img { height: auto; }
button, input, textarea { font: inherit; }
:focus-visible { outline: .2rem solid #ffbf47; outline-offset: .2rem; }
.sr-only, .honeypot { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; z-index: 10000; left: 1rem; top: 1rem; padding: .7rem 1rem; background: var(--white); border: .18rem solid var(--blue); transform: translateY(-180%); }
.skip-link:focus { transform: none; }

.site-header { position: sticky; z-index: 1000; top: 0; color: var(--white); background: #626e78; border-bottom: .2rem solid rgba(255,255,255,.7); }
.header-inner { display: flex; align-items: center; gap: 2rem; width: min(100% - 2rem, 76rem); min-height: 5rem; margin: 0 auto; }
.brand { flex: 0 0 auto; line-height: 0; }
.brand img { width: 4.8rem; height: 3.25rem; object-fit: contain; }
.primary-nav { display: flex; align-items: center; justify-content: flex-end; flex: 1; gap: clamp(.7rem, 1.5vw, 1.25rem); }
.primary-nav a { color: var(--white); font-size: .92rem; text-decoration: none; text-transform: uppercase; letter-spacing: .02em; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { text-decoration: underline; text-decoration-thickness: .12rem; }
.language-links { display: inline-flex; gap: .7rem; padding-left: .3rem; }
.menu-toggle { display: none; width: 3rem; height: 3rem; margin-left: auto; padding: .65rem; border: 0; color: var(--white); background: transparent; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; height: .14rem; margin: .3rem 0; background: currentColor; }

.section-inner { width: min(100% - 2rem, 72rem); margin: 0 auto; }
.section-inner.narrow { width: min(100% - 2rem, 58rem); }
section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
section.muted { background: var(--muted); }
h1, h2, h3 { margin-top: 0; line-height: 1.2; text-wrap: balance; }
h1 { font-size: clamp(2.25rem, 6vw, 4.8rem); }
h2 { margin-bottom: 2rem; color: var(--blue-dark); font-size: clamp(1.8rem, 4vw, 2.65rem); text-align: center; }
h3 { font-size: 1.25rem; }
p { max-width: 72ch; }
.hero { display: grid; align-items: center; min-height: min(46rem, calc(100svh - 5rem)); color: var(--white); background: linear-gradient(125deg, rgba(8,26,44,.93), rgba(0,103,199,.80)), url("/images/1200x630/18711171/PreviewimageENERAZ-CWPHCAzUymbUKo3G1RhTFg.png") center/cover; }
.hero h1 { max-width: 15ch; margin-bottom: 1.2rem; }
.hero p:not(.eyebrow) { max-width: 46rem; font-size: clamp(1.1rem, 2.4vw, 1.45rem); }
.eyebrow { font-weight: 700; letter-spacing: .18em; }
.primary-button, .secondary-button { display: inline-flex; align-items: center; justify-content: center; min-height: 3rem; padding: .75rem 1.4rem; border: .13rem solid var(--blue); border-radius: .35rem; font-weight: 700; text-decoration: none; cursor: pointer; }
.primary-button { color: var(--white); background: var(--blue); }
.primary-button:hover { color: var(--white); background: var(--blue-dark); border-color: var(--blue-dark); }
.secondary-button { color: var(--blue-dark); background: var(--white); }
.secondary-button:hover { color: var(--white); background: var(--blue-dark); }
.section-lead { margin: -1rem auto 2.4rem; text-align: center; }
.section-action { margin: 2.5rem auto 0; text-align: center; }

.card-grid { display: grid; gap: 1.35rem; }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { overflow: hidden; background: var(--white); border: .08rem solid var(--line); border-top: .28rem solid var(--blue); box-shadow: 0 .35rem 1.2rem rgba(14,36,59,.08); }
.card > img { display: block; width: 100%; height: 14rem; object-fit: contain; padding: 1rem; background: #f4f7fb; }
.card-body { padding: 1.3rem; }
.card-body p { margin-bottom: 0; }
.card-icon { display: grid; place-items: center; width: 3rem; height: 3rem; margin: 1.3rem 1.3rem 0; color: var(--white); background: var(--blue); border-radius: 50%; }

.faq-list { display: grid; gap: .8rem; }
.faq-list details { padding: 0 1.2rem; background: var(--white); border: .08rem solid var(--line); }
.faq-list summary { padding: 1rem 0; color: var(--ink); font-weight: 700; cursor: pointer; }
.faq-list p { padding-bottom: 1rem; margin: 0; }
.contact-section { background: var(--muted); }
.contact-form { display: grid; gap: 1rem; }
.contact-form label:not(.privacy-check) { display: grid; gap: .35rem; font-weight: 700; }
.contact-form input:not([type="checkbox"]), .contact-form textarea { width: 100%; padding: .85rem 1rem; color: var(--ink); background: var(--white); border: .1rem solid #627182; border-radius: .2rem; }
.contact-form textarea { min-height: 12rem; resize: vertical; }
.privacy-check { display: flex; align-items: flex-start; gap: .65rem; }
.privacy-check input { flex: 0 0 auto; width: 1.25rem; height: 1.25rem; margin-top: .18rem; }
.turnstile-wrap { min-height: 4.5rem; }
.contact-form button[disabled] { cursor: not-allowed; opacity: .65; }
.form-status { min-height: 1.7em; margin: 0; font-weight: 700; }
.form-status[data-state="success"] { color: var(--success); }
.form-status[data-state="error"] { color: var(--error); }
.page-hero { padding: 4rem 0 2.5rem; background: var(--muted); }
.page-hero h1, .policy-page h1 { color: var(--blue-dark); text-align: center; }
.page-hero p { margin-inline: auto; text-align: center; }
.policy-page { padding: 4rem 0; }
.policy-page article > section { padding: 1rem 0; }
.policy-page h2 { margin: 0 0 .6rem; font-size: 1.35rem; text-align: left; }
.email-image { display: inline-block; width: auto; height: 1.15em; vertical-align: -.15em; }

.site-footer { color: var(--white); background: #004d92; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1.25fr .85fr .85fr; gap: 2.5rem; width: min(100% - 2rem, 76rem); margin: 0 auto; padding: 3rem 0; }
.site-footer h2 { margin-bottom: 1rem; color: var(--white); font-size: 1.35rem; text-align: left; letter-spacing: .04em; }
.site-footer p, .site-footer address, .site-footer li, .site-footer a { color: var(--white); font-size: 1rem; font-weight: 400; font-style: normal; }
.site-footer ul { padding: 0; margin: 0; list-style: none; }
.site-footer li + li { margin-top: .35rem; }
.site-footer a:hover { color: #fff; text-decoration-thickness: .14rem; }
.footer-email { display: flex; align-items: center; flex-wrap: wrap; gap: .35rem; }
.email-image--footer { height: .96em; filter: brightness(0) invert(1); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: min(100% - 2rem, 76rem); margin: 0 auto; padding: 1rem 0; border-top: .08rem solid rgba(255,255,255,.5); }
.footer-bottom p { margin: 0; }
.cookie-manage { padding: .3rem .6rem; color: var(--white); background: transparent; border: .08rem solid var(--white); border-radius: .25rem; cursor: pointer; }

.cookie-banner[hidden] { display: none !important; }
.cookie-banner { position: fixed; z-index: 2000; inset: auto 0 0; color: var(--white); background: var(--navy); border-top: .25rem solid #168be8; box-shadow: 0 -.5rem 1.5rem rgba(0,0,0,.3); }
.cookie-banner__inner { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 2rem; width: min(100% - 2rem, 76rem); margin: 0 auto; padding: 1.3rem 0; }
.cookie-banner p { max-width: none; margin: 0; }
.cookie-banner a { color: var(--white); }
.cookie-banner__actions { display: flex; align-items: center; gap: .7rem; }
.cookie-banner button { min-width: 11rem; min-height: 3.2rem; padding: .7rem 1.3rem; color: var(--white); background: #0879b6; border: .1rem solid #41b9ff; border-radius: 999px; font-weight: 700; text-transform: uppercase; cursor: pointer; }
.cookie-banner button:hover { background: #005f96; }
.cookie-banner button.cookie-secondary { color: var(--white); background: transparent; border-color: #fff; }
.cookie-banner button.cookie-secondary:hover { color: var(--navy); background: var(--white); }
.menu-open .cookie-banner { visibility: hidden; pointer-events: none; }

@media (max-width: 62rem) {
  .card-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-toggle { display: block; }
  .primary-nav { position: fixed; inset: 5rem 0 0; display: none; align-content: start; justify-content: center; padding: 2rem 1rem 6rem; overflow-y: auto; color: var(--ink); background: rgba(248,250,252,.98); }
  .menu-open .primary-nav { display: grid; }
  .primary-nav a { color: var(--ink); font-size: clamp(1.25rem, 5vw, 1.8rem); text-align: center; }
  .language-links { justify-content: center; padding: .8rem 0 0; }
}

@media (max-width: 45rem) {
  html { scroll-padding-top: 4.4rem; }
  main section[id] { scroll-margin-top: 4.4rem; }
  .header-inner { min-height: 4.4rem; }
  .primary-nav { inset-block-start: 4.4rem; }
  section { padding: 3.5rem 0; }
  .card-grid.three, .card-grid.four { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .cookie-banner__inner { grid-template-columns: 1fr; gap: 1rem; max-height: 72svh; overflow-y: auto; }
  .cookie-banner__actions { display: grid; grid-template-columns: 1fr; }
  .cookie-banner button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; }
}
