/* ============================================
   REPATEC - STYLE
   ============================================ */

/* --- VARS & BASICS --- */
:root {
  --c-primary: #ec2e02;
  --c-dark: #191e2a;
  --c-navy: #0a152e;
  --c-grey: #e7e6e6;
  --c-grey-light: #f2f2f2;
  --c-grey-border: #cccccc;
  --c-grey-text: #717786;
  --c-grey-muted: #c3c1c1;
  --c-white: #ffffff;
  --font-h: "Ubuntu", sans-serif;
  --font-b: "Open Sans", sans-serif;
  --font-ui: "Roboto", "Open Sans", sans-serif;
}

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

.flexible-home-wrapper {
  width: 100%;
  overflow-x: hidden;
}

.site-header .wrapper {
  width: 100%;
  max-width: 1376px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}

/* --- CONTAINERS --- */
.inner-container {
  width: 100%;
  max-width: 1376px;
  /* 1728 - 176*2 */
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}

.layout-padding {
  padding: 5rem 0;
}

/* --- UTILITY CLASSES --- */
.bg-grey {
  background-color: var(--c-grey);
}

.dark-bg {
  background-color: var(--c-dark);
}

.bg-primary {
  background-color: var(--c-primary);
}

.text-white {
  color: #fff;
}

.text-dark {
  color: var(--c-dark);
}

.text-primary {
  color: var(--c-primary);
}

.mb-5 {
  margin-bottom: 80px;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-h);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

p {
  font-family: var(--font-b);
  line-height: 1.6;
  color: var(--c-dark);
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: var(--font-b);
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 13px;
  line-height: 26px;
  letter-spacing: 0.2px;
  cursor: pointer;
}

.btn-hero-primary {
  background: var(--c-primary);
  color: #fff;
  border: 2px solid var(--c-primary);
  padding: 12px 22px;
  min-width: 250px;
}

.btn-hero-primary:hover {
  border-color: #d42902;
  background: transparent;
  color: #fff;
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid var(--c-primary);
  padding: 12px 43px;
  min-width: 250px;
}

.btn-hero-outline:hover {
  background: var(--c-primary);
  color: #fff;
}

.btn-product-view {
  border: 2px solid var(--c-primary);
  border-radius: 8px;
  padding: 12px 43px;
  color: var(--c-dark);
  font-family: var(--font-b);
  font-size: 13px;
  line-height: 26px;
  letter-spacing: 0.2px;
  text-decoration: none;
  display: block;
  text-align: center;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-product-view:hover {
  background: var(--c-primary);
  color: #fff;
}

.btn-dark {
  background: var(--c-dark);
  color: #fff;
  border: 2px solid var(--c-dark);
  padding: 13px 43px;
  border-radius: 10px;
}

.btn-dark:hover {
  background: #fff;
  color: var(--c-dark);
}

/* ============================================
   1. HERO SECTION
   ============================================ */
.section-hero {
  position: relative;
  min-height: 958px;
  padding: 280px 0 72px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(958px - 280px - 72px);
}

.hero-main {
  max-width: 883px;
}

.hero-title {
  font-size: 64px;
  line-height: 1.1;
  color: var(--c-primary);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-text {
  color: #fff;
  font-family: var(--font-b);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Footer / USP Bar */
.hero-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  margin-top: auto;
}

.usp-intro {
  color: #fff;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 1px;
  text-align: center;
}

.usp-row {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 8px 16px;
  flex-wrap: wrap;
}

.usp-tag {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.usp-tag svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.usp-tag span {
  white-space: nowrap;
}

/* ============================================
   2. ACCORDION SPLIT SECTION
   ============================================ */
.section-accordion {
  background: var(--c-white);
}

.section-accordion .section-title {
  color: var(--c-dark);
  text-align: center;
  font-size: 40px;
  line-height: 1.2;
  max-width: 883px;
  margin: 0 auto 80px auto;
}

.split-layout {
  display: flex;
  gap: 64px;
  align-items: center;
}

.split-image-wrapper {
  flex: 0 0 677px;
  max-width: 677px;
}

.obj-cover {
  width: 100%;
  height: 476px;
  object-fit: cover;
  display: block;
}

.split-content {
  flex: 1;
  min-width: 0;
}

/* Accordion */
.custom-accordion {}

.acc-item {
  border-bottom: 1px solid var(--c-grey-light);
}

.acc-head {
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.acc-head h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1.4;
  text-transform: none;
}

.acc-body {
  display: none;
  padding-bottom: 24px;
  color: var(--c-dark);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.4px;
  max-width: 552px;
}

.acc-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acc-icon svg {
  transition: transform 0.3s ease;
}

.acc-item.active .acc-icon svg {
  transform: rotate(180deg);
}

.acc-item:first-child {
  border-top: 0;
}

.acc-item:last-child {
  border-bottom: 0;
}

.acc-icon svg path {
  stroke: #ec2e02;
}

/* ============================================
   3. INDUSTRIES SECTION (EDGE-TO-EDGE)
   ============================================ */
.section-industries {
  background: var(--c-dark);
  overflow: visible;
}

.section-industries .inner-container {
  overflow: visible;
}

.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
}

.header-title-left {
  font-size: 40px;
  line-height: 1.2;
  text-transform: uppercase;
  width: 424px;
  flex-shrink: 0;
  margin: 0;
}

.header-intro-right {
  font-size: 18px;
  line-height: 1.6;
  width: 503px;
  font-family: var(--font-b);
}

/* Carousel wrapper - flows to right edge */
.industries-wrapper {
  position: relative;
  margin-right: calc(-50vw + 50%);
  padding-right: 0;
}

/* Industry Cards - NO border-radius */
.industry-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ind-img-wrap {
  height: 280px;
  overflow: hidden;
  border-radius: 0;
}

body .site-main .ind-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.industry-card:hover .ind-img-wrap img {}

.ind-footer {
  padding: 16px;
}

.ind-link {
  color: #fff;
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
  pointer-events: none;
  text-align: left;
}

.ind-link:hover {
  color: var(--c-primary);
}

/* Navigation Arrow - Industries */
.ind-arrow-nav {
  position: absolute;
  right: calc((100vw - 1376px) / 2 - 24px);
  /* Afstand tot container rand */
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    4px 5px 7px rgba(0, 0, 0, 0.09),
    1px 1px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

/* Voor kleinere schermen waar container 100% breed is */
@media (max-width: 1424px) {

  /* 1376 + 48px padding */
  .ind-arrow-nav {
    right: 24px;
    /* Gewoon 24px vanaf de viewport edge */
  }
}

.ind-arrow-nav:hover {
  transform: translateY(-50%) scale(1.1);
}

/* ============================================
   4. PRODUCTS SECTION
   ============================================ */
.section-products {
  background: var(--c-white);
}

.products-subheader {
  text-align: center;
  margin-bottom: 48px;
}

.products-subheader h3 {
  font-size: 27px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--c-dark);
  margin: 0;
}

.product-grid-wrapper {
  display: flex;
  gap: 24px;
}

.product-card-item {
  border: 1px solid var(--c-grey-border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-height: 412px;
  justify-content: space-between;
}

.pc-image-box {
  height: 205px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
}

.pc-image-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.pc-content-box {
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: auto;
}

.pc-title {
  font-size: 12px;
  color: var(--c-dark);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.2;
  margin: 0;
  min-height: 30px;
}

/* ============================================
   5. SOCIAL PROOF SECTION
   ============================================ */
.section-social-proof {
  background: var(--c-dark);
}

.sp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
}

.sp-title {
  font-size: 40px;
  width: 424px;
  flex-shrink: 0;
  margin: 0;
}

.sp-intro {
  font-size: 18px;
  font-family: var(--font-b);
  width: 503px;
  line-height: 1.6;
}

.reviews-wrapper {
  position: relative;
  margin-bottom: 110px;
}

.review-card {
  background: #fff;
  padding: 40px;
  border-radius: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.review-stars {
  margin-bottom: 32px;
  display: flex;
  gap: 4px;
}

.review-quote {
  color: var(--c-dark);
  font-family: var(--font-b);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  flex: 1;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.reviewer-avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-family: var(--font-b);
  font-weight: 600;
  color: var(--c-dark);
  font-size: 16px;
  line-height: 1.5;
}

.reviewer-role {
  font-family: var(--font-b);
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-dark);
}

.reviewer-divider {
  width: 1px;
  height: 40px;
  background: var(--c-dark);
}

.reviewer-company img {
  height: 38px;
  width: auto;
}

/* Navigation Arrow - Social Proof */
.sp-arrow-nav {
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    4px 5px 7px rgba(0, 0, 0, 0.09),
    1px 1px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.sp-arrow-nav:hover {
  transform: translateY(-50%) scale(1.1);
}

/* Partners Logo Slider */
.partners-slider-wrapper {
  opacity: 0.6;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 112px;
}

.logo-item img {
  max-height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.owl-carousel .owl-item .logo-item img {
  border-radius: 0;
  ;
}

/* ============================================
   6. NEWS SECTION
   ============================================ */
.section-news {
  background: var(--c-white);
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}

.news-title {
  font-family: var(--font-h);
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-dark);
  width: 424px;
  margin: 0;
}

.news-link-all {
  font-family: var(--font-b);
  font-size: 18px;
  font-weight: 400;
  color: var(--c-primary);
  text-decoration: underline;
  width: 503px;
  text-align: right;
}

.news-link-all:hover {
  color: #d42902;
}

.news-grid {
  display: flex;
  gap: 24px;
}

.news-card {
  border: 1px solid var(--c-grey-border);
  display: flex;
  flex-direction: column;
  background: #fff;
  flex: 1;
  max-width: 326px;
}

.news-card:hover .news-card-title {
  text-decoration: underline;
  ;
}

.news-card-img {
  width: 100%;
  height: 226px;
  background-color: #d9d9d9;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.news-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.news-tags {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tag {
  font-family: var(--font-b);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: -0.4px;
  padding: 6px 8px;
}

.tag-dark {
  background: var(--c-navy);
  color: #ffffff;
}

.tag-light {
  background: #e7e9ee;
  color: var(--c-navy);
}

.news-card-title {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  line-height: 1.6;
  letter-spacing: -0.5px;
  flex: 1;
  max-height: 56px;
  overflow: hidden;
}

.news-card-title a {
  color: var(--c-navy);
  text-decoration: none;
  font-family: var(--font-b);
}

.news-card-title a:hover {
  color: var(--c-primary);
}

.news-meta {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
}

.meta-item {
  display: flex;
  gap: 4px;
  align-items: center;
}

.meta-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.meta-item span {
  color: var(--c-grey-text);
  font-family: var(--font-b);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: -0.4px;
}

/* ============================================
   7. CTA MAINTENANCE SECTION
   ============================================ */
.section-cta-maintenance {
  background: var(--c-white);
}

.cta-card {
  background: var(--c-primary);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.cta-left-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  padding: 60px 56px;
}

.cta-heading-wrap {
  width: 100%;
}

.cta-title {
  color: #ffffff;
  font-family: var(--font-h);
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.cta-white-box {
  background: #ffffff;
  padding: 24px 32px;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
}

.cta-list-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  padding: 8px 0;
}

.cta-list-title {
  display: block;
  color: var(--c-dark);
  font-family: var(--font-b);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px;
}

.cta-list-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  color: var(--c-dark);
}

.cta-list-item svg {
  flex-shrink: 0;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.cta-disclaimer {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-b);
  font-size: 13px;
  font-style: italic;
  line-height: 26px;
  letter-spacing: 0.4px;
}

.cta-image-wrapper {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
}

.cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 100%;
}

/* ============================================
   8. CONTACT STRIP SECTION
   ============================================ */
.section-contact-strip {
  background: var(--c-grey);
  padding: 56px 0;
  text-align: center;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1110px;
  margin: 0 auto;
}

.contact-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 630px;
  position: relative;
}

.contact-heading {
  color: var(--c-dark);
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.4px;
}

.contact-text {
  color: var(--c-dark);
  font-family: var(--font-b);
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  letter-spacing: 0.4px;
}

.contact-divider {
  width: 100px;
  height: 2px;
  background-color: var(--c-primary);
  margin-top: 18px;
}

.contact-methods {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item:hover {
  opacity: 0.8;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-label {
  color: var(--c-dark);
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 13px;
  line-height: 26px;
  letter-spacing: 0.4px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
  .inner-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .split-image-wrapper {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .obj-cover {
    height: 400px;
  }

  .header-title-left,
  .sp-title,
  .news-title {
    width: 40%;
  }

  .header-intro-right,
  .sp-intro,
  .news-link-all {
    width: 55%;
  }

  /* Industries arrow repositioning */
  .ind-arrow-nav {
    right: 64px;
  }
}

@media (max-width: 991px) {
  .layout-padding {
    padding: 80px 0;
  }

  /* Hero */
  .section-hero {
    min-height: auto;
    padding: 150px 0 60px 0;
  }

  .hero-content-wrapper {
    min-height: auto;
    gap: 60px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-main {
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .usp-row {
    flex-direction: column;
    gap: 0;
    padding: 16px;
  }

  .usp-tag {
    padding: 8px 16px;
    width: 100%;
    justify-content: flex-start;
  }

  /* Accordion */
  .section-accordion .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .split-layout {
    flex-direction: column;
    gap: 40px;
  }

  .split-image-wrapper {
    flex: auto;
    max-width: 100%;
    width: 100%;
  }

  .obj-cover {
    height: auto;
    min-height: 300px;
    max-height: 400px;
  }

  /* Headers */
  .section-header-split,
  .sp-header,
  .news-header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }

  .header-title-left,
  .header-intro-right,
  .sp-title,
  .sp-intro,
  .news-title,
  .news-link-all {
    width: 100%;
    text-align: left;
  }

  .header-title-left,
  .sp-title,
  .news-title {
    font-size: 2rem;
  }

  .news-link-all {
    text-align: left;
  }

  /* Industries - reset edge-to-edge on mobile */
  .industries-wrapper {
    margin-right: unset;
  }

  .reviews-wrapper {
    margin-bottom: 0;
  }

  /* Products */
  .product-grid-wrapper {
    flex-direction: column;
  }

  .product-card-item {
    min-height: auto;
  }

  /* News */
  .news-grid {
    flex-direction: column;
  }

  .news-card {
    max-width: 100%;
  }

  /* CTA */
  .cta-card {
    flex-direction: column;
  }

  .cta-left-content {
    padding: 40px 24px;
    width: 100%;
  }

  .cta-white-box {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }

  .cta-image-wrapper {
    flex: auto;
    max-width: 100%;
    width: 100%;
  }

  .cta-image {
    height: 300px;
    min-height: auto;
  }

  /* Navigation Arrows - hide on mobile */
  .sp-arrow-nav,
  .ind-arrow-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .inner-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .layout-padding {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-text {
    font-size: 16px;
  }

  h2,
  .section-accordion .section-title,
  .sp-title,
  .news-title,
  .cta-title {
    font-size: 28px;
  }

  .products-subheader h3 {
    font-size: 20px;
  }

  /* Contact */
  .contact-methods {
    flex-direction: column;
    gap: 20px;
  }

  /* Reviews */
  .review-footer {
    flex-wrap: wrap;
    gap: 16px;
  }

  .reviewer-divider {
    display: none;
  }

  /* Accordion */
  .acc-head h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .usp-intro {
    font-size: 14px;
  }

  .usp-tag {
    font-size: 14px;
  }
}

@media (min-width: 1280px) {

  /* Bestaande nav spacing aanpassing */
  .nav li a {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  /* === SUB-MENU STYLING (FIGMA MATCH & OG OVERRIDE) === */

  /* Container overrides (.frame-8114477 logic) */
  .site-header .nav li ul.sub-menu {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 32px;
    width: auto;
    min-width: 240px;
    /* border-radius: 0 0 8px 8px; */
    border: none;
    top: 100%;
    left: 0;
    box-shadow: none;
    right: unset;
    left: calc(100% - 64px);
  }

  /* List Items Overrides */
  .site-header .nav li ul.sub-menu li {
    width: 100%;
    padding: 0;
    margin: 0;
    background: transparent;
    /* Zeker zijn dat er geen donkere bg is */
    border: 0;
  }

  /* De Lijn (.line-8 logic) 
     We zetten een border onder elk item behalve de laatste */
  .site-header .nav li ul.sub-menu li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  /* Link Styling (.button2 logic) */
  .site-header .nav li ul.sub-menu li a {
    /* Font styles uit Figma */
    font-family: var(--font-h), "Ubuntu", sans-serif;
    /* Ubuntu */
    font-weight: 300;
    /* Light */
    font-size: 15px;
    line-height: 1.5;
    color: #ffffff;

    /* Spacing uit Figma (.button padding) */
    padding: 12px 0;
    display: block;
    width: 100%;
    white-space: nowrap;
    text-align: left;

    /* Reset OG styles (belangrijk!) */
    background: transparent;
    border: 0;
    float: none;
    text-decoration: none;
  }

  /* Pijltjes (») weghalen uit OG stylesheet */
  .site-header .nav li ul.sub-menu li a:before {
    content: none;
    display: none;
  }

  /* Hover statussen */
  .site-header .nav li ul.sub-menu li a:hover {
    color: var(--c-primary);
    text-decoration: none;
    /* Geen underline zoals in OG */
    background: transparent;
  }

  .site-header .h-left {
    padding-left: unset;
  }

  /* === PARENT ITEM ARROW (FIGMA MATCH) === */
  /* Alleen op items met een submenu */
  .site-header .nav li.menu-item-has-children>a {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Figma afstand tussen tekst en pijl */
  }

  /* De SVG Pijl toevoegen via CSS */
  .site-header .nav li.menu-item-has-children>a::after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7.08716 9.02344C7.18798 9.02344 7.26496 9.05385 7.34302 9.13184L11.6458 13.459L11.9993 13.8145L16.6819 9.13184C16.7595 9.05424 16.826 9.03227 16.9065 9.03516C17.0008 9.0386 17.0822 9.07117 17.1682 9.15723C17.2463 9.23531 17.2766 9.31223 17.2766 9.41309C17.2765 9.51371 17.2461 9.59001 17.1682 9.66797L12.2493 14.5869C12.1951 14.6411 12.1524 14.667 12.1243 14.6787C12.0887 14.6935 12.0489 14.7021 12.0002 14.7021C11.9758 14.7021 11.9534 14.6993 11.9329 14.6953L11.8752 14.6787L11.8225 14.6484C11.8018 14.634 11.7781 14.6138 11.7512 14.5869L6.80688 9.64355C6.73305 9.56972 6.70686 9.50009 6.71021 9.40527C6.714 9.29797 6.75001 9.2141 6.83228 9.13184C6.9102 9.05403 6.98657 9.02351 7.08716 9.02344Z' fill='white' stroke='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
  }

  .site-header.sticky .nav li ul.sub-menu {
    background: #191e2a;
  }
}