/* Griff Duarte – Theme CSS */

/* ======================= */
/* Hero Section Styling    */
/* ======================= */

.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible; 
}
.home-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.05),
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.75)
  );
  z-index: 1;
}

.home-hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  justify-content: flex-start;
  padding: 0 2rem;
  padding-top: 280px;
}

.home-hero__content {
  text-align: left;
  max-width: 900px;
  width: 100%;
  transform: translateY(40px);
}

/* ======= HERO TITLE ======= */

.home-hero__title {
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* ======= SUBTITLE ======= */

.home-hero__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 0 2rem;
}

/* ======= BUTTON ======= */

.btn-hero {
  background-color: #fff;
  color: #000;
  border: 2px solid #fff;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s ease;
  display: inline-block;
}

.btn-hero:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  cursor: pointer;
}


.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFC125;
  color: #111111;
  border: 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  display: grid;
  place-items: center;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: 
      opacity 180ms ease, 
      transform 180ms ease, 
      box-shadow 180ms ease,
      background 0.3s ease,
      color 0.3s ease,
      border 0.3s ease;
  z-index: 1200;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover { 
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  border: 2px solid #fff;
  color: #fff;
  background: rgba(255, 193, 37, 0.2);
}

.scroll-top:active { 
  transform: translateY(0);
}

.scroll-top:focus-visible {
  outline: 2px solid #000;
  outline-offset: 3px;
}

/* ======================= */
/* Globale Header          */
/* ======================= */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000; 
  background: linear-gradient(rgba(255,255,255,0.15), rgba(255,255,255,0.05)) rgba(10,10,10,0.25);
  backdrop-filter: saturate(180%) blur(40px);
  -webkit-backdrop-filter: saturate(180%) blur(40px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: background 220ms ease, backdrop-filter 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  padding: 0; 
  min-height: 64px; 
}

.header-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr; 
  align-items: center;
  gap: 1rem;
  max-width: 1800px; 
  margin: 0 auto;
  padding: 12px clamp(16px, 3vw, 32px);
}

.header-left { 
  display: flex;
   align-items: center; 
   justify-content: flex-start; 
  }

.header-right { 
  display: flex; 
  align-items: center; 
  justify-content: flex-end; 
  position: relative; 
}
.header-center { 
  display: flex;
   align-items: center;
    justify-content: center; 
  }

.text-logo { 
  color: #fff; 
  text-decoration: none; 
  display: inline-flex; 
  flex-direction: column; 
  line-height: 1; }

.text-logo__line1, .text-logo__line2 { 
  font-family: 'Bebas Neue', system-ui, -apple-system, Segoe UI, Roboto, sans-serif; 
  font-size: 1.5rem; 
  letter-spacing: 0.04em; 
  text-transform: uppercase; 
}

.text-logo__subtitle { 
  font-size: 0.8rem;
  opacity: 0.85; 
  text-transform: uppercase; 
  letter-spacing: 0.06em; 
}

.custom-logo, .custom-logo-link img { 
  max-height: clamp(48px, 6vw, 72px);
  width: auto; 
  display: block;
}

.header-center .custom-logo-link {
  padding: 4px 8px; 
}

.menu-toggle {
  width: 44px; 
  height: 44px; 
  border: 2px solid #fff; 
  border-radius: 10px; 
  background: transparent; 
  color: #fff; 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  cursor: pointer; 
  transition: border-color 0.25s ease;
}

.menu-toggle__bars {
  position: relative; 
  width: 18px; 
  height: 2px; 
  background: #fff; 
  display: block;
  box-shadow: 0 -6px 0 #fff, 0 6px 0 #fff;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.menu-toggle:hover {
  border-color: #FFC125;
}

.menu-toggle:hover .menu-toggle__bars {
  background: #FFC125;
  box-shadow: 0 -6px 0 #FFC125, 0 6px 0 #FFC125;
}

.site-menu { 
  position: fixed; 
  inset: 0; 
  z-index: 2000;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(rgba(255,255,255,0.15), rgba(255,255,255,0.05)) rgba(10,10,10,0.25);
  backdrop-filter: saturate(180%) blur(40px);
  -webkit-backdrop-filter: saturate(180%) blur(40px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.12s ease-out, transform 0.12s ease-out, visibility 0s;
  overflow-y: auto;
}

.site-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* ======================= */
/* Responsive – Header & Hero */
/* ======================= */


@media (max-width: 768px) {
  .site-header { min-height: 56px; }
  .header-bar { padding: 10px clamp(14px, 4vw, 20px); }
  .custom-logo, .custom-logo-link img { max-height: 52px; }

  .home-hero { min-height: 90vh; }
  .home-hero__container { padding-top: clamp(120px, 22vw, 180px); }
  .home-hero__content { position: relative; left: auto; top: auto; transform: none; margin-top: clamp(16px, 5vw, 48px); }
  .home-hero__subtitle { max-width: 640px; }

  .btn-hero { 
    padding: 0.8rem 1.4rem; 
    font-size: clamp(0.85rem, 2.8vw, 1rem);
    border-radius: 8px;
  }
}

.site-menu__list { 
  list-style: none; 
  margin: 0; 
  padding: 0; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: clamp(18px, 5vw, 50px); 
  text-align: center;
}

.site-menu__list li { 
  line-height: 1; 
}

.site-menu__list a { 
  color: #fff; 
  text-decoration: none; 
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 800; 
  letter-spacing: 0.01em;
  text-transform: none;
  font-size: clamp(1.5rem, 5vw, 3rem);
  padding: clamp(6px, 1.6vw, 10px) 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-menu__list a::before, .site-menu__list a::after {
  content: none !important;
  display: none !important;
}

.site-menu__list li:nth-child(odd) a::before,
.site-menu__list li:nth-child(odd) a::after,
.site-menu__list li:nth-child(even) a::before,
.site-menu__list li:nth-child(even) a::after { 
  display: none !important; 
}

.site-menu__list a:hover { 
  transform: translateY(-2px); 
}

.menu-close {
  position: absolute;
  top: clamp(12px, 3vw, 20px);
  right: clamp(12px, 3vw, 20px);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: none;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px) saturate(115%);
  color: #fff;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, opacity 180ms ease;
  z-index: 2100;
}

.menu-close:hover { 
  transform: scale(1.04); 
  background: rgba(255,255,255,0.12); 
}

.menu-close__x {
  position: relative; 
  width: 16px; 
  height: 16px;
}

.menu-close__x::before, .menu-close__x::after {
  content: ""; 
  position: absolute;
  left: 0; 
  right: 0; 
  top: 50%;
  height: 2px; 
  background: #fff; 
  transform-origin: center;
}

.menu-close__x::before { 
  transform: translateY(-50%) rotate(45deg); 
}

.menu-close__x::after  { 
  transform: translateY(-50%) rotate(-45deg); 
}


.home-hero { 
  padding-top: 0; 
  margin-top: -210px; 
}

:root { --scrollbar-width: 0px; }
@media (min-width: 769px) {
}

body.menu-open {
 overflow: hidden; 
  }

body.menu-open .site-header {
  z-index: 1500; 
  background: transparent;
  backdrop-filter: none;
  /* box-shadow: none; */
  border-color: transparent;
  transition: background 220ms ease, backdrop-filter 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

@media (max-width: 768px) {
}

@media (max-width: 768px) {
  .home-hero { margin-top: 0 !important; }
  .home-hero__container { padding-top: clamp(120px, 22vw, 180px); }
  .home-hero__content { position: relative; left: auto; top: auto; transform: none; }
}

@media (max-width: 540px) {
  .home-hero__container { padding-top: clamp(100px, 18vw, 160px); }
  .home-hero__content { margin-top: clamp(8px, 4vw, 36px); }
}

/* ===============================
   FOOTER STYLES
================================= */

.site-footer {
    background-color: #1A1818;
    color: #ffffff;
    font-family: inherit;
    padding: 70px 20px 34px; 
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.footer-col {
    flex: 1;
}

.footer-left {
    text-align: left;
    padding-left: 20px;
}

.footer-logo img {
    width: 220px;
    height: auto;
    margin-bottom: 25px;
    padding-top: 40px;
}

.footer-embeds {
    display: flex;
    gap: 18px;
    margin-top: 10px; 
    padding-left: 5px;
}

.footer-embeds img {
    width: 26px; 
    height: 26px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-embeds img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* ===============================
   MIDDEN + RECHTS KOLOMMEN
================================= */

.footer-info-row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 120px;
    text-align: left;
}

.footer-info-block {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
}

.footer-subtitle {
    font-size: 28px;
    color: #ffb400;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-align: center;
}

.footer-text {
    font-size: 17px;
    color: #e4e4e4;
    line-height: 1.55;
    max-width: 300px;
    text-align: center;
}

.footer-text span {
    display: block;
}

.footer-text.phone-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    text-align: center;
}

/* ===============================
   FOOTER BOTTOM
================================= */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #b5b5b5;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        align-items: center;
    }

    .footer-left {
        padding-left: 0;
        text-align: center;
    }

    .footer-embeds {
        justify-content: center;
        padding-left: 0;
    }

    .footer-info-row {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        align-items: center;
    }

    .footer-info-block {
        align-items: center;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        align-items: center;
    }

    .footer-links { justify-content: center; }
    .footer-logo img { margin: 0 auto; }
}

/* ===============================
   HOME INTRO STYLES
================================= */
.home-intro { 
  padding: 48px 0 40px; 
}

.home-intro .container { 
  max-width: 1800px; 
  margin: 0 auto; 
  padding: 0 16px; 
}

.home-intro__grid {
   display: grid; 
   grid-template-columns: auto minmax(0,1.1fr) auto; 
   align-items: center; 
   gap: 48px; 
   padding-top: 50px;
  }

.home-intro__col { 
  min-width: 0; 
}

.home-intro__image { 
  width: clamp(240px, 18vw, 300px);
  aspect-ratio: 3 / 4;
  background: #d9d9d9;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.home-intro__image--left { 
  border-radius: 12px 12px 28px 12px; 
  margin-left: clamp(8px, 2vw, 20px);
}

.home-intro__image--right { 
  border-radius: 12px 12px 12px 28px; 
  margin-right: clamp(8px, 2vw, 20px);
}

.home-intro__image img { 
  position: absolute; 
  inset: 0; 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

.home-intro__title { 
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif !important;
  font-size: clamp(1.8rem, 3vw, 2.8rem) !important;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  margin: -150px 0 0 0;
}

.home-intro__content { 
  text-align: center; 
}

.home-intro__text {
  margin: 24px auto 38px;
  max-width: 820px;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
  text-align: center;
  color: #d8d8d8
}

.home-intro__text > * { 
  text-align: center; 
  margin-left: auto; 
  margin-right: auto; 
}

.home-intro__text strong { 
  color: var(--accent-color, #FFC125); 
  font-weight: 900; 
}

.home-intro__actions {
   display: flex; 
   justify-content: center;
    margin-top: 6px; 
  }

.home-intro__cta { 
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-button-text);
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 12px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: 
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}
.home-intro__cta:hover {
  transform: translateY(-4px);
  border: 2px solid #fff;
}

@media (max-width: 768px) {
  .home-intro {
    padding: 56px 0 40px;
  }

  .home-intro__grid {
    padding-top: 24px;
  }

  .home-intro__title {
    margin: 0 0 12px 0;
  }
}



@media (max-width: 950px) {
  .home-intro__grid { grid-template-columns: 1fr; justify-items: center; }
  .home-intro__image--left, .home-intro__image--right { order: 3; }
  .home-intro__content { order: 1; }
  .home-intro__image { margin-inline: auto; }
}

/* ===============================
   HOME HIGHLIGHTS STYLES
================================= */

.home-highlights { 
  padding: clamp(28px, 4vw, 56px) 0; 
}

.home-highlights { 
  background: var(--color-bg);
  color: #fff; 
}

.home-highlights .container { 
  max-width: 1800px;
  margin: 0 auto; 
  padding: 0 16px; 

  }
.home-highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  gap: clamp(24px, 3.5vw, 44px);
  align-items: stretch;
  justify-content: center;
}

.highlight-card {
  background: transparent;
  border: 2px solid var(--accent-color, #FFC125);
  border-radius: 14px 14px 14px 28px;
  padding: clamp(20px, 2.6vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  min-height: clamp(240px, 30vw, 320px);
  transition: 
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.highlight-card__icon {
  width: clamp(36px, 4.5vw, 48px);
  height: clamp(36px, 4.5vw, 48px);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-bottom: clamp(12px, 1.4vw, 16px);
}

.highlight-card__icon img { 
  width: 100%; 
  height: 100%; 
  object-fit: contain;
 }

.highlight-card__title {
  font-size: clamp(0.95rem, 1.6vw, 1.2rem) !important;
  margin: 0 0 clamp(6px, 1vw, 10px) 0 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.highlight-card__text { 
  font-size: clamp(0.98rem, 1.6vw, 1.08rem); 
  color: #eaeaea; 
  line-height: 1.6; 
}

.highlight-card__actions .btn { 
  margin-top: clamp(8px, 1vw, 12px); 
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: clamp(18px, 2vw, 26px);
  right: clamp(18px, 2vw, 26px);
  width: 6px; 
  height: 6px; 
  border-radius: 50%;
  background: #fff;
  box-shadow:
    -16px 0 0 #fff,
    -32px 0 0 #fff,
    0 16px 0 #fff,
    -16px 16px 0 #fff,
    0 32px 0 #fff;
}

.home-highlights__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(24px, 4vw, 56px);
}

.home-highlights__cta .cta-button:hover,
.home-highlights__cta .cta-button:focus {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  outline: none;
}

/* ===============================
   HOME SERVICES STYLES
================================= */
.home-services { 
  padding: clamp(28px, 4vw, 56px) 0 clamp(140px, 12vw, 240px); 
}

.home-services .container { 
  max-width: 1800px;
   margin: 0 auto; 
   padding: 0 16px; 
  }

.home-services__title {
  font-family: 'Bebas Neue', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  margin: 0 0 8px 0;
}

.home-services__text { 
  text-align: center; 
  max-width: 820px; 
  margin: 0 auto calc(clamp(18px, 2.6vw, 26px) + 50px);
  opacity: 0.95;
}

.home-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 520px));
  column-gap: clamp(28px, 4vw, 64px);
  row-gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
  justify-content: center;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 2px solid var(--accent-color, #FFC125);
  border-radius: 12px 12px 12px 28px;
  padding: clamp(20px, 2.6vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}


.home-services__grid .service-card:nth-child(2n) {
  margin-top: clamp(80px, 8vw, 160px);
}

@media (max-width: 950px) {
  .home-services__grid { grid-template-columns: 1fr; }
  .home-services__grid .service-card { margin-top: 0 !important; }
}

.service-card__icon {
  width: clamp(30px, 3.8vw, 36px);
  height: clamp(30px, 3.8vw, 36px);
  margin-bottom: clamp(12px, 1.4vw, 16px);
  border: none;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.service-card__icon img { 
  width: 100%; 
  height: 100%; 
  object-fit: contain; 
}

.service-card__title {
  font-family: 'Bebas Neue', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 clamp(8px, 1.2vw, 12px) 0;
}

.service-card__text {
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  color: #eaeaea;
  line-height: 1.6;
}


/* ===============================
   HOME PARTNERS STYLES
================================= */
.home-partners { 
  padding: clamp(40px, 5vw, 80px) 0; 
}

.home-partners__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 4vw, 48px);
}

.home-partners__left-title,
.home-partners__right-title {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.05;
  color: #fff;
}

.home-partners__logo img {
  max-height: clamp(40px, 5vw, 72px);
  width: auto;
  display: block;
}

@media (max-width: 800px) {
  .home-partners__container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

.home-partners__circle {
  position: relative;
  width: clamp(280px, 40vw, 520px);
  height: clamp(280px, 40vw, 520px);
  margin: 0 auto;
  --radius: clamp(110px, 14vw, 220px);
}

.partners-circle__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(50px, 7vw, 90px);
  height: clamp(50px, 7vw, 90px);
  display: flex; 
  align-items: center; 
  justify-content: center;
  z-index: 2;
}
.partners-circle__center img {
   max-width: 100%; 
   max-height: 100%; 
   display: block; 
 }

.partners-circle__ring { 
  position: absolute; 
  inset: 0; 
  z-index: 1; 
}

.partners-circle__center img { 
  max-width: 100%; 
  max-height: 100%; 
  display: block; 
}

.partners-circle__ring { 
  position: absolute; 
  inset: 0; 
}

.partners-circle__item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  width: clamp(60px, 8.5vw, 100px);
  height: clamp(60px, 8.5vw, 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s ease;
  box-shadow: 0 0 0 2px rgba(255, 193, 37, 0);
}

.partners-circle__item:hover {
  transform: var(--hover-transform);
  box-shadow: 0 0 0 2px rgba(255, 193, 37, 1);
}

.partners-circle__item img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  display: block;
  margin: auto;
}

@keyframes partners-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes partners-counter { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

.home-partners__circle .partners-circle__ring { 
  animation: partners-rotate 40s linear infinite; 

}
.home-partners__circle .partners-circle__item img { 
  animation: partners-counter 40s linear infinite; 
  will-change: transform; 
}

.partners-circle__item {
  transition: transform 0.3s ease;
}

.partners-circle__item.item-1 { --hover-transform: rotate(0deg)   translate(var(--radius)) rotate(-0deg)   translateY(-15px); }
.partners-circle__item.item-2 { --hover-transform: rotate(45deg)  translate(var(--radius)) rotate(-45deg)  translateY(-15px); }
.partners-circle__item.item-3 { --hover-transform: rotate(90deg)  translate(var(--radius)) rotate(-90deg)  translateY(-15px); }
.partners-circle__item.item-4 { --hover-transform: rotate(135deg) translate(var(--radius)) rotate(-135deg) translateY(-15px); }
.partners-circle__item.item-5 { --hover-transform: rotate(180deg) translate(var(--radius)) rotate(-180deg) translateY(-15px); }
.partners-circle__item.item-6 { --hover-transform: rotate(225deg) translate(var(--radius)) rotate(-225deg) translateY(-15px); }
.partners-circle__item.item-7 { --hover-transform: rotate(270deg) translate(var(--radius)) rotate(-270deg) translateY(-15px); }
.partners-circle__item.item-8 { --hover-transform: rotate(315deg) translate(var(--radius)) rotate(-315deg) translateY(-15px); }

.partners-circle__item.item-1 { transform: translate(-50%, -50%) rotate(0deg)   translate(var(--radius)) rotate(-0deg); }
.partners-circle__item.item-2 { transform: translate(-50%, -50%) rotate(45deg)  translate(var(--radius)) rotate(-45deg); }
.partners-circle__item.item-3 { transform: translate(-50%, -50%) rotate(90deg)  translate(var(--radius)) rotate(-90deg); }
.partners-circle__item.item-4 { transform: translate(-50%, -50%) rotate(135deg) translate(var(--radius)) rotate(-135deg); }
.partners-circle__item.item-5 { transform: translate(-50%, -50%) rotate(180deg) translate(var(--radius)) rotate(-180deg); }
.partners-circle__item.item-6 { transform: translate(-50%, -50%) rotate(225deg) translate(var(--radius)) rotate(-225deg); }
.partners-circle__item.item-7 { transform: translate(-50%, -50%) rotate(270deg) translate(var(--radius)) rotate(-270deg); }
.partners-circle__item.item-8 { transform: translate(-50%, -50%) rotate(315deg) translate(var(--radius)) rotate(-315deg); }


/* ===============================
   HOME FAQ STYLES (BOOTSTRAP ACCORDION)
================================= */

.home-faq { 
  padding: clamp(40px, 6vw, 90px) 0; 
}

.home-faq__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(380px, 760px);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.home-faq__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px 12px 12px 28px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-faq__image img:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.45);
}


.home-faq__pretitle {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif !important;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  margin: 0 0 6px 0;
  color: #fff;
}

.home-faq__title {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif !important;
  font-size: clamp(1.8rem, 3vw, 2.8rem) !important;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  margin: 50px 0 0 0;
  color: #fff;
}


.home-faq__title .accent { 
  color: var(--accent-color, #FFC125); 
}

.accordion-item {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 193, 37, 0.6);
  margin-bottom: 0;
}
.accordion-item:last-child {
  border-bottom: none;
}

.accordion-button {
  background-color: transparent;
  color: #fff;
  font-family: 'Manrope', sans-serif !important;
  font-size: clamp(0.9rem, 1.8vw, 1.4rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 0;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: transparent;
  box-shadow: none;
}

.accordion-button::after {
  display: none;
}

.faq-chevron {
    width: 16px;
    height: 16px;
    border-right: 3px solid var(--accent-color, #FFC125);
    border-bottom: 3px solid var(--accent-color, #FFC125);
    transform: rotate(-45deg);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: auto;
    margin-right: 8px;
}

.faq-item[open] .faq-chevron {
    transform: rotate(45deg);
}

.accordion-body, .faq-answer {
  padding: 0 0 24px 0;
  color: #eaeaea;
  line-height: 1.7;
  font-size: 1.05rem;
}

.accordion-collapse.collapsing, .faq-panel.is-animating {
    transition: height 700ms cubic-bezier(0.25, 1, 0.5, 1);
}

.accordion-collapse,
.faq-panel {
    visibility: visible;
    overflow: hidden;
    height: 0;
    opacity: 0;
    transform: translateY(-8px);
    will-change: height, opacity, transform;
    transition: opacity 650ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item[open] .faq-panel { height: auto; opacity: 1; transform: translateY(0); }

.faq-list .faq-item.reveal-up:nth-child(1) { transition-delay: 0ms; }
.faq-list .faq-item.reveal-up:nth-child(2) { transition-delay: 140ms; }
.faq-list .faq-item.reveal-up:nth-child(3) { transition-delay: 280ms; }
.faq-list .faq-item.reveal-up:nth-child(4) { transition-delay: 420ms; }
.faq-list .faq-item.reveal-up:nth-child(5) { transition-delay: 560ms; }

.faq-list {
   margin-top: 8px;
   }

.faq-item { 
  position: relative;
  border-bottom: none;
}

.faq-summary {
  background: transparent;
  color: #fff;
  font-family: 'Manrope', sans-serif !important;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 500;
  text-transform: uppercase;
  padding: 14px 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-summary::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 193, 37, 0.35);
}

.faq-summary::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 193, 37, 0.9);
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0.0;
  transition:
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 400ms ease-out,
    box-shadow 400ms ease-out;
}

.faq-item:last-child { 
  border-bottom: none; 
}

.faq-item:last-child .faq-summary::after {
  display: none;
}

.faq-item[open] .faq-summary::after {
  transform: scaleX(1);
  opacity: 0.95;
  box-shadow: 0 0 12px rgba(255, 193, 37, 0.55);
}

.faq-item:not([open]):hover .faq-summary::after {
  opacity: 0.6;
}

.faq-summary::-webkit-details-marker { 
  display: none; 
}


@media (max-width: 900px) {
  .home-faq__container {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .home-faq__image {
    max-width: 420px;
    margin: 0 auto;
  }

  .home-faq__content {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
  }

  .home-faq__title {
    text-align: left;
  }
}

@media (max-width: 540px) {
  .home-faq {
    padding: 32px 0 40px;
  }

  .home-faq__container {
    gap: 20px;
  }

  .home-faq__title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .faq-summary {
    font-size: clamp(0.85rem, 3.4vw, 1.05rem);
    padding: 10px 0;
  }

  .accordion-body,
  .faq-answer {
    font-size: 0.98rem;
  }
}

/* ===============================
   CTA SECTION
================================ */

.cta-section {
    width: 100%;
    padding: var(--space-60) 20px;
    display: flex;
    justify-content: center;
}

.cta-wrapper {
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: #FFC125;
    color: #000;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 12px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: transparent;
    color: #fff;
    border-color: #fff;
}

@media (max-width: 768px) {
    .cta-button {
        width: 100%;
        padding: 18px;
        font-size: 17px;
    }
}


/* ===============================
   MOBIEL: grotere tikdoelen voor knoppen
================================= */

@media (max-width: 540px) {
  .scroll-top {
    width: 56px;
    height: 56px;
  }
  .menu-close {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  .menu-close__x { width: 18px; height: 18px; }
}

/* =========================================
   LEGAL PAGES (Privacy & Terms)
========================================= */


.legal-section {
    width: 100%;
    padding: 100px 0;
}

.legal-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-title {
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    margin-bottom: 25px;
    font-weight: 700;
}

.legal-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text); 
    opacity: 0.9;
    white-space: pre-line;
}


/* ======================= */
/* MEGA MENU REBUILD       */
/* ======================= */

.site-menu.mega-menu {
    position: fixed;
    top: var(--header-height, 72px);
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0 0 12px 12px;
    height: 420px;
    min-height: 420px; 
    max-height: 420px;
    overflow: hidden;
    display: block;
    padding: 0;
    backdrop-filter: saturate(180%) blur(40px);
    -webkit-backdrop-filter: saturate(180%) blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.992);
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0s linear 0.28s;
    will-change: opacity, transform;
    
    z-index: 999;
}

.site-menu.mega-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0s linear 0s;
    
    box-shadow: none;
    z-index: 999;
}

body.menu-open .site-header {
    backdrop-filter: saturate(180%) blur(40px);
    -webkit-backdrop-filter: saturate(180%) blur(40px);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    transition: none;
}

body.menu-open {
    overflow: visible !important;
}

.mega-menu__inner {
    width: 100%;
    height: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.mega-menu__content {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 100%;
    position: relative;
}

.mega-menu__left {
    flex: 1;
    position: relative;
    padding: 44px 24px 28px 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 1;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.mega-menu__right {
    flex: 1;
    background: transparent;
    position: relative;
    overflow: hidden;
    border-left: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 1;
}

.mega-menu__preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mega-menu__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
    opacity: 0.8;
}

.site-menu__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.site-menu__list li {
    display: block;
    width: 100%;
    text-align: left;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-menu.open .site-menu__list li {
    opacity: 1;
    transform: translateY(0);
}

.site-menu.open .site-menu__list li:nth-child(1) { transition-delay: 0s; }
.site-menu.open .site-menu__list li:nth-child(2) { transition-delay: 0.05s; }
.site-menu.open .site-menu__list li:nth-child(3) { transition-delay: 0.1s; }
.site-menu.open .site-menu__list li:nth-child(4) { transition-delay: 0.15s; }
.site-menu.open .site-menu__list li:nth-child(5) { transition-delay: 0.2s; }

.site-menu__list a {
    font-family: 'Bebas Neue', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: clamp(1.6rem, 2.4vw, 2.3rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    line-height: 1.2;
    transition: color 0.3s ease, padding-left 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: inline-block;
    padding: 8px 24px;
}

.site-menu__list a:hover,
.site-menu__list a:focus {
    color: var(--accent-color, #FFC125);
    padding-left: 10px;
    text-shadow: none;
}

.menu-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    border: 2px solid #fff;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: border-color 0.25s ease;
}

.menu-toggle:hover {
    border-color: #fff;
}

.menu-toggle__bars {
    position: relative;
    width: 20px;
    height: 2px;
    background-color: currentColor;
    box-shadow: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.menu-toggle:hover .menu-toggle__bars {
    background-color: #fff;
    box-shadow: none;
}

.menu-toggle__bars::before,
.menu-toggle__bars::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transition: transform 0.3s ease, top 0.3s ease;
}

.menu-toggle__bars::before {
    top: -6px;
}

.menu-toggle__bars::after {
    top: 6px;
}

.menu-toggle[aria-expanded="true"] {
    border-color: #fff; 
    background: rgba(255,255,255,0.1);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::after {
    top: 0;
    transform: rotate(-45deg);
}

.menu-close {
    display: none !important;
}

@media (max-width: 992px) {
    .mega-menu__content {
        flex-direction: column;
        min-height: auto;
    }
    
    .mega-menu__right {
        display: none;
    }
    
    .mega-menu__left {
        padding: 2rem;
        align-items: center;
        text-align: center;
    }
    
    .site-menu__list {
        align-items: center;
    }
    
    .site-menu__list a {
        font-size: 2rem;
    }
    
    .site-menu.mega-menu {
        max-height: calc(100vh - 60px);
    }
}

.faq-item { 
  transition: padding-bottom 1.4s cubic-bezier(0.22, 1, 0.36, 1); 
}

.faq-item[open] {
   padding-bottom: 12px; 
}

#app-loader {
  opacity: 1;
  background-color: transparent;
}

.app-loader__bg {
  display: none;
}

#app-loader .app-loader__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: transparent;
  box-shadow: 0 0 0 200vmax #000;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 1;
}

.app-loader.circle-reveal {
  opacity: 1;
  background-color: transparent;
}

.app-loader.circle-reveal .app-loader__circle {
  animation: squareReveal 1200ms cubic-bezier(0.3, 0, 0.2, 1) forwards;
}

.app-loader.circle-reveal .app-loader__inner {
  opacity: 0;
  transition: opacity 300ms ease;
}

@keyframes squareReveal {
  0% {
    width: 0;
    height: 0;
    box-shadow: 0 0 0 200vmax #000;
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    width: 200vmax;
    height: 200vmax;
    box-shadow: 0 0 0 0 #000;
    opacity: 0;
  }
}

#app-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.app-loader {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: visible;
}

.app-loader__inner {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
}

.app-loader__logo {
  width: clamp(120px, 16vw, 220px);
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.6));
  opacity: 0;
  transform: scale(0.86);
}

.app-loader__text {
  color: #fff;
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  opacity: 0;
  transform: scale(0.86);
}

.app-loader__brand {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: clamp(1rem, 2.8vw, 1.4rem);
  opacity: 1;
  transform: none;
  white-space: nowrap;
  overflow: hidden;
  border-right: .1em solid #fff;
  width: 11ch;
  text-align: center;
}

.app-loader.play .app-loader__logo,
.app-loader.play .app-loader__text {
  animation: loaderPulse 900ms cubic-bezier(0.3, 0, 0.2, 1) forwards;
}

.app-loader.play .app-loader__brand {
  animation: loaderTyping 1800ms steps(12, end), loaderCaret .6s step-end infinite alternate;
}

@keyframes loaderPulse {
  0% {
    opacity: 0;
    transform: scale(0.86);
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
  60% {
    opacity: 1;
    transform: scale(1.06);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes loaderTyping {
  from {
    width: 0;
  }
  to {
    width: 11ch;
  }
}

@keyframes loaderCaret {
  50% {
    border-color: transparent;
  }
}

.app-loader.circle-reveal .app-loader__logo,
.app-loader.circle-reveal .app-loader__brand {
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transition: opacity 600ms ease, transform 600ms ease;
}

/* ===============================
 NAME REPEATER STYLES
================================= */

.text-repeater-wrapper{
    overflow:hidden;
    width:100%;
    display:flex;
    flex-direction:column;
    gap:20px;
    padding:48px 0 8px;
}

.text-repeater-item{
    display:flex;
    flex-wrap:nowrap;
    gap:0;
    white-space:nowrap;
    width:max-content;
}

.text-repeater-item h2{
    margin:0;
    font-size:80px !important;
    font-weight:900;
    color:transparent;
    -webkit-text-stroke:1.5px #FFC125;
    text-stroke:1.5px #FFC125;
    line-height:1;
}

.row-1{
    animation:marquee-left 30s linear infinite;
}

.row-2{
    animation:marquee-right 30s linear infinite;
}

@keyframes marquee-left{
    0%{ transform:translateX(0); }
    100%{ transform:translateX(-50%); }
}

@keyframes marquee-right{
    0%{ transform:translateX(-50%); }
    100%{ transform:translateX(0); }
}

@media (max-width: 768px){
    .text-repeater-wrapper{
        padding:28px 0 4px;
        gap:10px;
        margin-bottom:0;
    }

    .text-repeater-item h2{
        font-size:clamp(24px,7vw,32px) !important;
        -webkit-text-stroke:1px #FFC125;
        text-stroke:1px #FFC125;
    }
}

@media (max-width: 540px){
    .text-repeater-wrapper{
        padding:24px 0 2px;
        margin-bottom:0;
    }

    .text-repeater-item h2{
        font-size:clamp(20px,6vw,26px) !important;
    }
}
