/* =====================
   Navbar
   ===================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-2) 0;
  transition: background-color 300ms ease, box-shadow 300ms ease;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo img {
  height: 36px;
  width: auto;
}

.navbar--scrolled {
  background-color: var(--color-anchor-navy);
  box-shadow: var(--shadow-navbar);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.navbar__links a {
  color: var(--color-light-navy-tint);
  font-size: 0.9375rem;
  font-weight: 400;
  transition: color 200ms ease;
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-momentum-gold);
  transition: width 200ms ease;
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__links a:hover {
  color: var(--color-momentum-gold);
}

.navbar__cta {
  padding: 8px 20px;
  font-size: 0.875rem;
  min-height: 38px;
}

.navbar__hamburger {
  display: none;
  color: var(--color-light-navy-tint);
  font-size: 1.5rem;
  padding: var(--space-1);
}

/* =====================
   Logo Bar
   ===================== */

.logo-balk {
  padding: var(--space-4) 0;
  background: var(--color-white);
  border-bottom: 1px solid rgba(11, 43, 69, 0.06);
}

.logo-balk .label,
.hero-reveal__sheet .label {
  margin-bottom: var(--space-3);
}

.logo-carousel {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-carousel__track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
}

.logo-carousel__track img {
  height: 48px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.logo-carousel__track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* =====================
   Hero
   ===================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero__shape {
  position: absolute;
  top: -5%;
  right: -10%;
  width: 55%;
  max-width: 650px;
  color: var(--color-ocean-blue);
  opacity: 0.12;
  animation: float 8s ease-in-out infinite alternate;
}

.hero__shape-small {
  position: absolute;
  bottom: 5%;
  left: -5%;
  width: 25%;
  max-width: 300px;
  color: var(--color-momentum-gold);
  opacity: 0.06;
  animation: float-reverse 10s ease-in-out infinite alternate;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__headline {
  margin-bottom: var(--space-3);
  font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem);
}

.hero__body {
  margin-bottom: var(--space-4);
}

.hero__body p {
  margin-bottom: var(--space-2);
  font-size: 1.0625rem;
  opacity: 0.9;
}

.hero__tagline {
  font-weight: 500 !important;
  font-size: 1.125rem !important;
  color: var(--color-momentum-gold) !important;
  opacity: 1 !important;
}

.hero__buttons {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

/* =====================
   Hero Sticky (scroll-cycling)
   ===================== */

/* === SCROLL TRACK === */
.hero-track {
  position: relative;
}

/* === STICKY HERO === */
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-anchor-navy);
  color: var(--color-light-navy-tint);
  z-index: 1;
}

.hero-sticky__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1050px;
}

.hero-sticky__content .label {
  display: inline-block;
  margin-bottom: var(--space-3);
}

/* === HEADLINE === */
.hero-sticky__headline {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--color-light-navy-tint);
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  line-height: 1.15;
  margin: 0;
}

.hero-sticky__fixed {
  display: block;
  margin-bottom: var(--space-1);
}

/* === WORD VIEWPORT (slot machine window) === */
.hero-sticky__words {
  display: block;
  position: relative;
  height: 1.2em;
  overflow: hidden;
  transition: height 800ms cubic-bezier(0.77, 0, 0.175, 1),
              margin-bottom 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.hero-sticky__words--expanded {
  height: 3em;
  margin-bottom: -1.7em;
}

/* === WORD REEL (scrolls continuously) === */
.hero-sticky__words-reel {
  display: block;
  will-change: transform;
}

/* === INDIVIDUAL WORDS === */
.hero-sticky__word {
  display: block;
  color: var(--color-momentum-gold);
  line-height: 1.15;
}

.hero-sticky__word--wrapped {
  margin-top: 0.15em;
}

/* === SCROLL INDICATOR === */
.hero-sticky__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  transition: opacity 600ms ease;
}

.hero-sticky__scroll-indicator--hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-sticky__scroll-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-light-navy-tint);
  opacity: 0.5;
}

.hero-sticky__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(242, 245, 248, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-sticky__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-momentum-gold);
  animation: heroScrollLine 1.8s ease-in-out infinite;
}

@keyframes heroScrollLine {
  0%   { top: -100%; }
  50%  { top: 100%; }
  100% { top: 100%; }
}

/* === PROGRESS DOTS === */
.hero-sticky__dots {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
  transition: opacity 400ms ease;
}

.hero-sticky__dots--hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-sticky__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-light-navy-tint);
  opacity: 0.25;
  transition: opacity 300ms ease, background 300ms ease, transform 300ms ease;
}

.hero-sticky__dot--active {
  opacity: 1;
  background: var(--color-momentum-gold);
  transform: scale(1.4);
}

/* === HERO TRACK SPACER (dead space after words) === */
.hero-track__spacer {
  height: 170vh;
}

/* === HERO REVEAL (white sheet over hero) === */
.hero-reveal {
  position: relative;
  z-index: 2;
}

.hero-reveal__sheet {
  background: #ffffff;
  padding: var(--space-10) 0 var(--space-6);
}

.hero-reveal__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-reveal__tagline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--color-momentum-gold);
  margin-bottom: var(--space-3);
}

.hero-reveal__body {
  font-size: 1.0625rem;
  margin-bottom: var(--space-4);
  color: var(--color-anchor-navy);
  line-height: 1.7;
  font-weight: 300;
}

.hero-reveal__buttons {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================
   Problems Section
   ===================== */

.problems {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: start;
}

.problems__header h2 {
  position: sticky;
  top: 100px;
}

.problems__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.problems__item {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.problems__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-light-navy-tint);
  color: var(--color-signal-pink);
  font-size: 1.25rem;
}

.problems__item p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: none;
}

.problems__cta {
  grid-column: 1 / -1;
  margin-top: var(--space-2);
  text-align: center;
}

/* =====================
   Solution Section
   ===================== */

.solution {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--space-6);
  align-items: center;
}

.solution h2 {
  max-width: 600px;
  margin-bottom: var(--space-3);
}

.solution p {
  margin-bottom: var(--space-2);
}

.solution__closing {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 2px solid var(--color-momentum-gold);
  max-width: var(--content-max-width);
}

.solution__image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

/* =====================
   Features Section
   ===================== */

.features__header {
  margin-bottom: var(--space-6);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.features__closing {
  text-align: center;
}

.features__closing p {
  margin: 0 auto;
  font-size: 1.0625rem;
  max-width: 700px;
}

/* =====================
   Mid CTA Section
   ===================== */

.cta-mid {
  padding: var(--space-6) 0;
}

.cta-mid h2 {
  margin-bottom: 0;
}

/* =====================
   Pricing Section
   ===================== */

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: var(--space-4);
  row-gap: 0;
  align-items: stretch;
}

.pricing-card > a:last-child {
  align-self: start;
}

/* =====================
   Value Grid Section
   ===================== */

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.value-card {
  background: var(--color-light-navy-tint);
  border-radius: var(--radius-card);
  padding: var(--space-4);
  border: 1px solid rgba(11, 43, 69, 0.06);
}

.value-card--featured {
  border-color: var(--color-momentum-gold);
  border-width: 2px;
}

.value-card__name {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-anchor-navy);
  margin-bottom: 4px;
}

.value-card__price {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-ocean-blue);
  margin-bottom: var(--space-2);
}

.value-card p {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-anchor-navy);
  max-width: none;
}

/* =====================
   FAQ Section
   ===================== */

.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

/* =====================
   Differentiator Section
   ===================== */

/* Spotlight Section */
.spotlight-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: stretch;
  gap: 0;
  transform: translateZ(0);
}

/* Content block (left) */
.spotlight-content {
  background: var(--color-anchor-navy);
  color: var(--color-light-navy-tint);
  border-radius: var(--radius-card) 0 0 var(--radius-card);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.spotlight-content__icon {
  font-size: 2rem;
  color: var(--color-momentum-gold);
  margin-bottom: var(--space-2);
}

img.spotlight-content__icon {
  width: 2rem;
  height: auto;
}

.spotlight-nav__icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  margin: 0 4px;
}

.spotlight-content__title {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}

.spotlight-content__desc {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: var(--space-2);
  max-width: none;
}

.spotlight-content__link {
  color: var(--color-momentum-gold);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

.spotlight-content__link:hover {
  text-decoration: underline;
}

.spotlight-content__photo {
  margin-top: auto;
  position: relative;
  border-radius: var(--radius-button);
  overflow: hidden;
  height: 140px;
  flex-shrink: 0;
}

.spotlight-content__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spotlight-content__logos {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
}

.spotlight-content__logos img {
  max-height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.spotlight-content__logos img:hover {
  opacity: 1;
}


/* Navigation items (right) */
.spotlight-nav {
  display: flex;
  flex-direction: column;
}

.spotlight-nav__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3);
  background: var(--color-light-navy-tint);
  border: none;
  border-bottom: 1px solid rgba(11, 43, 69, 0.06);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-anchor-navy);
  transition: background 300ms ease, color 300ms ease;
  flex: 1;
}

.spotlight-nav__item:first-child {
  border-radius: 0 var(--radius-card) 0 0;
}

.spotlight-nav__item:last-child {
  border-radius: 0 0 var(--radius-card) 0;
  border-bottom: none;
}

.spotlight-nav__item i {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

.spotlight-nav__item:hover:not(.spotlight-nav__item--active) {
  background: rgba(11, 43, 69, 0.06);
}

/* Active state: navy background, connected to content */
.spotlight-nav__item--active {
  background: var(--color-anchor-navy);
  color: var(--color-light-navy-tint);
  border-bottom-color: rgba(242, 245, 248, 0.1);
}

.spotlight-nav__item--active i {
  color: var(--color-momentum-gold);
}


/* =====================
   CTA / Contact Section
   ===================== */

#contact {
  position: relative;
  overflow: hidden;
}

.cta__shape {
  position: absolute;
  bottom: -15%;
  right: -8%;
  width: 40%;
  max-width: 450px;
  color: var(--color-ocean-blue);
  opacity: 0.08;
}

#contact .container {
  position: relative;
  z-index: 1;
}

.cta__circle {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--color-ocean-blue);
  opacity: 0.15;
  pointer-events: none;
}

#contact h2 {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
  margin-bottom: 0;
}

#contact p {
  font-size: 1.0625rem;
  opacity: 0.9;
}

.bookings-embed {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-light-navy-tint);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  /* Responsive hoogte: voldoende ruimte zodat Bookings niet onnodig intern scrollt */
  height: clamp(640px, 90vh, 820px);
}

.bookings-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: var(--color-light-navy-tint);
}

@media (max-width: 768px) {
  .bookings-embed {
    height: clamp(720px, 100vh, 900px);
    border-radius: 8px;
  }
}

/* =====================
   Footer
   ===================== */

.footer {
  background-color: var(--color-anchor-navy);
  color: var(--color-light-navy-tint);
  padding: var(--space-6) 0 var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  height: 32px;
  width: auto;
  margin-bottom: var(--space-2);
}

.footer__tagline {
  font-size: 0.9375rem;
  opacity: 0.7;
  max-width: none;
}

.footer__heading {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
  opacity: 0.5;
}

.footer__nav ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.footer__nav a,
.footer__contact a {
  font-size: 0.9375rem;
  opacity: 0.7;
  transition: opacity 200ms ease;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

.footer__nav a:hover,
.footer__contact a:hover {
  opacity: 1;
}

.footer__bottom {
  padding-top: var(--space-3);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8125rem;
  opacity: 0.4;
  max-width: none;
  margin: 0 auto;
}
