:root {
  --bg: #f4f7fb;
  --bg-soft: #eef3f9;
  --surface: #ffffff;
  --surface-2: #f9fbfe;
  --text: #132238;
  --heading: #0c2d6b;
  --muted: #5f6f85;
  --line: #d8e1ee;
  --line-strong: #c7d3e6;
  --brand: #0c2d6b;
  --brand-strong: #08204d;
  --brand-soft: #e8eefb;
  --accent: #ef3b2d;
  --accent-strong: #d92d20;
  --success: #0f766e;
  --shadow-sm: 0 8px 24px rgba(12, 45, 107, 0.06);
  --shadow: 0 18px 50px rgba(12, 45, 107, 0.08);
  --shadow-lg: 0 24px 60px rgba(12, 45, 107, 0.12);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 30px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(12, 45, 107, 0.05), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(239, 59, 45, 0.2);
  outline-offset: 2px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* Header / Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(12, 45, 107, 0.08);
  box-shadow: 0 6px 24px rgba(12, 45, 107, 0.04);
}

.navbar {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--heading);
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand small {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex: 0 0 auto;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--heading);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-shell {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  color: #41516b;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--brand);
  background: var(--brand-soft);
}

.nav-links a.active {
  color: #ffffff;
  background: var(--brand);
  box-shadow: 0 10px 22px rgba(12, 45, 107, 0.18);
}

.nav-cta {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

/* Buttons */
.btn {
  appearance: none;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(180deg, #ff4a3a 0%, var(--accent) 100%);
  color: #ffffff;
  border-color: var(--accent);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(180deg, #ff5849 0%, var(--accent-strong) 100%);
}

.btn-secondary,
.btn-outline {
  background: #ffffff;
  color: var(--brand);
  border-color: var(--line-strong);
}

.btn-secondary:hover,
.btn-outline:hover,
.btn-secondary:focus-visible,
.btn-outline:focus-visible {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.btn-nav {
  min-height: 48px;
  padding-inline: 22px;
}

/* Sections */
.page-hero,
.hero {
  padding: 82px 0 62px;
}

section,
.section,
.section-block {
  padding: 64px 0;
}

/* Typography */
.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  border: 1px solid rgba(12, 45, 107, 0.08);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge::before,
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

h1,
.h1 {
  margin: 14px 0 18px;
  color: var(--heading);
  font-size: clamp(2.2rem, 4.8vw, 3.85rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

h2,
.h2 {
  margin: 0 0 14px;
  color: var(--heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3,
.h3 {
  margin: 0 0 12px;
  color: var(--heading);
  font-size: 1.24rem;
}

h4 {
  margin: 0 0 10px;
  color: var(--heading);
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.lead {
  max-width: 64ch;
  font-size: 1.1rem;
}

.small {
  font-size: 0.92rem;
  color: var(--muted);
}

.center {
  text-align: center;
}

/* Layout grids */
.hero-grid,
.two-col,
.card-grid,
.footer-grid,
.form-grid,
.info-grid,
.split,
.trust-grid,
.steps-grid,
.logo-grid,
.trust-strip-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: 34px;
}

.two-col,
.split,
.form-grid,
.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-grid,
.logo-grid,
.trust-strip-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 30px;
}

/* Cards / Panels */
.card,
.panel,
.job,
.glass,
.form-panel,
.highlight,
.hero-card,
.small-card,
.trust-mini,
.cta-banner,
.info {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(249,251,254,0.98) 100%);
  border: 1px solid rgba(12, 45, 107, 0.1);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(248,250,253,0.96) 100%);
}

.card:hover,
.job:hover,
.small-card:hover,
.trust-mini:hover,
.panel:hover,
.hero-card:hover,
.cta-banner:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.hero-card,
.hero-float {
  padding: 30px;
}

.highlight {
  background: linear-gradient(135deg, #ffffff 0%, #f3f7fd 55%, #edf3fc 100%);
}

.image-wrap {
  overflow: hidden;
  border-radius: calc(var(--radius) - 4px);
  margin-bottom: 18px;
}

.image-wrap img {
  width: 100%;
  height: auto;
}

.icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--brand-soft) 0%, #ffffff 100%);
  color: var(--brand);
  font-size: 1.35rem;
  font-weight: 900;
  border: 1px solid rgba(12, 45, 107, 0.08);
}

/* Lists / actions */
.hero-actions,
.cta-row,
.cookie-actions,
.quick-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.quick-badges {
  margin-top: 20px;
}

.quick-badges .badge {
  padding: 10px 15px;
  font-size: 0.78rem;
}

.checklist,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li,
.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--muted);
}

.checklist li::before,
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}

.section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.text-link {
  color: var(--brand);
  font-weight: 800;
}

.text-link:hover {
  color: var(--accent);
}

/* Trust strip */
.trust-strip {
  padding: 0 0 8px;
}

.trust-strip-grid > div {
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(12, 45, 107, 0.1);
  box-shadow: var(--shadow-sm);
}

.trust-strip-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--heading);
}

.trust-strip-grid span {
  color: var(--muted);
}

/* Logos / compliance */
.logo-grid {
  align-content: start;
}

.compliance-logo {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(12, 45, 107, 0.1);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.compliance-logo img {
  max-height: 72px;
  width: auto;
}

/* Map */
.map-wrap iframe,
.map-wrap img {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: var(--radius);
}

/* Forms */
.form-panel {
  padding: 30px;
}

.form-grid {
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--heading);
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: #ffffff;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(12, 45, 107, 0.45);
  box-shadow: 0 0 0 4px rgba(12, 45, 107, 0.08);
}

.form-note {
  color: var(--muted);
  font-size: 0.94rem;
}

/* Footer */
.footer {
  margin-top: 28px;
  padding: 54px 0 42px;
  background: #ffffff;
  border-top: 1px solid rgba(12, 45, 107, 0.08);
}

.footer p,
.footer a,
.site-footer p,
.site-footer a {
  color: var(--muted);
}

.footer h4,
.site-footer h4 {
  color: var(--heading);
}

.footer .brand,
.site-footer .brand {
  color: var(--heading);
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(12, 45, 107, 0.1);
  box-shadow: var(--shadow);
  color: var(--heading);
  font-weight: 700;
}

/* Cookies */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(12, 45, 107, 0.12);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.cookie-panel {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(7, 20, 47, 0.52);
}

.cookie-modal {
  width: min(720px, 100%);
  padding: 28px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(12, 45, 107, 0.12);
  box-shadow: var(--shadow-lg);
}

.cookie-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.toggle {
  position: relative;
  flex: 0 0 auto;
  width: 56px;
  height: 32px;
  border-radius: 999px;
  background: #c4cfdf;
  cursor: pointer;
  transition: 0.2s ease;
}

.toggle::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}

.toggle.active {
  background: var(--brand);
}

.toggle.active::after {
  transform: translateX(24px);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Jobs */
#featuredVacatures .card-grid,
#jobsContainer {
  margin-top: 8px;
}

#jobsContainer .job + .job {
  margin-top: 18px;
}

/* Utility */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-12 { margin-bottom: 12px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.w-100 { width: 100% !important; }

/* Responsive */
@media (max-width: 1180px) {
  .navbar {
    min-height: 86px;
    gap: 16px;
  }

  .nav-links a {
    padding-inline: 13px;
    font-size: 0.94rem;
  }

  .btn-nav {
    padding-inline: 18px;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .navbar {
    min-height: auto;
    align-items: center;
    flex-wrap: wrap;
    padding: 14px 0;
    gap: 12px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-shell {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding-top: 12px;
  }

  .nav-shell.open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
  }

  .nav-links a {
    width: 100%;
    justify-content: flex-start;
    border-radius: 16px;
    padding: 14px 16px;
  }

  .nav-cta {
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .hero-grid,
  .two-col,
  .split,
  .form-grid,
  .info-grid,
  .steps-grid,
  .trust-grid,
  .trust-strip-grid,
  .logo-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .form-panel,
  .card,
  .panel,
  .job,
  .glass,
  .highlight,
  .cta-banner,
  .trust-mini,
  .small-card,
  .info {
    padding: 24px;
  }
}

@media (max-width: 720px) {
  body {
    line-height: 1.58;
  }

  .brand {
    width: 100%;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .page-hero,
  .hero {
    padding: 46px 0 34px;
  }

  section,
  .section,
  .section-block {
    padding: 38px 0;
  }

  h1,
  .h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  h2,
  .h2 {
    font-size: clamp(1.55rem, 6vw, 2.2rem);
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .cookie-row {
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    padding: 10px 13px;
    gap: 8px;
    font-size: 0.9rem;
  }

  .whatsapp-float small {
    display: none;
  }
}