.native-footer-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 48px !important;
  padding: 36px 0 28px !important;
  width: 100% !important;
}

.native-footer-col {
  min-width: 0 !important;
}

.native-footer-col h3 {
  margin: 0 0 24px !important;
  font-size: 31px !important;
  font-weight: 300 !important;
  line-height: 1.2 !important;
  position: relative !important;
}

.native-footer-col h3::after {
  content: "" !important;
  display: block !important;
  width: 100px !important;
  height: 2px !important;
  background: #168acb !important;
  margin-top: 14px !important;
}

.native-footer-col p {
  margin: 0 0 8px !important;
  line-height: 1.75 !important;
}

.native-footer-col a {
  text-decoration: none !important;
}

@media (max-width: 900px) {
  .native-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 32px !important;
  }
}

@media (max-width: 600px) {
  .native-footer-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ===== Sabena native homepage hero ===== */

.native-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 520px;
  max-height: 760px;
  overflow: hidden;
  background: #111;
}

.native-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: sabenaHero 26s infinite;
}

.native-hero-slide:nth-child(1) { animation-delay: 0s; }
.native-hero-slide:nth-child(2) { animation-delay: 6.5s; }
.native-hero-slide:nth-child(3) { animation-delay: 13s; }
.native-hero-slide:nth-child(4) { animation-delay: 19.5s; }

.native-hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.native-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.60) 0%,
    rgba(0,0,0,.32) 45%,
    rgba(0,0,0,.08) 75%,
    rgba(0,0,0,.02) 100%
  );
}

.native-hero-content {
  position: absolute;
  z-index: 2;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 680px;
  color: white;
}

.native-hero-content h1 {
  margin: 0 0 14px;
  color: white;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.05;
  font-weight: 600;
}

.native-hero-content p {
  margin: 0 0 26px;
  max-width: 620px;
  color: white;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1.45;
}

.native-hero-button {
  display: inline-block;
  padding: 12px 25px;
  border: 2px solid white;
  color: white !important;
  text-decoration: none !important;
  font-weight: 600;
  transition: .2s ease;
}

.native-hero-button:hover {
  background: white;
  color: #111 !important;
}

@keyframes sabenaHero {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  23%  { opacity: 1; }
  27%  { opacity: 0; }
  100% { opacity: 0; }
}

@media (max-width: 768px) {
  .native-hero {
    height: 62vh;
    min-height: 460px;
  }

  .native-hero-content {
    left: 6%;
    right: 6%;
  }
}

/* ===== End Sabena native homepage hero ===== */


/* ===== Native Sabena homepage body ===== */

.native-home-intro {
  padding: 70px 24px 55px;
  background: #fff;
}

.native-home-intro-inner {
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
}

.native-home-intro h2 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.2;
  color: #004d85;
}

.native-home-intro p {
  margin: 0 auto 18px;
  max-width: 950px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #444;
}

.native-home-dto {
  margin-top: 26px !important;
  font-size: .95rem !important;
  color: #777 !important;
}

.native-home-cards {
  max-width: 1300px;
  margin: 0 auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.native-home-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  display: block;
  background: #111;
  text-decoration: none !important;
}

.native-home-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.native-home-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.20) 58%,
    rgba(0,0,0,.04) 100%
  );
}

.native-home-card-content {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 26px;
}

.native-home-card-content h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  line-height: 1.15;
}

.native-home-card:hover img {
  transform: scale(1.045);
}

@media (max-width: 768px) {
  .native-home-intro {
    padding: 50px 20px 40px;
  }

  .native-home-cards {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .native-home-card {
    min-height: 260px;
  }
}

/* ===== End native Sabena homepage body ===== */


/* ===== Native Sabena homepage body ===== */

.native-home-intro {
  padding: 70px 24px 55px;
  background: #fff;
}

.native-home-intro-inner {
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
}

.native-home-intro h2 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.2;
  color: #004d85;
}

.native-home-intro p {
  margin: 0 auto 18px;
  max-width: 950px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #444;
}

.native-home-dto {
  margin-top: 26px !important;
  font-size: .95rem !important;
  color: #777 !important;
}

.native-home-cards {
  max-width: 1300px;
  margin: 0 auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.native-home-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  display: block;
  background: #111;
  text-decoration: none !important;
}

.native-home-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.native-home-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.20) 58%,
    rgba(0,0,0,.04) 100%
  );
}

.native-home-card-content {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 26px;
}

.native-home-card-content h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  line-height: 1.15;
}

.native-home-card:hover img {
  transform: scale(1.045);
}

@media (max-width: 768px) {
  .native-home-intro {
    padding: 50px 20px 40px;
  }

  .native-home-cards {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .native-home-card {
    min-height: 260px;
  }
}

/* ===== End native Sabena homepage body ===== */


/* ===== Native homepage refinements ===== */

/* Shorter hero, closer to original site proportions */
.native-hero {
  height: 58vh;
  min-height: 420px;
  max-height: 620px;
}

/* Stronger card text contrast */
.native-home-card-content h3,
.native-home-card-content span,
.native-home-card-content,
.native-home-card-content * {
  color: #fff !important;
}

.native-home-card-overlay {
  background: linear-gradient(
    0deg,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.48) 28%,
    rgba(0,0,0,.10) 65%,
    rgba(0,0,0,.02) 100%
  );
}

@media (max-width: 768px) {
  .native-hero {
    height: 52vh;
    min-height: 390px;
  }
}

/* ===== End native homepage refinements ===== */


/* Definitive native hero height */
.native-hero {
  height: 50vh !important;
  min-height: 380px !important;
  max-height: 540px !important;
}

@media (max-width: 768px) {
  .native-hero {
    height: 46vh !important;
    min-height: 350px !important;
  }
}

/* ===== Native hero: four complete slides + manual dots ===== */

.native-hero-control {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Normal automatic rotation */
#hero-en-auto:checked ~ .native-hero-slides .native-hero-slide:nth-child(1) {
  animation-delay: 0s;
}
#hero-en-auto:checked ~ .native-hero-slides .native-hero-slide:nth-child(2) {
  animation-delay: 6.5s;
}
#hero-en-auto:checked ~ .native-hero-slides .native-hero-slide:nth-child(3) {
  animation-delay: 13s;
}
#hero-en-auto:checked ~ .native-hero-slides .native-hero-slide:nth-child(4) {
  animation-delay: 19.5s;
}

/* Clicking a dot selects the complete slide */
#hero-en-1:checked ~ .native-hero-slides .native-hero-slide,
#hero-en-2:checked ~ .native-hero-slides .native-hero-slide,
#hero-en-3:checked ~ .native-hero-slides .native-hero-slide,
#hero-en-4:checked ~ .native-hero-slides .native-hero-slide {
  animation: none !important;
  opacity: 0 !important;
}

#hero-en-1:checked ~ .native-hero-slides .native-hero-slide:nth-child(1),
#hero-en-2:checked ~ .native-hero-slides .native-hero-slide:nth-child(2),
#hero-en-3:checked ~ .native-hero-slides .native-hero-slide:nth-child(3),
#hero-en-4:checked ~ .native-hero-slides .native-hero-slide:nth-child(4) {
  opacity: 1 !important;
}

/* Dots */
.native-hero-dots {
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 11px;
}

.native-hero-dot {
  display: block;
  width: 11px;
  height: 11px;
  margin: 0;
  padding: 0;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  cursor: pointer;
}

/* Show current dot during automatic rotation */
#hero-en-auto:checked ~ .native-hero-dots .native-hero-dot {
  animation: sabenaHeroDot 26s infinite;
}

#hero-en-auto:checked ~ .native-hero-dots .native-hero-dot:nth-child(1) {
  animation-delay: 0s;
}
#hero-en-auto:checked ~ .native-hero-dots .native-hero-dot:nth-child(2) {
  animation-delay: 6.5s;
}
#hero-en-auto:checked ~ .native-hero-dots .native-hero-dot:nth-child(3) {
  animation-delay: 13s;
}
#hero-en-auto:checked ~ .native-hero-dots .native-hero-dot:nth-child(4) {
  animation-delay: 19.5s;
}

@keyframes sabenaHeroDot {
  0%, 23% {
    background: #fff;
  }
  27%, 100% {
    background: rgba(255,255,255,.25);
  }
}

/* Show selected dot after manual click */
#hero-en-1:checked ~ .native-hero-dots .native-hero-dot,
#hero-en-2:checked ~ .native-hero-dots .native-hero-dot,
#hero-en-3:checked ~ .native-hero-dots .native-hero-dot,
#hero-en-4:checked ~ .native-hero-dots .native-hero-dot {
  animation: none !important;
  background: rgba(255,255,255,.25);
}

#hero-en-1:checked ~ .native-hero-dots .native-hero-dot:nth-child(1),
#hero-en-2:checked ~ .native-hero-dots .native-hero-dot:nth-child(2),
#hero-en-3:checked ~ .native-hero-dots .native-hero-dot:nth-child(3),
#hero-en-4:checked ~ .native-hero-dots .native-hero-dot:nth-child(4) {
  background: #fff;
}

/* ===== End native hero controls ===== */


/* ===== Native hero JS control override ===== */

/* JS controls slide visibility; disable old CSS-only animation */
.native-hero-slide {
  animation: none !important;
  opacity: 0 !important;
  transition: opacity 1s ease;
}

.native-hero-slide.is-active {
  opacity: 1 !important;
}

.native-hero-dot {
  animation: none !important;
  background: rgba(255,255,255,.25) !important;
}

.native-hero-dot.is-active {
  background: #fff !important;
}

/* old radio controls no longer used */
.native-hero-control {
  display: none !important;
}

/* ===== End native hero JS control override ===== */


/* ===== Native Sabena footer ===== */

.native-footer {
  background: #0b2e49;
  color: #fff;
  padding: 52px 24px 42px;
}

.native-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
}

.native-footer-col h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.2;
}

.native-footer-col p {
  margin: 0 0 10px;
  color: rgba(255,255,255,.88);
  line-height: 1.55;
}

.native-footer-col a {
  color: #fff !important;
  text-decoration: none;
}

.native-footer-col a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .native-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .native-footer {
    padding: 40px 20px 30px;
  }

  .native-footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ===== End native Sabena footer ===== */


/* ===== Native footer refinements ===== */

.native-footer {
  padding: 42px 18px 34px;
}

.native-footer-inner {
  max-width: 1500px;
  grid-template-columns: 1.05fr 1.15fr 1fr 1.1fr;
  gap: 52px;
}

.native-footer-col h3 {
  font-size: 1.45rem;
  white-space: nowrap;
}

.native-footer-col p {
  font-size: .98rem;
  line-height: 1.45;
}

.native-footer-col:nth-child(2) p {
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .native-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 50px;
  }

  .native-footer-col h3,
  .native-footer-col:nth-child(2) p {
    white-space: normal;
  }
}

@media (max-width: 650px) {
  .native-footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ===== End native footer refinements ===== */



/* ==========================================================
   Native homepage / footer definitive Flex layout fixes
   ========================================================== */


/* ----- Homepage cards ----- */

.native-home-cards {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 28px !important;

  width: 100% !important;
  max-width: 1300px !important;

  margin: 0 auto 60px !important;
  padding: 0 20px !important;

  float: none !important;
}

.native-home-card {
  display: block !important;
  position: relative !important;

  width: 100% !important;
  height: 330px !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden !important;
}

.native-home-card img {
  display: block !important;

  width: 100% !important;
  height: 100% !important;

  object-fit: cover !important;
}

.native-home-card-content {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;

  z-index: 3 !important;

  padding: 22px 26px !important;
}

.native-home-card-content h3 {
  margin: 0 !important;
  color: #fff !important;
}


/* ----- Footer ----- */

.native-footer {
  width: 100% !important;
  box-sizing: border-box !important;
}

.native-footer-inner {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;

  width: 100% !important;
  max-width: 1450px !important;

  gap: 28px !important;

  margin: 0 auto !important;
}

.native-footer-col {
  min-width: 0 !important;
}

.native-footer-col h3 {
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

.native-footer-col p,
.native-footer-col:nth-child(2) p {
  white-space: normal !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
}


/* At normal laptop widths, use 2 clean footer columns instead of
   squeezing four columns into Flex's narrower content area. */

@media (max-width: 1600px) {

  .native-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 34px 60px !important;
  }

}


/* Tablet */

@media (max-width: 900px) {

  .native-home-cards {
    gap: 20px !important;
  }

  .native-home-card {
    height: 270px !important;
  }

}


/* Mobile */

@media (max-width: 650px) {

  .native-home-cards {
    grid-template-columns: 1fr !important;
    padding: 0 14px !important;
  }

  .native-home-card {
    height: 260px !important;
  }

  .native-footer-inner {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

}


/* ==========================================================
   End native layout fixes
   ========================================================== */


/* ==========================================================
   Native footer: compact 1x4 desktop layout
   ========================================================== */

.native-footer {
  padding: 34px 24px 28px !important;
}

.native-footer-inner {
  display: grid !important;
  grid-template-columns: 1.05fr 1.2fr 1fr 1.1fr !important;

  width: calc(100% - 40px) !important;
  max-width: 1500px !important;

  gap: 42px !important;
  margin: 0 auto !important;
}

.native-footer-col {
  min-width: 0 !important;
}

.native-footer-col h3 {
  font-size: 1.25rem !important;
  line-height: 1.15 !important;
  margin-bottom: 22px !important;

  white-space: normal !important;
}

.native-footer-col p {
  font-size: .95rem !important;
  line-height: 1.45 !important;
  margin-bottom: 10px !important;

  white-space: normal !important;
  overflow-wrap: break-word !important;
}


/* Slightly tighter on ordinary laptop widths */

@media (max-width: 1250px) {

  .native-footer-inner {
    grid-template-columns: 1fr 1.15fr 1fr 1fr !important;
    gap: 28px !important;
  }

  .native-footer-col h3 {
    font-size: 1.15rem !important;
  }

  .native-footer-col p {
    font-size: .9rem !important;
  }

}


/* Tablet: only then go to 2x2 */

@media (max-width: 900px) {

  .native-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px 40px !important;
  }

}


/* Mobile */

@media (max-width: 600px) {

  .native-footer-inner {
    grid-template-columns: 1fr !important;
  }

}

/* ==========================================================
   End footer 1x4 layout
   ========================================================== */


/* ==========================================================
   Native footer - full width grey, matching live site
   ========================================================== */

.native-footer {
  width: 100vw !important;
  max-width: none !important;

  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;

  background: #3d3d3d !important;
  color: #d9d9d9 !important;

  padding: 42px 30px 36px !important;
  box-sizing: border-box !important;
}

.native-footer-inner {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;

  width: 100% !important;
  max-width: 1450px !important;

  margin: 0 auto !important;
  gap: 48px !important;
}

.native-footer-col {
  min-width: 0 !important;
}

.native-footer-col h3 {
  color: #ffffff !important;
  font-size: 1.3rem !important;
  line-height: 1.2 !important;

  margin: 0 0 22px !important;
  padding-bottom: 12px !important;

  white-space: normal !important;
}

.native-footer-col h3::after {
  content: "" !important;
  display: block !important;
  width: 70px !important;
  height: 2px !important;
  margin-top: 14px !important;
  background: #1aa4df !important;
}

.native-footer-col p {
  color: #d9d9d9 !important;
  font-size: .95rem !important;
  line-height: 1.55 !important;

  margin: 0 0 9px !important;

  white-space: normal !important;
  overflow-wrap: break-word !important;
}

.native-footer-col a {
  color: #ffffff !important;
  text-decoration: none !important;
}

.native-footer-col a:hover {
  text-decoration: underline !important;
}


/* Tablet */

@media (max-width: 950px) {

  .native-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 34px 50px !important;
  }

}


/* Mobile */

@media (max-width: 600px) {

  .native-footer {
    padding: 34px 22px !important;
  }

  .native-footer-inner {
    grid-template-columns: 1fr !important;
  }

}

/* ==========================================================
   End full-width grey footer
   ========================================================== */


/* ==========================================================
   Native footer - match original live footer
   ========================================================== */

.native-footer {
  width: 100vw !important;
  max-width: none !important;

  position: relative !important;
  left: 50% !important;
  margin-left: -50vw !important;

  background: #f4f4f4 !important;
  color: #3f3f3f !important;

  padding: 58px 30px 62px !important;
  box-sizing: border-box !important;
}

.native-footer-inner {
  display: grid !important;
  grid-template-columns: 1fr 1.35fr 1.25fr 1.15fr !important;

  width: 100% !important;
  max-width: 1560px !important;

  margin: 0 auto !important;
  gap: 72px !important;
}

.native-footer-col {
  min-width: 0 !important;
}

.native-footer-col h3 {
  position: relative !important;

  color: #666 !important;

  font-size: 1.65rem !important;
  font-weight: 300 !important;
  line-height: 1.2 !important;

  margin: 0 0 32px !important;
  padding: 0 0 16px !important;

  white-space: nowrap !important;

  border-bottom: 1px solid #ddd !important;
}

.native-footer-col h3::after {
  content: "" !important;

  position: absolute !important;
  left: 0 !important;
  bottom: -1px !important;

  width: 132px !important;
  height: 3px !important;

  background: #008bc9 !important;
}

.native-footer-col p {
  color: #3f3f3f !important;

  font-size: 1rem !important;
  line-height: 1.75 !important;

  margin: 0 0 5px !important;

  white-space: normal !important;
}

.native-footer-col a {
  color: #0878b5 !important;
  text-decoration: none !important;
}

.native-footer-col a:hover {
  text-decoration: underline !important;
}


/* Desktop responsiveness without breaking the 1x4 layout */

@media (max-width: 1250px) {

  .native-footer-inner {
    gap: 40px !important;
    grid-template-columns: 1fr 1.25fr 1.15fr 1fr !important;
  }

  .native-footer-col h3 {
    font-size: 1.45rem !important;
  }

  .native-footer-col p {
    font-size: .95rem !important;
  }

}


/* Tablet */

@media (max-width: 900px) {

  .native-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 42px 50px !important;
  }

  .native-footer-col h3 {
    white-space: normal !important;
  }

}


/* Mobile */

@media (max-width: 600px) {

  .native-footer {
    padding: 42px 22px !important;
  }

  .native-footer-inner {
    grid-template-columns: 1fr !important;
  }

}


/* ==========================================================
   End original footer look
   ========================================================== */


/* ==========================================================
   FR/NL native footer - compact match to original EN
   ========================================================== */

.native-footer {
  width: 100vw !important;
  max-width: none !important;

  position: relative !important;
  left: 50% !important;
  margin-left: -50vw !important;

  box-sizing: border-box !important;

  background: #f4f4f4 !important;
  color: #444 !important;

  padding: 34px 24px 38px !important;
}

.native-footer-inner {
  display: grid !important;
  grid-template-columns: 1.05fr 1.25fr 1.18fr 1.08fr !important;

  width: 100% !important;
  max-width: 1170px !important;

  margin: 0 auto !important;
  gap: 32px !important;
}

.native-footer-col {
  min-width: 0 !important;
}

.native-footer-col h3 {
  position: relative !important;

  color: #666 !important;

  font-size: 1.48rem !important;
  font-weight: 300 !important;
  line-height: 1.15 !important;

  margin: 0 0 20px !important;
  padding: 0 0 12px !important;

  white-space: nowrap !important;

  border-bottom: 1px solid #ddd !important;
}

.native-footer-col h3::after {
  content: "" !important;

  position: absolute !important;
  left: 0 !important;
  bottom: -1px !important;

  width: 98px !important;
  height: 2px !important;

  background: #008bc9 !important;
}

.native-footer-col p {
  color: #444 !important;

  font-size: .92rem !important;
  line-height: 1.42 !important;

  margin: 0 0 6px !important;

  white-space: normal !important;
}

.native-footer-feature,
.native-footer-contact {
  display: flex !important;
  align-items: flex-start !important;
  gap: 7px !important;
}

.native-footer-feature i,
.native-footer-contact i {
  flex: 0 0 13px !important;

  color: #292929 !important;

  margin-top: 3px !important;

  font-size: .9rem !important;
  text-align: center !important;
}

.native-footer-contact a {
  color: #087ebc !important;
  text-decoration: none !important;
}

.native-footer-contact a:hover {
  text-decoration: underline !important;
}


/* keep 4 columns on normal desktop/laptop */

@media (max-width: 1050px) {

  .native-footer-inner {
    max-width: 920px !important;
    gap: 24px !important;
  }

  .native-footer-col h3 {
    font-size: 1.26rem !important;
  }

  .native-footer-col p {
    font-size: .86rem !important;
  }

}


/* only collapse when necessary */

@media (max-width: 820px) {

  .native-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 680px !important;
    gap: 28px 42px !important;
  }

  .native-footer-col h3 {
    white-space: normal !important;
  }

}

@media (max-width: 560px) {

  .native-footer {
    padding: 30px 20px 34px !important;
  }

  .native-footer-inner {
    grid-template-columns: 1fr !important;
    max-width: 420px !important;
  }

}

/* ==========================================================
   End FR/NL compact footer
   ========================================================== */


/* ==========================================================
   FR/NL footer - tighter centered content, full-width background
   ========================================================== */

.native-footer {
  width: 100vw !important;
  max-width: none !important;

  position: relative !important;
  left: 50% !important;
  margin-left: -50vw !important;

  background: #f4f4f4 !important;

  /* trim unnecessary vertical space */
  padding: 24px 20px 26px !important;
}

.native-footer-inner {
  display: grid !important;

  /* compact four-column block */
  grid-template-columns:
    250px
    330px
    275px
    275px !important;

  width: auto !important;
  max-width: 1180px !important;

  margin: 0 auto !important;

  /* much closer together */
  gap: 26px !important;
}

.native-footer-col h3 {
  margin-bottom: 16px !important;
  padding-bottom: 10px !important;
}

.native-footer-col p {
  margin-bottom: 4px !important;
  line-height: 1.38 !important;
}


/* slightly narrower screens: keep the same compact feeling */

@media (max-width: 1250px) {

  .native-footer-inner {
    grid-template-columns:
      220px
      300px
      250px
      250px !important;

    max-width: 1100px !important;
    gap: 22px !important;
  }

}


/* only start collapsing when genuinely needed */

@media (max-width: 980px) {

  .native-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 720px !important;
    gap: 24px 36px !important;
  }

}

@media (max-width: 560px) {

  .native-footer-inner {
    grid-template-columns: 1fr !important;
    max-width: 420px !important;
  }

}

/* ==========================================================
   End tighter footer
   ========================================================== */


/* Mobile menu hamburger */
#offcanvas-toggler .js-menu-toggle .lines,
#offcanvas-toggler .js-menu-toggle .lines::before,
#offcanvas-toggler .js-menu-toggle .lines::after {
    background-color: #004d85 !important;
}
