*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --blue: #2f28d2;
  --dark: #041433;
  --cream: #fffef7;
  --green: #D5FD7D;
  --footer-bg: #202330;
  --grey: #8a8a9a;
  --nav-h: 68px;
  --light-blue: #6585d5;
  --hero-grey: #202330;
  --light: #f3f3f3;
  --content: #202330;
  --sec-drie: #272731;
}
html, body {
  font-family: 'Artegra', sans-serif;
  font-size: 17px;
  line-height: 1.4;
  overflow-x: hidden;
  background: var(--hero-grey);
  color: var(--light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h4 {
  font-family: 'Artific Med', sans-serif;
  font-size: 59px;
  font-weight: 500;
  color: var(--light);
  margin-bottom: 40px;
  line-height: 1.1;
}
b{  font-weight: bold;
}
.privacy li{font-size: 13px !important; line-height: 1.2em !important;}
.privacy p{font-size: 13px !important; line-height: 1.2em !important;}

/* ── NAV ── */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 300;
}
#main-nav {
  transition: background-color 0.3s ease;
}
#main-nav.scrolled {
  background-color: color-mix(in srgb, var(--content) 90%, transparent);
  backdrop-filter: blur(10px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 7.5%;
  max-width: 1640px;
  margin: 0 auto;
}
.nav-inner img {
  width: 200px;
}
.nav-logo img {
  height: 22px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links li {
  position: relative;
}
.nav-btn, .nav-link {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  padding: 8px 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: opacity 0.2s;
  font-weight: 500;
  letter-spacing: .5px;
  font-family: 'Artific Med';
}
.nav-lang {padding: 0 14px;}
.nav-lang .nav-link{ padding: 8px 0;}
.nav-btn:hover, .nav-link:hover {
  opacity: 0.75;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  padding: 12px;
  opacity: 0;
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateX(-50%) translateY(-8px);
  list-style: none;
}
.nav-links li.open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  max-height: 400px;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li {
  margin: 0 0 6px 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-dropdown li:last-child {
  margin-bottom: 0;
}
.nav-links li.open .nav-dropdown li {
  opacity: 1;
  transform: translateY(0);
}
.nav-links li.open .nav-dropdown li:nth-child(1) {
  transition-delay: 0.05s;
}
.nav-links li.open .nav-dropdown li:nth-child(2) {
  transition-delay: 0.1s;
}
.nav-links li.open .nav-dropdown li:nth-child(3) {
  transition-delay: 0.15s;
}
.nav-links li.open .nav-dropdown li:nth-child(4) {
  transition-delay: 0.2s;
}
.nav-links li.open .nav-dropdown li:nth-child(5) {
  transition-delay: 0.25s;
}
.nav-links li.open .nav-dropdown li:nth-child(6) {
  transition-delay: 0.3s;
}
.nav-dropdown li a {
  display: block;
  padding: 5px 30px 4px;
  
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  border-radius: 100px;
  text-align: center;
  white-space: nowrap;
  background: rgba(65, 72, 88, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  letter-spacing: .5px;
}
.nav-dropdown li a:hover {
  background: rgba(65, 72, 88, 0.5);
  transform: translateY(-2px);
}
.nav-dropdown-2col {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 0px 5px;
  min-width: 280px;
}
.nav-lang {
  display: flex;
  align-items: center;
  gap: 1px;
}
.lang-sep {
  opacity: 0.3;
  margin: 0 1px;
}
.lang-nl {
  font-weight: 500;
}
.lang-en {
  opacity: 0.5;
}
.nav-lang:hover .lang-nl {
  opacity: 0.5;
}
.nav-lang:hover .lang-en {
  opacity: 1;
  font-weight: 700;
}
.btn-nav {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 7px 22px 8px;
  font-family: 'Artific Med', sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
  letter-spacing: .5px;
	  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  outline: none;
}
.btn-nav:hover {
  opacity: 0.85;
}
.nav-inner > a {
  display: flex;
  align-items: center;
}
.nav-inner > a img {
  display: block;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mob-lang {
	display: flex;
	align-items:flex-start;
	gap: 2px;
	padding: 20px 0;
	margin-top: 20px;
}

.mob-lang a {
	font-size: 20px;
	min-height: auto;
	padding: 0;
}

.mob-lang span {
	color: rgba(255, 255, 255, 0.3);
	font-size: 20px;
}

/* ── MOBILE FLOAT ── */
.mob-float {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 250;
  display: none;
  align-items: center;
  gap: 10px;
}
.mob-float-tickets {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.mob-float-menu {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.mob-float-menu span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
}
.mob-logo-fixed {
  position: fixed;
  top: 26px;
  left: 18px;
  z-index: 500;
  display: none;
}
.mob-logo-fixed {
  transition: background-color 0.3s ease, padding 0.3s ease, transform 0.3s ease;
  border-radius: 50px;
}
.mob-logo-fixed.scrolled {
  background-color: rgb(32 35 48 / 69%);
  backdrop-filter: blur(10px);
  padding: 12px 16px 4px;
  transform: translate(-12px, -11px);
  width: 118px;
}
.mob-float-tickets {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 24px; /* Fixed radius */
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  white-space: nowrap;
  padding: 0;
}
.mob-float-tickets.scrolled {
  width: 110px; /* Fixed width instead of auto */
}
.mob-float-tickets img {
  flex-shrink: 0;
  transition: margin-right 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateX(30px);
}
.mob-float-tickets.scrolled img {
  transform: translateX(-36px);
  display: none;
}
.mob-float-tickets::after {
  content: 'Tickets';
  font-family: 'Artific Med', sans-serif;
  font-size: 17px;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.mob-float-tickets.scrolled::after {
  opacity: 1;
}
.mob-logo-fixed img {
  width: 170px;
  height: auto;
  transition: clip-path 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  clip-path: inset(0 0 0 0);
}
.mob-logo-fixed.scrolled img {
  clip-path: inset(0 50% 0 0);
}
@media (max-width: 768px) {
  .mob-logo-fixed {
    display: block;
  }
  h4 {
    font-size: 44px;
  }
}
.mob-logo-fixed img {
  width: 170px;
  height: auto;
}
/* ── MOBILE NAV ── */
#mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--content);
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.35s, transform 0.35s;
}
#mob-nav.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mob-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 37px 24px 0;
  height: var(--nav-h);
  flex-shrink: 0;
}
.mob-nav-top img {
  height: 28px;
}
.mob-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--light);
  position: absolute;
  right: 26px;
}
.mob-links {
  flex: 1;
  overflow-y: auto;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
}
.mob-links a, .mob-group-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 4px 0;
  font-size: 28px;
  font-weight: 300;
  font-family: 'Artific Med', sans-serif;
  color: var(--light);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}
.mob-links a:hover, .mob-group-btn:hover {
  opacity: 0.9;
}
.mob-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s;
  opacity: 0;
}
.mob-group-btn.open .mob-chevron {
  transform: rotate(90deg);
}
.mob-sub {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s;
}
.mob-sub.open {
  grid-template-rows: 1fr;
}
.mob-sub-inner {
  overflow: hidden;
}
.mob-sub a {
  font-size: 20px;
  padding: 8px 0;
  border-bottom: none;
  min-height: auto;
  opacity: 0.8;
}
.mob-sub-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.mob-footer {
  flex-shrink: 0;
  padding: 16px 24px 40px;
}
.mob-footer a {
  display: block;
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 30px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  font-family: 'ArtegraMed', sans-serif;
}
/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--hero-grey);
}
:root {
  --vid-scale: 0.85;
  --vid-radius: 20px;
}
#hero-vid {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
  background: #b0b8c8;
  transform: scale(var(--vid-scale));
  transform-origin: center center;
  border-radius: var(--vid-radius);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  will-change: transform, border-radius;
}
#hero-vid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#hero-vid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}
#hero-vid video {
  position: relative;
  z-index: 0;
}
#hero-logo {
  display: none;
}
.hero-video-mobile {
  display: none;
}
.hero-video-desktop, .hero-video-mobile {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#hero-txt {
  position: relative;
  left: 40px;
  z-index: 10;
  pointer-events: none;
  flex-shrink: 0;
  opacity: 1;
  transform: translateY(0);
}
#hero-txt h1 {
  font-family: 'Artific', sans-serif;
  font-size: 5em;
  font-weight: 200;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--light);
}
#hero-txt h1 strong {
  font-weight: 900;
  display: block;
}
.hero-desc {
  font-size: 29px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 16px;
  max-width: 400px;
  line-height: 1.2;
}
.hero-btn {
  display: inline-block;
  margin-top: 20px;
  background: var(--blue);
  color: var(--light);
  padding: 7px 28px 8px;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Artific Med', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .5px;
  transition: opacity 0.2s;
}
.hero-btn:hover {
  opacity: 0.85;
}
/* Page hero */
#page-hero {
  width: 100%;
  height: 60vh;
  min-height: 400px;
  position: relative;
  background-color: var(--hero-grey);
  overflow: hidden;
}
#hero-image {
  width: 100%;
  height: 120%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}
/* Bezoek content */
#bezoek-content {
  background-color: var(--content);
  padding: 80px 80px 120px;
  border-radius: 24px 24px 0 0;
  margin-top: -24px;
  position: relative;
  z-index: 5;
}
.bezoek-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.bezoek-section {
  margin-bottom: 64px;
}
.bezoek-section:last-child {
  margin-bottom: 0;
}
.bezoek-section ul li {
 left: 10px; position: relative;
}
.bezoek-section h2 {
  font-family: 'Artific Med', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--light-blue);
  margin-bottom: 16px;
}
.bezoek-section h3 {
  font-size: 19px;
  font-weight: 900;
  color: var(--light);
  margin: 20px 0 5px;
  line-height: 1.2;
}
.bezoek-section p {
  color: var(--light);
  opacity: 0.9;
  font-size: 17px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.bezoek-section p:last-child {
  margin-bottom: 0;
}
.map-wrap {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 24px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.hours-list {
  margin-top: 24px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light);
}
.hours-row:last-child {
  border-bottom: none;
}
.hours-row.closed {
  opacity: 0.5;
}
.hours-row .day {
  font-weight: 500;
}
.hours-row .time {
  font-family: 'ArtegraMed', sans-serif;
  font-weight: 500;
}
.partner-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.partner-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo img {
  max-width: 135px;
  height: auto;
  opacity: 0.9;
}
.partner-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .partner-row {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .partner-logo {
    justify-content: flex-start;
  }
  .partner-logo img {
    max-width: 150px;
  }
}
.partner-logos-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
  margin-top: 32px;
}
.partner-logos-row img {
  width: 100%;
  max-width: 135px;
  height: auto;
  opacity: 0.85;
  transition: opacity 0.3s;
  margin: 0 auto;
  display: block;
}
.partner-logos-row img:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .partner-logos-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .partner-logos-row img {
    max-width: 120px;
  }
}
/* FAQ Content */
#faq-content {
  background-color: var(--content);
  padding: 80px 80px 120px;
  border-radius: 24px 24px 0 0;
  margin-top: -24px;
  position: relative;
  z-index: 5;
}
.faq-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.faq-questions h2 {
  font-family: 'Artific Med', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--light-blue);
  margin-bottom: 24px;
  margin-top: 48px;
}
.faq-questions h2:first-child {
  margin-top: 0;
}
.faq-accordion {
  margin-bottom: 40px;
}
.faq-item {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.3s;
}
.faq-item:hover {
  opacity: 0.8;
}
.faq-item span {
  font-family: 'Artific Med', sans-serif;
  font-size: 17px;
  color: var(--light);
  flex: 1;
}
.faq-arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
  transform: rotate(45deg);
}
.faq-item.active .faq-arrow {
  transform: rotate(-45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-answer.open {
  max-height: 200px;
  padding-bottom: 20px;
}
.faq-answer p {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
}
/* Summary Boxes */
.faq-summary {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.faq-summary-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
}
.faq-summary-box h3 {
  font-size: 19px;
  font-weight: 900;
  color: var(--light);
  line-height: 1.2;
  margin-bottom: 20px;
}
.faq-summary-box p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin-bottom: 12px;
}
.faq-summary-box p:last-child {
  margin-bottom: 0;
}
/* Mobile */
@media (max-width: 768px) {
  #faq-content {
    padding: 48px 20px 64px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .faq-questions h2 {
    font-size: 28px;
  }
  .faq-item span {
    font-size: 16px;
  }
  .faq-summary-box {
    padding: 24px;
  }
}
/* Bezoek mobile */
@media (max-width: 768px) {
  #page-hero {
    height: 50vh;
    min-height: 300px;
  }
  #bezoek-content {
    padding: 48px 20px 128px;
  }
  .bezoek-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .bezoek-section {
    margin-bottom: 48px;
  }
  .bezoek-right {
    margin-top: 48px;
  }
  .bezoek-section h2 {
    font-size: 28px;
  }
  .map-wrap {
    height: 300px;
  }
}
#nova-footer {
  position: fixed;
  width: 52px;
  height: 52px;
  background: var(--green);
  border-radius: 50%;
  bottom: 18%;
  left: 0;
  z-index: 50;
  box-shadow: 0 0 28px var(--green), 0 0 64px rgba(213, 253, 125, 0.4);
  pointer-events: none;
}
#nova {
  position: absolute;
  width: 52px;
  height: 52px;
  background: var(--green);
  border-radius: 50%;
  bottom: 18%;
  left: -70px;
  z-index: 10;
  box-shadow: 0 0 28px var(--green), 0 0 64px rgba(213, 253, 125, 0.4);
  pointer-events: none;
}
/* ── ICON HOLDERS ── */
#icon-holders {
  padding: 0;
  margin-top: -80px;
  position: relative;
  z-index: 15;
  top: -40px;
}
.icon-holder-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 160px;
  max-width: 800px;
  margin: 0 auto -24px;
}
.icon-holder {
  background: var(--light-blue);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.icon-holder-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.icon-holder-text {
  font-size: 11px;
  color: var(--dark);
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
}
/* ── FEATURE ── */
#feature {
  padding: 130px 80px 100px;
  background-color: var(--content);
  border-radius: 24px 24px 0 0;
  margin-top: -125px;
  position: relative;
  z-index: 5;
}
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}
.feat-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.img-slider {
  position: absolute;
  inset: 0;
}
.img-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  will-change: transform;
}
.img-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-slide-bg {
  position: absolute;
  inset: 0;
}
/* Slider navigation arrows */
.slider-arrows {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
}
.img-slider:hover .slider-arrows, .feat-img:hover .slider-arrows {
  opacity: 1;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  ;
}
.slider-arrow-left {
  left: 20px;
  transform: rotate(180deg)
}
.slider-arrow-right {
  right: 20px;
}
.slider-arrow img {
  width: 14px;
  height: 14px;
}
@media (max-width: 768px) {
  .slider-arrow {
    width: 40px;
    height: 40px;
  }
  .slider-arrow-left {
    left: 12px;
  }
  .slider-arrow-right {
    right: 12px;
  }
  .slider-arrow svg {
    width: 20px;
    height: 20px;
  }
}
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 100px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.slider-dot.active {
  background: var(--light);
  transform: scale(1.25);
}
.intro {
  color: var(--light);
  text-align: center;
  max-width: 50vw;
  font-size: 24px;
  line-height: 1.3;
  padding-bottom: 130px;
  margin: 60px auto 30px;
}
.intro2 {
  color: var(--light);
  text-align: center;
  max-width: 50vw;
  font-size: 24px;
  line-height: 1.3;
  padding-bottom: 130px;
  margin: 15px auto;
}
.intro2 h4 {
  color: #6B8FD4;
}
.intro h4 {
  color: #6B8FD4;
}
.feat-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feat-eyebrow {
  font-size: 12px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.feat-body h2 {
  font-family: 'Artific SemBd', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--light-blue);
}
.feat-body > p {
  font-size: 17px;
  line-height: 1.4;
  color: var(--light);
  opacity: 0.9;
  max-width: 480px;
}
.feat-stats {
  display: flex;
  gap: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  align-items: stretch;
  max-width: 580px;
}
.feat-stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4px;
  padding-right: 32px;
  padding-left: 0;
}
.feat-stat + .feat-stat {
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.feat-stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
	    text-align: center;

}
.feat-stat-val {
  font-family: 'ArtegraMed', sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--light);
  line-height: 1;
  white-space: nowrap;
	    text-align: center;

}
.btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn-group:has(.btn-wrap:first-child:hover) {
  gap: 50px;
}
.btn-group {
  transition: gap 0.85s cubic-bezier(0.76, 0, 0.24, 1);
}
.btn-group .btn-wrap:nth-child(2) .btn-top {
  background-color: #48474c; border-color: #fff;
}

.btn-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
}
.btn-top {
  position: relative;
  z-index: 2;
  background: var(--blue);
  color: var(--light);
  border: 2px solid var(--blue);
  padding: 8px 28px 8px;
  font-family: 'Artific Med', sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.4s;
  letter-spacing: .5px;
  display: inline-block;
	  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  outline: none;
}
.tm50 {
  margin-top: 10px;
}
.btn-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  color: var(--light);
  transform: translateX(0);
  transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
	  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  outline: none;
}
.btn-wrap:hover .btn-bg {
  transform: translateX(34px);
}
/* Meer informatie button — section color + white border */
.btn-wrap-alt .btn-top {
  background: #48474c;
  color: var(--light);
  border: 2px solid var(--light);
}
.btn-wrap-alt .btn-bg {
  background: #48474c;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-group2 .btn-wrap2 {
  align-self: center;
}
.btn-wrap2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
}
.btn-top2 {
  position: relative;
  z-index: 2;
  background: var(--content);
  color: var(--light);
  border: 2px solid var(--light);
  padding: 8px 28px 8px;
  font-family: 'Artific Med', sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.4s;
  letter-spacing: .5px;
  display: inline-block;
  text-decoration: none;
	  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  outline: none;
}
.btn-bg2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 1);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  color: var(--light);
  transform: translateX(0);
  transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
	  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  outline: none;
}
.btn-wrap2:hover .btn-bg2 {
  transform: translateX(34px);
}
.btn-wrap-alt2 .btn-top2 {
  background: #494751;
  color: var(--light);
  border: 2px solid var(--light);
}
.btn-wrap-alt2 .btn-bg2 {
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 1);
}
.btn-group2 {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn-wrap2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
}
/* Hover button 1: buttons 2 & 3 move right */
.btn-group2:has(.btn-wrap2:nth-child(1):hover) .btn-wrap2:nth-child(2), .btn-group2:has(.btn-wrap2:nth-child(1):hover) .btn-wrap2:nth-child(3) {
  transform: translateX(34px);
}
/* Hover button 2: button 3 moves right */
.btn-group2:has(.btn-wrap2:nth-child(2):hover) .btn-wrap2:nth-child(3) {
  transform: translateX(34px);
}
/* ── PHOTO TEXT CARDS ── */
#photo-cards {
  padding: 80px 80px 120px;
  background-color: var(--content);
  margin-top: -5px;
}
.photo-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}
#plan-bezoek {
  background-color: var(--content);
  padding: 80px 80px;
  margin-top: -24px;
  border-radius: 24px 24px 0 0;
  position: relative;
  z-index: 7;
}
.plan-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.plan-col {
  height: 300px;
  position: relative;
}
.plan-col #plan-bezoek h2 {
  font-family: ''Artific Med', sans-serif;
font-size: 24px;
  font-weight: 500;
  color: var(--light);
  margin-bottom: 60px;
  opacity: 0.5;
}
#reviews h2, #gallery h2 {
  font-family: 'Artific Med', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--light-blue);
  margin-bottom: 60px;
  opacity: 0.9;
  text-align: center;
}
#reviews h2 {
  margin-bottom: 80px;
}
.ad {
  max-width: 1400px;
  margin: 0 auto;
}
.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.plan-col h3 {
  font-family: 'Artific Med', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--light-blue);
  margin-bottom: 16px;
}
.plan-col p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.4;
}
.plan-col p:last-child {
  margin-bottom: 0;
}
.plan-col .btn-group, .plan-col .btn-group2 {
  margin-top: 24px;
  position: absolute;
  bottom: 0;
}
/* Gallery section */
#gallery {
  background-color: var(--content);
  padding: 80px 0;
  margin-top: -24px;
  border-radius: 24px 24px 0 0;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
.gallery-inner {
  max-width: 100%;
}
#gallery .btn-group {
  display: flex;
  justify-content: center;
  padding: 40px 80px 0;
}
.gallery-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-bottom: 36px;
}
.gallery-scroll::-webkit-scrollbar {
  display: none;
}
.gallery-track {
  display: flex;
  gap: 20px;
  animation: scroll 60s linear infinite;
  width: max-content;
}
.gallery-track:hover {
  animation-play-state: paused;
}
.gallery-track img {
  height: 400px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Mobile adjustments */
@media (max-width: 768px) {
  #plan-bezoek {
    padding: 48px 20px;
  }
  #plan-bezoek h2 {
    font-size: 34px;
    margin-bottom: 32px;
    text-align: left;
  }
  .plan-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .plan-col .btn-group2, .plan-col .btn-group {
    flex-direction: column;
    width: 100%;
    position: relative;
  }
  .plan-col .btn-wrap, .plan-col .btn-wrap2 {
    width: 100%;
  }
  .plan-col .btn-top, .plan-col .btn-top2 {
    width: 100%;
    text-align: center;
  }
  #gallery {
    padding: 48px 0;
  }
  #gallery h2 {
    font-size: 32px;
    margin-bottom: 32px;
    padding: 0 20px;
  }
  #gallery .btn-group {
    padding: 40px 20px 0;
  }
  .gallery-track img {
    height: 280px;
  }
}
@media (min-width: 1400px) {
  .photo-cards-grid {
    gap: 32px;
  }
}
.photo-card {
  background-color: #eae6e5;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}
.photo-card:hover {
  transform: translateY(-4px);
}
.photo-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.photo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-card-content {
  padding: 16px;
}
.photo-card-title {
  font-family: 'Artific Med', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #11223d;
  margin-bottom: 6px;
}
.photo-card-text {
  font-size: 16px;
  line-height: 1.4;
  color: var(--dark);
  padding: 8px 0;
}
/* ── REVIEWS SECTION ── */
#reviews {
  padding: 80px 80px;
  background-color: var(--content);
  border-radius: 24px 24px 0 0;
  margin-top: -24px;
  position: relative;
  z-index: 7;
}
.reviews-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.review-quote {
  margin-bottom: 60px;
  animation: slideInFromRight 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.reviews-inner {
  position: relative;
  padding-inline: 36px;
}

.review-arrow-prev { left: 0; }
.review-arrow-next { right: 0; }

.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 200ms ease;
  padding: 0;
}

.review-arrow img {
  width: 28px;
  height: 28px;
}


.review-quote {
  pointer-events: none;
}

.review-dots,
.review-arrow {
  pointer-events: all;
}

#reviews:hover .review-arrow {
  opacity: 1;
}

@media (max-width: 768px) {
  .review-arrow { opacity: 1; }
  .review-arrow-prev { left: 0; }
  .review-arrow-next { right: 0; }
}  
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(120px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.review-name {
  font-family: 'Artific Med', sans-serif;
  font-size: 18px;
  color: var(--light);
  margin-bottom: 12px;
}
.review-text {
    text-align: center;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 16px;
    max-width: 80%;
    margin: 0 10% 0 10%;
}
.review-stars {
  color: var(--light-blue);
  font-size: 20px;
  letter-spacing: 2px;
}
.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 100px;
  width: fit-content;
  margin: 0 auto;
}
.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.review-dot.active {
  background: var(--light-blue);
  transform: scale(1.25);
}
/* ── FOOTER ── */
.footer-brand {
  background: var(--footer-bg);
  padding: 80px 80px 0;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  margin-top: -24px;
  position: relative;
  z-index: 6;
}
.footer-brand img {
  max-width: 1400px;
  display: block;
  margin: 0 auto;
  opacity: 0.8;
}
.footer-brand > * {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.footer-brand-fallback {
  font-size: clamp(72px, 14vw, 200px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #6B8FD4;
  line-height: 0.88;
  padding-bottom: 24px;
}
footer {
  background: var(--footer-bg);
  padding: 40px 80px 48px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.foot-col ul {
  list-style: none;
}
.foot-col ul li {
  margin-bottom: 8px;
}
.foot-col ul li a {
  text-decoration: none;
  color: var(--light-blue);
  font-size: 16px;
  opacity: 1;
  display: inline-block;
  transition: opacity 0.2s;
}
.foot-col ul li a:hover {
  opacity: 0.7;
}
.foot-col p {
  color: var(--light-blue);
  font-size: 16px;
  line-height: 1.4;
}
.foot-nl {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.foot-nl label {
  font-size: 16px;
  color: var(--light-blue);
  text-align: right;
  letter-spacing: 0.05em;
}
.foot-nl-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 4px 4px 4px 18px;
}
.foot-nl-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--light-blue);
  padding: 6px 0;
  font-size: 16px;
  outline: none;
  min-width: 0;
}
.foot-nl-form input::placeholder {
  color: var(--light-blue);
  opacity: 0.4;
}
.foot-nl-submit {
  width: 38px;
  height: 38px;
  background: var(--sec-drie);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.foot-nl-submit:hover {
  opacity: 1;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
  color: var(--light);
}
.form-group input, .form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 11px 14px 12px 18px;
  font-family: inherit;
  font-size: 15px;
  border: none;
  color: var(--light);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: none;
}
.form-submit {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 12px 32px;
  font-family: 'Artific Med', sans-serif;
  font-size: 15px;
  border-radius: 30px;
  cursor: pointer;
}
.form-status {
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  display: none;
}
.form-status span{ color: #befd88 !important;}

.form-status.success {
  background: #d4edda;
  color: #155724;
  display: block;
}
.form-status.error {
  background: #f8d7da;
  color: #721c24;
  display: block;
}
.arrow-wrap {
  position: relative;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.arrow-1, .arrow-2 {
  position: absolute;
  width: 16px;
  height: 16px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s;
}
.arrow-1 {
  transform: translateX(0);
  opacity: 1;
}
.arrow-2 {
  transform: translateX(-16px);
  opacity: 0;
}
.foot-nl-submit:hover .arrow-1 {
  transform: translateX(16px);
  opacity: 0;
}
.foot-nl-submit:hover .arrow-2 {
  transform: translateX(0);
  opacity: 1;
}
.foot-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}
.foot-social img {
  width: 16px;
}
.foot-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #6B8FD4;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.foot-social a:hover {
  background: rgba(255, 255, 255, 0.15);
}
/* ── REVEAL ANIMATIONS ── */
.reveal, .reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible, .reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.visible > *:nth-child(1) {
  transition-delay: 0.08s;
}
.reveal-stagger.visible > *:nth-child(2) {
  transition-delay: 0.16s;
}
.reveal-stagger.visible > *:nth-child(3) {
  transition-delay: 0.24s;
}
.reveal-stagger.visible > *:nth-child(4) {
  transition-delay: 0.32s;
}
.reveal-stagger.visible > *:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.32s;
}
/* Partners section */
.partners {
  background: var(--footer-bg);
  max-width: 1400px;
  margin: 40px auto 0;
}
.partners p {
  color: #6B8FD4;
}
.partners a {
  color: var(--light-blue);
  text-decoration: none;
}
.partners a:hover {
  opacity: 0.7;
}
.partners-line {
  border: none;
  border-top: 1px solid #6B8FD4;
  margin: 0 auto 40px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 70px;
  max-width: 1600px;
  margin: 0 auto;
  align-items: center;
}
.partners-grid a {
  display: block;
}
.partners-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s;
  max-width: 80px;
}
.partners-grid a:hover img {
  opacity: 1;
}
/* ── RESPONSIVE ── */
/* Large desktop - increase gap */
@media (min-width: 1600px) {
  .photo-cards-grid {
    gap: 40px;
  }
}
/* Medium desktop - start reducing gap earlier */
@media (max-width: 1400px) {
  .photo-cards-grid {
    gap: 20px;
  }
  .plan-col {
    height: 400px;
    position: relative;
  }
}
/* Tablet and below */
@media (max-width: 1024px) {
  .nav-inner {
    padding: 0 30px;
  }
  .feat-grid {
    gap: 60px;
  }
  #feature {
    padding: 120px 40px 80px;
  }
  .footer-brand {
    padding: 60px 40px 0;
  }
  footer {
    padding: 32px 40px 40px;
  }
  .feat-stat-val {
    font-size: 24px;
  }
  #icon-holders {
    padding: 0 40px;
  }
  #photo-cards {
    padding: 60px 40px 120px;
  }
  .photo-cards-grid {
    gap: 18px;
  }
  #reviews {
    padding: 60px 40px;
  }
}
@media (max-width: 968px) {
  .mob-logo-fixed {
    display: block;
  }
  #main-nav {
    display: none;
  }
  .mob-float {
    display: flex;
  }
  #mob-nav {
    display: flex;
  }
  @media (max-width: 768px) {
    :root {
      --nav-h: 30px;
      --vid-scale: 0.85;
      --vid-radius: 20px;
    }
    #hero-txt {
      margin-top: 30vh;
      left: 20px;
    }
    #hero-logo {
      display: block;
      position: absolute;
      top: 25px;
      left: 20px;
      z-index: 20;
      width: 160px;
    }
    #hero-vid {
      transform: scale(1.05) !important;
      border-radius: 0;
      margin-bottom: 0px;
    }
    .hero-video-desktop {
      display: none !important;
    }
    .hero-video-mobile {
      display: block !important;
    }
    .hero-desc {
      font-size: 24px;
      color: rgba(255, 255, 255, 1);
      margin-top: 16px;
      max-width: 80vw;
      line-height: 1.2;
    }
    #hero-txt h1 {
      font-size: 3em;
    }
    #hero-vid {
      transform: scale(0.85);
      transform-origin: center center !important;
    }
    /* Disable button hover animations on mobile */
    .btn-wrap:hover .btn-bg {
      transform: translateX(0) !important;
    }
    .btn-group:has(.btn-wrap:first-child:hover) {
      gap: 16px !important;
    }
    .btn-group2:has(.btn-wrap2:nth-child(1):hover) .btn-wrap2:nth-child(2), .btn-group2:has(.btn-wrap2:nth-child(1):hover) .btn-wrap2:nth-child(3), .btn-group2:has(.btn-wrap2:nth-child(2):hover) .btn-wrap2:nth-child(3) {
      transform: translateX(0) !important;
    }
    /* Keep background arrow animation */
    .btn-wrap2:hover .btn-bg2 {
      transform: translateX(0px);
    }
    /* Icon holders */
    #icon-holders {
      padding: 0;
      margin-top: -12px;
      position: relative;
      top: -38px;
    }
    .icon-holder-grid {
      gap: 40px;
      margin-bottom: -20px;
    }
    .icon-holder {
      width: 120px;
      height: 120px;
    }
    .icon-holder-icon img {
      width: 42px;
      height: 32px;
    }
    .icon-holder-text {
      font-size: 12px;
    }
    .intro {
      color: var(--light);
      text-align: center;
      max-width: 80vw;
      font-size: 18px;
      line-height: 1.2;
      padding-bottom: 50px;
      margin: 60px auto 0;
    }
    .intro2 {
      color: var(--light);
      text-align: center;
      max-width: 80vw;
      font-size: 18px;
      line-height: 1.2;
      padding-bottom: 50px;
      margin: 30px auto;
    }
    .plan-col {
      height: auto;
    }
    #feature {
      padding: 120px 20px 64px;
    }
    .feat-grid {
      grid-template-columns: 1fr;
      gap: 40px;
      max-width: 100%;
    }
    .feat-img {
      margin: 0 auto;
      width: 100%;
    }
    /* Center the content body */
    .feat-body {
      text-align: left;
      margin: 0 auto;
      max-width: 500px;
    }
    .feat-body > p {
      max-width: 100%;
    }
    .feat-stats {
      flex-wrap: wrap;
      gap: 16px;
      padding-top: 20px;
    }
    .feat-stat {
      flex: 1;
      min-width: 80px;
      padding-right: 16px;
      padding-left: 0;
    }
    .feat-stat + .feat-stat {
      padding-left: 16px;
    }
    .feat-stat-val {
      font-size: 22px;
    }
    /* Button adjustments */
    .btn-group {
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }
    .btn-group:has(.btn-wrap:first-child:hover) {
      gap: 12px;
    }
    .btn-wrap {
      width: 100%;
    }
    .btn-top {
      width: 100%;
      text-align: center;
      justify-content: center;
    }
    /* Photo cards */
    #photo-cards {
      padding: 120px 20px;
    }
    .photo-cards-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .photo-card-img {
      height: 140px;
    }
    /* Reviews */
    #reviews {
      padding: 48px 20px;
    }
    .review-text {
      font-size: 18px;
    }
    /* Footer adjustments */
    .footer-brand {
      padding: 48px 20px 0;
    }
    footer {
      padding: 28px 20px 40px;
    }
    .foot-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .foot-nl label {
      text-align: left;
    }
    .foot-social {
      justify-content: flex-start;
    }
    .partners {
      padding: 0 0px 48px;
    }
    .partners-line {
      margin-bottom: 32px;
    }
    .partners-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
  }
  /* Small mobile devices */
  @media (max-width: 480px) {
    #feature {
      padding: 120px 16px 56px;
    }
    .feat-grid {
      gap: 32px;
      padding-bottom: 40px;
    }
    .feat-img {
      max-width: 100%;
    }
    .feat-body {
      max-width: 100%;
    }
    .feat-stat {
      min-width: 70px;
      padding-right: 12px;
    }
    .feat-stat + .feat-stat {
      padding-left: 12px;
    }
    .feat-stat-val {
      font-size: 20px;
    }
    #icon-holders {
      padding: 0;
      margin-top: -32px;
      top: -71px;
    }
    .icon-holder-grid {
      gap: 12px;
      margin-bottom: -16px;
    }
    .icon-holder {
      width: 95px;
      height: 95px;
    }
    #photo-cards {
      padding: 80px 16px;
    }
    #reviews {
      padding: 40px 16px;
    }
    .review-text {
      font-size: 16px;
    }
    .footer-brand {
      padding: 40px 16px 0;
    }
    footer {
      padding: 24px 16px 36px;
    }
  }
  /* Extra small devices */
  @media (max-width: 360px) {
    #feature {
      padding: 32px 12px 48px;
    }
    .feat-stats {
      gap: 12px;
    }
    .feat-stat {
      padding-right: 8px;
    }
    .feat-stat + .feat-stat {
      padding-left: 8px;
    }
    .feat-stat-val {
      font-size: 18px;
    }
    .icon-holder-grid {
      gap: 8px;
      margin-bottom: -16px;
    }
    .icon-holder {
      width: 80px;
      height: 80px;
    }
    .icon-holder-icon {
      width: 28px;
      height: 28px;
      font-size: 18px;
    }
    .icon-holder-text {
      font-size: 9px;
    }
  }
	
	video::-webkit-media-controls {
  display: none !important;
}

video::-webkit-media-controls-enclosure {
  display: none !important;
}

video {
  pointer-events: none;
}
#hero-vid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

	
	
@media (max-width: 768px) {

}