/* ============================================================
   NextRenew design system copied from the live WordPress build
   ============================================================ */

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Poppins-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Clash Grotesk";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/ClashGrotesk-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Clash Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/ClashGrotesk-Bold.woff2") format("woff2");
}

:root {
  --c-primary: #F97316;
  --c-secondary: #003366;
  --c-orange: #F97316;
  --c-orange-dark: #D85E08;
  --c-white: #FFFFFF;
  --c-soft: #F2FBFF;
  --c-blue-tint: #EEF7FB;
  --c-text: #003366;
  --c-muted: #48687F;
  --c-border: rgba(0, 51, 102, .12);
  --c-shadow: rgba(0, 33, 66, .16);

  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Clash Grotesk", "Poppins", system-ui, sans-serif;
  --container: 1250px;
  --radius: 10px;
  --speed: .3s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  min-width: 320px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: inline-block; max-width: 100%; vertical-align: middle; }
ul[class] { list-style: none; }
address { font-style: normal; }

a { color: var(--c-secondary); text-decoration: none; transition: color var(--speed); }
a:hover { color: var(--c-orange); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  color: var(--c-white);
  font-size: clamp(2.375rem, 6vw, 4.375rem);
  line-height: 1.1;
  overflow-wrap: break-word;
}

h2 {
  color: var(--c-secondary);
  font-size: clamp(1.875rem, 4.4vw, 3.25rem);
  line-height: 1.1;
}

h3 {
  color: var(--c-secondary);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.12;
}

p { margin: 0; }
strong, b { font-weight: 700; }

:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.narrow { max-width: 800px; }
.center { text-align: center; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--c-orange);
  color: var(--c-white);
  padding: .8rem 1.2rem;
}

.skip-link:focus { left: 0; color: var(--c-white); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 52px;
  padding: 20px 35px;
  border: 0;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  max-width: 100%;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: background var(--speed), color var(--speed), transform var(--speed), border-color var(--speed), opacity var(--speed);
}

.btn::after {
  content: "\2192";
  flex: 0 0 1.1em;
  width: 1.1em;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity var(--speed), transform var(--speed);
}

.btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.btn:active { transform: translateY(1px); }
.btn:disabled,
.btn[aria-disabled="true"] {
  cursor: progress;
  opacity: .68;
}
.btn--lg { min-height: 66px; }
.btn--sm { min-height: 40px; padding: 12px 22px; font-size: 14px; }

.btn--primary {
  background: var(--c-orange);
  color: var(--c-white);
}

.btn--primary:hover, .btn--primary:focus {
  background: var(--c-orange);
  color: var(--c-white);
}

.btn--ghost {
  background: transparent;
  color: var(--c-secondary);
  border: 1px solid rgba(0, 51, 102, .24);
}

.btn--ghost:hover {
  color: var(--c-white);
  background: var(--c-secondary);
  border-color: var(--c-secondary);
}

.btn--light {
  background: var(--c-white);
  color: var(--c-secondary);
}

.btn--ghost-light {
  background: transparent;
  color: var(--c-white);
  border: 1px solid rgba(255, 255, 255, .55);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1.4rem;
  font-weight: 700;
  color: var(--c-secondary);
}

.link-arrow::after { content: "\2192"; color: var(--c-orange); transition: transform var(--speed); }
.link-arrow:hover::after { transform: translateX(5px); }

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--c-orange);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-secondary);
  color: var(--c-white);
  transition: box-shadow var(--speed);
}

.site-header.is-scrolled { box-shadow: 0 12px 30px rgba(0, 20, 40, .2); }

body.nav-open { overflow: hidden; }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 112px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  display: block;
  width: clamp(160px, 18vw, 210px);
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1.35rem, 3vw, 2.6rem);
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--c-white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: .25rem;
  height: 2px;
  background: var(--c-orange);
  transition: right var(--speed);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--c-orange);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  right: 0;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--c-white);
  border-radius: 999px;
  transition: transform var(--speed), opacity var(--speed);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--c-secondary);
  background-image: url("../img/live/hero-bg.png");
  background-position: center;
  background-size: cover;
  color: var(--c-white);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .68fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 720px;
  padding-top: clamp(4.5rem, 7vw, 8rem);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
}

.hero__sub {
  max-width: 700px;
  margin-top: 2rem;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.1rem, 2vw, 1.38rem);
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero__stat {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  max-width: 100%;
  margin-top: 2.8rem;
  color: var(--c-white);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.35;
}

.hero__stat strong { color: var(--c-primary); }
.hero__stat span:last-child { min-width: 0; }

.star-dot {
  width: 18px;
  height: 18px;
  background: var(--c-primary);
  clip-path: polygon(50% 0%, 61% 33%, 96% 35%, 68% 55%, 78% 90%, 50% 70%, 22% 90%, 32% 55%, 4% 35%, 39% 33%);
}

.hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 620px;
}

.hero__person {
  position: absolute;
  right: -4%;
  bottom: 0;
  z-index: 2;
  max-width: none;
  width: min(46vw, 520px);
  height: auto;
}

.hero__product {
  position: absolute;
  left: -14%;
  bottom: 64px;
  z-index: 1;
  width: min(44vw, 470px);
  height: auto;
  filter: drop-shadow(0 22px 28px rgba(0, 20, 40, .28));
}

/* Page heroes */
.page-hero {
  padding-block: clamp(4.5rem, 8vw, 7rem);
  background-color: var(--c-secondary);
  background-image: url("../img/live/hero-bg.png");
  background-position: center;
  background-size: cover;
  color: var(--c-white);
}

.page-hero h1 { max-width: 900px; }
.page-hero .eyebrow { color: var(--c-primary); }
.page-hero__sub {
  max-width: 760px;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.5;
}

.page-hero .center .page-hero__sub { margin-inline: auto; }
.page-hero .btn { margin-top: 1.8rem; }

/* Sections */
.section {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.section--tint { background: var(--c-blue-tint); }
.section--intro { background: var(--c-white); }

.section-head {
  max-width: 700px;
}

.section-head p:not(.eyebrow) {
  margin-top: 1.4rem;
  color: var(--c-muted);
}

.section-head--wide {
  max-width: 930px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
}

.split--center { align-items: center; }
.split--product { align-items: center; }
.split--testimonial { align-items: center; grid-template-columns: 1fr .72fr; }

.grid {
  display: grid;
  gap: 1.5rem;
}

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

.card {
  position: relative;
  min-height: 100%;
  padding: clamp(1.7rem, 3vw, 2.25rem);
  border-radius: var(--radius);
  background: var(--c-soft);
  box-shadow: 0 10px 28px rgba(0, 51, 102, .06);
  transition: transform var(--speed), box-shadow var(--speed), background var(--speed);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 51, 102, .12);
}

.card h3 { margin-top: 1.4rem; }
.card p { margin-top: 1rem; color: var(--c-muted); }

.card__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 38px;
  padding: .45rem 1rem;
  border-radius: 999px;
  background: var(--c-orange);
  color: var(--c-white);
  font-family: var(--font-display);
  font-weight: 700;
}

.card__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: rgba(0, 255, 196, .12);
  color: var(--c-secondary);
  margin-bottom: 1.3rem;
}

.pillar {
  min-height: 100%;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: var(--radius);
  background: var(--c-white);
  box-shadow: 0 10px 26px rgba(0, 51, 102, .06);
}

.pillar img,
.pillar__star {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 1.2rem;
}

.pillar h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
.pillar p { margin-top: .9rem; color: var(--c-muted); }

.product-shot {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--c-secondary);
  padding: clamp(1.5rem, 4vw, 4rem);
  box-shadow: 0 20px 45px rgba(0, 51, 102, .16);
}

.product-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(0, 255, 196, .2), transparent 28%);
}

.product-shot img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(0, 12, 30, .28);
}

.check-list {
  display: grid;
  gap: .85rem;
  margin-top: 2rem;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--c-secondary);
  font-weight: 400;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: .65rem;
  height: .65rem;
  border-radius: 50%;
  background: var(--c-primary);
}

.section--testimonial {
  background: var(--c-secondary);
  color: var(--c-white);
}

.testimonial {
  max-width: 760px;
}

.testimonial blockquote {
  color: var(--c-white);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.8vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
}

.testimonial figcaption {
  margin-top: 2rem;
  color: rgba(255, 255, 255, .82);
  font-size: 1rem;
  line-height: 1.6;
}

.testimonial__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 45px rgba(0, 12, 30, .28);
}

.integrations {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.integrations li {
  border-radius: 999px;
  background: var(--c-white);
  color: var(--c-secondary);
  padding: .75rem 1.35rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 51, 102, .06);
}

/* About, jobs and generic content */
.stats { align-items: stretch; }

.stat {
  min-height: 100%;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius);
  background: var(--c-white);
  text-align: center;
  box-shadow: 0 10px 26px rgba(0, 51, 102, .06);
}

.stat__number {
  display: block;
  color: var(--c-orange);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
}

.stat__label {
  display: block;
  margin-top: .85rem;
  color: var(--c-muted);
}

.team-card {
  min-height: 100%;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--c-soft);
  text-align: center;
  transition: transform var(--speed), box-shadow var(--speed);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px var(--c-shadow);
}

.team-card__avatar {
  display: block;
  width: 140px;
  height: 140px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  background: var(--c-secondary);
  border: 4px solid var(--c-white);
  box-shadow: 0 8px 24px var(--c-shadow);
}

.team-card h3 { margin-top: 0; }
.team-card p { margin-top: .5rem; color: var(--c-muted); }

/* Vacatures: expandable cards (<details>), fully usable without JS */
.vacancies { display: grid; gap: 1rem; }

.vacancy {
  border-radius: var(--radius);
  background: var(--c-soft);
  box-shadow: 0 10px 26px rgba(0, 51, 102, .06);
  border: 1px solid transparent;
  transition: border-color var(--speed), box-shadow var(--speed);
}

.vacancy[open] {
  border-color: var(--c-border);
  box-shadow: 0 16px 36px rgba(0, 51, 102, .10);
}

.vacancy__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.8rem;
  cursor: pointer;
  list-style: none;
  border-radius: var(--radius);
  -webkit-tap-highlight-color: transparent;
}

.vacancy__summary::-webkit-details-marker { display: none; }

.vacancy__head { min-width: 0; }

.vacancy__title {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  transition: color var(--speed);
}

.vacancy__summary:hover .vacancy__title { color: var(--c-orange); }

.vacancy__meta {
  display: block;
  margin-top: .45rem;
  color: var(--c-muted);
}

.vacancy__chevron {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 51, 102, .24);
  color: var(--c-secondary);
  transition: transform var(--speed), background var(--speed), color var(--speed), border-color var(--speed);
}

.vacancy__summary:hover .vacancy__chevron {
  background: var(--c-secondary);
  border-color: var(--c-secondary);
  color: var(--c-white);
}

.vacancy[open] .vacancy__chevron { transform: rotate(180deg); }

.vacancy__body { overflow: hidden; }

.vacancy__body-inner {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 1.8rem 1.8rem;
  border-top: 1px solid var(--c-border);
}

.vacancy__intro {
  font-weight: 400;
  color: var(--c-secondary);
}

.vacancy__body-inner > p,
.vacancy__intro,
.vacancy__section { max-width: 72ch; }

.vacancy__section {
  display: grid;
  gap: .85rem;
  margin-top: .75rem;
}

.vacancy__section h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--c-secondary);
}

.vacancy__list {
  display: grid;
  gap: .55rem;
}

.vacancy__list li {
  position: relative;
  padding-left: 1.4rem;
}

.vacancy__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: #16A34A;
}

.vacancy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.vacancy__note {
  color: var(--c-muted);
  font-size: .9rem;
}

.vacancies-empty {
  padding: 2.5rem 2rem;
  border: 1px dashed rgba(0, 51, 102, .3);
  border-radius: var(--radius);
  background: var(--c-soft);
  text-align: center;
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.vacancies-open-note {
  margin-top: 2rem;
  text-align: center;
  color: var(--c-muted);
}

.vacancies-open-note a { text-decoration: underline; }

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-method {
  padding-bottom: 1.8rem;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid var(--c-border);
}

.contact-method:last-child { border-bottom: 0; }
.contact-method h2 { font-size: 1.45rem; margin-bottom: .65rem; }
.contact-method p, .contact-method address { color: var(--c-muted); }

.contact-form-wrap {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius);
  background: var(--c-soft);
  box-shadow: 0 12px 30px rgba(0, 51, 102, .08);
}

.contact-form-wrap h2 { font-size: 1.8rem; margin-bottom: 1.5rem; }
.contact-form { display: grid; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { display: grid; gap: .45rem; }
.form-field label { font-weight: 700; }

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(0, 51, 102, .18);
  border-radius: var(--radius);
  background: var(--c-white);
  color: var(--c-text);
  font: inherit;
  padding: .9rem 1rem;
  transition: border-color var(--speed), box-shadow var(--speed);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--c-orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, .16);
}

.form-field.has-error input,
.form-field.has-error textarea {
  border-color: #DC2626;
}

.form-error { color: #B91C1C; font-size: .9rem; }
.form-note {
  color: var(--c-muted);
  font-size: .92rem;
  line-height: 1.55;
}
textarea { min-height: 150px; resize: vertical; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.alert {
  margin-bottom: 1.4rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 400;
}

.alert--success {
  background: rgba(0, 255, 196, .16);
  border: 1px solid rgba(0, 120, 94, .2);
}

.alert--error {
  background: rgba(220, 38, 38, .08);
  border: 1px solid rgba(220, 38, 38, .3);
  color: #7F1D1D;
}

.alert--info {
  background: var(--c-blue-tint);
  border: 1px solid var(--c-border);
}

/* Legal pages */
.legal h2 { margin: 2.2rem 0 .8rem; font-size: 1.65rem; }
.legal h3 { margin: 1.5rem 0 .45rem; font-size: 1.2rem; }
.legal p, .legal li { color: var(--c-muted); }
.legal ul { padding-left: 1.3rem; margin-top: .6rem; }
.legal li { margin-bottom: .45rem; }

/* Footer */
.site-footer {
  background: var(--c-secondary);
  color: var(--c-white);
}

.site-footer__cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding-top: clamp(4rem, 8vw, 7.5rem);
  padding-bottom: clamp(2.75rem, 6vw, 4.5rem);
}

.site-footer h2 {
  max-width: 760px;
  color: var(--c-white);
}

.site-footer__main {
  display: flex;
  justify-content: flex-end;
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.site-footer__contact {
  color: rgba(255, 255, 255, .85);
  line-height: 1.65;
}

.site-footer a { color: var(--c-white); }
.site-footer a:hover { color: var(--c-primary); }

.site-footer__bottom {
  display: grid;
  grid-template-columns: minmax(160px, 240px) 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4.5rem);
  border-top: 1px solid rgba(255, 255, 255, .45);
  padding-block: 2.2rem;
}

.site-footer__logo img {
  display: block;
  width: clamp(150px, 18vw, 240px);
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.site-footer__bottom p,
.site-footer__legal a {
  color: var(--c-white);
  font-size: 16px;
}

.site-footer__legal {
  display: grid;
  gap: .65rem;
  text-align: right;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  inset-inline: 1rem;
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 150;
  max-width: 640px;
  margin-inline: auto;
  padding: 1.3rem 1.5rem;
  border-radius: var(--radius);
  background: var(--c-white);
  box-shadow: 0 14px 34px rgba(0, 24, 48, .18);
}

.cookie-banner__inner { display: grid; gap: 1rem; }
.cookie-banner p { color: var(--c-muted); font-size: .95rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .7rem; }

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

/* Responsive */
@media (max-width: 1024px) {
  h1 { font-size: clamp(2.35rem, 7vw, 3.625rem); line-height: 1.2; }
  h2 { font-size: clamp(1.875rem, 5vw, 2.375rem); line-height: 1.2; }

  .site-header__inner { min-height: 96px; }
  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 0;
  }

  .hero__content { padding-bottom: 2rem; }
  .hero__visual { min-height: 430px; }
  .hero__person { right: 0; width: min(58vw, 420px); }
  .hero__product { left: 2rem; bottom: 48px; width: min(58vw, 430px); }

  .split,
  .split--testimonial {
    grid-template-columns: 1fr;
  }

  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__bottom { grid-template-columns: 1fr; }
  .site-footer__legal { text-align: left; }
}

@media (max-width: 767px) {
  body { font-size: 16px; line-height: 22px; }
  h1 { font-size: 34px; line-height: 1.16; }
  h2 { font-size: 30px; line-height: 33px; }

  .btn {
    min-height: 48px;
    padding: 12px 30px;
    font-size: 14px;
    line-height: 28px;
  }

  .btn--primary:hover,
  .btn--primary:focus {
    background: var(--c-orange);
  }

  .site-header__inner { min-height: 84px; }
  .logo img { width: 156px; }
  .nav-toggle { display: block; }

  .site-nav {
    position: fixed;
    inset: 84px 0 auto 0;
    z-index: 99;
    background: var(--c-secondary);
    padding: 1.2rem clamp(1.25rem, 4vw, 2rem) 1.6rem;
    max-height: calc(100dvh - 84px);
    overflow-y: auto;
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform var(--speed), visibility var(--speed);
  }

  .site-nav.is-open {
    transform: none;
    visibility: visible;
    box-shadow: 0 20px 30px rgba(0, 20, 40, .22);
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: .45rem;
  }

  .site-nav__link {
    display: flex;
    min-height: 48px;
    font-size: 1.1rem;
  }

  .site-nav__link::after { content: none; }
  .site-nav__cta { margin-top: .75rem; }
  .site-nav__cta .btn { width: 100%; }

  .hero__inner { padding-top: 4rem; }
  .hero__content,
  .section-head {
    max-width: calc(100vw - 40px);
  }

  .hero h1 {
    max-width: 320px;
  }

  .hero__sub,
  .hero__stat,
  .section-head h2,
  .section-head p {
    max-width: 330px;
  }

  .hero__sub { margin-top: 1.4rem; }
  .hero__actions { margin-top: 2rem; }
  .hero__stat {
    display: flex;
    align-items: flex-start;
    margin-top: 2rem;
    font-size: .95rem;
  }
  .hero__visual { min-height: 320px; }
  .hero__person { right: -28px; width: 295px; }
  .hero__product { left: -18px; bottom: 38px; width: 286px; }

  .page-hero { padding-block: 4rem; }
  .section { padding-block: 4rem; }
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .vacancy__summary { padding: 1.25rem 1.25rem; }
  .vacancy__body-inner { padding: 1.25rem 1.25rem 1.5rem; }
  .vacancy__actions .btn { width: 100%; }
  .site-footer__cta { grid-template-columns: 1fr; }
  .site-footer__main { justify-content: flex-start; }
  .cookie-banner__actions .btn { width: 100%; }
}
