 :root {
  --green-dark: #000;
  --green: #0b5a32;
  --green-light:#70bd28;
  --blue-light:  #8CC3F5;
  --blue-dark:#09263a;
  --text: #071827;
  --muted: #223343;
  --white: #ffffff;
  --footer: #061c2c;
  --footer-2: #09263a;
  --max: 1440px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}

img { max-width: 100%; }

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

.hero {
  min-height: 545px;
  position: relative;
  color: var(--white);
  background-image: url("assets/hero-team-huddle.jpg");
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.50) 28%, rgba(0,0,0,.12) 58%, rgba(0,0,0,.14) 100%),
    linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.10) 50%, rgba(0,0,0,.42) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1460px, calc(100% - 100px));
  margin: 0 auto;
  padding-top: 54px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.logo {
  width: 96px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.18));
}

.logo-text {
  color: #ffffff;
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.035em;
  text-shadow: 0 3px 14px rgba(0,0,0,.42);
}

.hero-copy {
  margin-top: 76px;
  max-width: 760px;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(3.8rem, 6.8vw, 5.5rem);
  line-height: .88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 strong {
  display: block;
  font-weight: 900;
}

.hero h1 strong {
  color: var(--blue-light);
}

.hero p {
  margin: 0 0 26px;
  color: #fff;
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  font-weight: 800;
  line-height: 1.55;
  text-shadow: 0 3px 14px rgba(0,0,0,.48);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: 4px;
  background: var(--blue-light);
  color: #FFF;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -.02em;
}

.intro-section {
  background: #fff;
  padding: 42px 0 48px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(4, 1fr);
  align-items: start;
  gap: 42px;
}

.intro-copy {
  padding-top: 10px;
}

.intro-copy h2,
.benefit h3,
.extra-card h3 {
  margin: 0;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 900;
  letter-spacing: -.035em;
}

   .extra-card b {
    text-decoration: underline;
  }


.intro-copy h2 {
  margin-bottom: 18px;
  font-size: 1.65rem;
}

.intro-copy p {
  max-width: 590px;
  margin: 0 0 22px;
  color: #122435;
  font-size: 1rem;
  font-weight: 500;
}

.benefit {
  text-align: center;
  width:275px;
  padding: 0 4px;
}

.benefit img {
  height: 82px;
  width: 82px;
  margin-bottom: 16px;
}

.benefit h3 {
  margin-bottom: 12px;
  color: #071827;
  font-size: 1.26rem;
  line-height: 1.08;
}

.benefit p {
  margin: 0;
  color: #102435;
  font-size: .92rem;
  line-height: 1.44;
  font-weight: 500;
}

.extras-section {
  	background:
    radial-gradient(circle at 32% 20%, rgba(118, 167, 216, 0.28), transparent 30%),
	linear-gradient(135deg, #09263a 0%, #76A7D8 100%);
  	color: #fff;
  	padding: 28px 0 46px;

}

.extras-title {
  margin: 0 0 28px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 900;

}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.extra-card {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 26px;
  align-items: center;
  min-height: 150px;
  padding-right: 34px;
  border-right: 1px solid rgba(154, 212, 83, .7);
}

.extra-card:last-child { border-right: 0; }

.extra-card img {
  width: 110px;
  height: 110px;
}

.extra-card h3 {
  margin-bottom: 10px;
  color: #FFF;
  font-size: 1.38rem;
}

.extra-card p {
  margin: 0;
  color: #fff;
  font-size: .98rem;
  line-height: 1.55;
  font-weight: 500;
}

.contact-strip {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px 24px;
  background: #f6faf8;
  color: #071827;
  font-size: 1.45rem;
  font-weight: 700;
}

.contact-strip img {
  width: 42px;
  height: 42px;
}

.contact-strip p {
  margin: 0;
}

.contact-strip a {
  color: var(--blue-dark);
  text-decoration: none;
  font-weight: 900;
}

.site-footer {
  background: linear-gradient(135deg, var(--footer) 0%, var(--footer-2) 100%);
  color: #fff;
  padding: 22px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.footer-logo {
  display: inline-flex;
  justify-content: center;
  align-items: center;

}

.footer-logo img {
  height: 60px;
  margin-right:10px;

}

.footer-item  {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 800;
}

.footer-item a {
  color: #FFF;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 800;
   }

.footer-item img {
  width: 34px;
  height: 34px;
}

@media (max-width: 1180px) {
  .intro-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-copy {
    grid-column: 1 / -1;
    text-align: center;
  }

  .intro-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .extras-grid {
    gap: 24px;
  }

  .extra-card {
    grid-template-columns: 90px 1fr;
    padding-right: 18px;
  }
  

  .extra-card img {
    width: 88px;
    height: 88px;
  }
}

@media (max-width: 860px) {
  .container,
  .hero-inner {
    width: min(100% - 40px, 1300px);
  }

  .hero {
    min-height: 720px;
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,.52) 0%, rgba(0,0,0,.30) 35%, rgba(0,0,0,.72) 100%);
  }

  .logo {
    width: 82px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .hero-copy {
    margin-top: 250px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 13vw, 5.2rem);
  }

  .hero p {
    font-size: 1.05rem;
  }

  .intro-grid,
  .extras-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefit {
    max-width: 480px;
    margin: 0 auto;
  }

  .extra-card {
    border-right: 0;
    border-bottom: 1px solid rgba(154, 212, 83, .55);
    padding: 0 0 28px;
  }

  .extra-card:last-child { border-bottom: 0; }

  .contact-strip {
    flex-direction: column;
    text-align: center;
    font-size: 1.1rem;
  }

  .footer-grid {
    gap: 18px;
  }
}

@media (max-width: 540px) {
  .hero {
    min-height: 670px;
    background-position: 62% center;
  }

  .hero-inner {
    padding-top: 32px;
  }

  .logo {
    width: 72px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .hero-copy {
    margin-top: 225px;
  }

  .hero-badge {
    font-size: .84rem;
    padding: 10px 14px;
  }

  .intro-section {
    padding-top: 34px;
  }

  .extra-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

/* v6: introblok uitlijnen binnen dezelfde breedte als de vier benefit-blokken */
#intro .intro-text {
  width: min(1300px, calc(100% - 80px));
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 52px;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
}

#intro .intro-text h2,
#intro .intro-text p {
  max-width: none;
}

#intro .intro-grid {
  width: min(1300px, calc(100% - 80px));
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 860px) {
  #intro .intro-text,
  #intro .intro-grid {
    width: min(100% - 40px, 1300px);
  }

  #intro .intro-text {
    margin-bottom: 34px;
  }
}

@media (max-width: 520px) {
  #intro .intro-text,
  #intro .intro-grid {
    width: min(100% - 28px, 1300px);
  }
}


/* rotating hero images */
.hero {
  position: relative;
  overflow: hidden;
  background-image: none !important;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  transform: scale(1.02);
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay,
.hero-inner {
  position: relative;
  z-index: 2;
}