:root {
  --bg-primary: hsl(0, 0%, 90%);
  --accent: #f36523;
  --muted: #6b7280;
  --color-primary: hsl(0, 0%, 12%);
  --color-secondary: #5e5e5e;
  --color-tertiary: hsl(0, 0%, 85%);
  --white: #ffffff;
  --ff-poppins: 'Poppins', sans-serif;
  --text-spacing:2rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden; 
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  font-family: var(--ff-poppins);
  color: var(--color-primary);
  max-width: 100%;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}


h1,
h2,
h3,
h4 {
  color: var(--color-primary);
  line-height: 1;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 0 0 var(--text-spacing);
  line-height: .9;
}

p {
  color: var(--muted);
  line-height: 1.6;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
}

.fixed-container {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.fixed-hero {
  padding-top: 0 !important;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.highlight {
  color: var(--accent);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.05);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 12px;
  opacity: .9;
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
  display: flex;
  align-items: center;
}

.values-bg-word,
.testimonials-bg-word,
.faq-bg-word {
  position: absolute;
  opacity: 0.55;

  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(4rem, 14vw, 12rem);
  font-weight: 800;
  letter-spacing: -.05em;
  color: rgba(0, 0, 0, .05);
  pointer-events: none;
  white-space: nowrap;
  margin-bottom: 5vh;

  user-select: none;
  z-index: 0;
}

/* HEADER */
.site-header {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(230, 230, 230, 0.88);
  /* border-radius: 1rem; */
  backdrop-filter: blur(12px);

  transition: transform 0.35s ease, opacity 0.35s ease;
}

.logo {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-secondary);
  position: relative;
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 400ms;
  transition-property: color;
}

.nav-links a:focus,
.nav-links a:hover {
  color: var(--color-primary);
}

.nav-links a:focus:after,
.nav-links a:hover:after {
  width: 100%;
  left: 0%;
}

.nav-links a:after {
  content: "";
  pointer-events: none;
  bottom: -2px;
  left: 50%;
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: var(--accent);
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 400ms;
  transition-property: width, left;
}

.btn-navbar img{
  width: 18px;
  height: 18px;
  transform: translatey(-2px);
}

.scroll-top-btn{
  background: var(--accent);
}

.btn-navbar {
  background: var(--accent);
  color: white;
  padding: .85rem 1.35rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 999px;
  white-space: nowrap;
  position: relative;
}

.doubt{
  margin-top: 10rem!important;
  border-radius: 20px;
  padding:1rem 1.5rem;
  background-color: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.92);  
}

.btn-navbar:hover {
  background: #ff4000;
}



.menu-toggle {
  display:none;
  flex-direction:column;
  align-items:center;
  justify-content: center;

  /* display: none; */
  margin-left: auto;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  cursor: pointer;
  position: relative;
  z-index: 1101;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  transform: rotate(-30deg); 
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--bg-primary);
  margin: 5px auto;
  border-radius: 999px;
  transition: .3s ease;
  /* transform: rotate(-30deg); */
}

.menu-toggle span:nth-child(1){
  top:0;
  width:22px;
}

.menu-toggle span:nth-child(2){
  top:8px;
  width:30px;
}

.menu-toggle span:nth-child(3){
  bottom:0;
  width:22px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.32);
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
  z-index: 1090;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 100%);
  height: 100vh;
  background: #f8f8f8;
  padding: 24px;
  transform: translateX(100%);
  transition: transform .35s ease;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 40px rgba(0,0,0,.15);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-menu-logo {
  font-size: 1.4rem;
  font-weight: 700;
}

.menu-close {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color:#fff;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-nav a {
  text-decoration: none;
  font-size: 1.1rem;
  color: var(--color-primary);
}

.mobile-btn {
  color: #fff !important;
  margin-top: 2rem;
  width: 100%;
}

/* HERO */
#hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  grid-template-rows: auto minmax(0, 1fr);
  grid-template-areas:
    "title title"
    "text image";
  column-gap: 2rem;
  row-gap: 1rem;

  flex: 1;
  min-height: 0;
  overflow: hidden;

  padding: 2rem 0 0;
  position: relative;
}

.hero-content {
   /* display: contents;  */
  display:flex;
  justify-content: center;
  flex-direction: column;
  text-align: start;
  width: 100%;
  /* gap:2rem; */
  white-space: normal;
  overflow-wrap: break-word;
}

.hero-title {
  grid-area: title;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2em 0.35em;
  line-height: 1;
  margin-top: 10vh;
  font-size: clamp(2rem, 5vw, 4rem);
}

.inner-headings {
  display: inline-block;
  overflow: hidden;
  height: 1.1em;
  min-width: 14ch;
}

.inner-track {
  display: flex;
  flex-direction: column;
  overflow: visible;
  white-space: nowrap;
  animation: animRollingText 8s ease infinite;
}

.span-hero {
  display: block;
  height: 1.1em;
  line-height: 1.1em;
  color: var(--accent);

  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes animRollingText {
  0%, 20% {
    transform: translateY(0);
  }
  25%, 45% {
    transform: translateY(-1.1em);
  }
  50%, 70% {
    transform: translateY(-2.2em);
  }
  75%, 95% {
    transform: translateY(-3.3em);
  }
  100% {
    transform: translateY(0);
  }
}

.hero-text {
  grid-area: text;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: start;
  gap: 2rem;
  max-width: 700px;
  min-height: 0;
  padding-bottom: 2rem;
  
}

.span-title {
  color: var(--muted);
}

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

.btn-hero {
  min-height: 3.5rem;
  padding: .9rem 1.4rem;
  text-decoration: none;
  display: inline-flex;
  /* align-items: center; */
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 999px;
}

.cta {
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
}

.cta {
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s;
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--accent);
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;

}

cta:last-child{
  display: flex;
  flex:end;
}

.cta:hover {
  background: #ff4000;
}

.cta > svg {
  width: 2rem;
  margin-left: 1em;
  transition: transform 0.3s ease-in-out;
}

.cta:hover svg {
  transform: translateX(10px);
}

.cta:active {
  transform: scale(0.95);
}

.ghost {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
}

.ghost:hover {
 color: #fff;
 background-color: var(--color-primary);
 box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
 transform: translateY(-2px);
}

.ghost:active {
 box-shadow: none;
 transform: translateY(0);
}

.hero-image-wrap {
  grid-area: image;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: stretch;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.hero-img {
   display: block;
  width: min(100%, 560px);
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom right;
  position: relative;
  z-index: 0;
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20%;
  background: linear-gradient(
    to top,
    var(--bg-primary) 0%,
    rgba(230, 230, 230, 0.75) 20%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 99;
}

.gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15%;
  background: linear-gradient(180deg, transparent, var(--bg-primary));
  z-index: 999;
}

/* VALUES */
.vocore-values {
  position: relative;
  padding: 20vh 0;
  overflow: hidden;
  background: linear-gradient(to top, #fafafa 0%, var(--bg-primary) 8%, var(--bg-primary) 100%);
}

.values-top {
  max-width: 800px;
  margin-bottom: 70px;
}

.values-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: .95;
  letter-spacing: -.05em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.value-card {
  padding: 40px;
  border-radius: 28px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.8);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,.05), inset 0 1px 0 rgba(255,255,255,.9);
  transition: .35s;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--accent);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.value-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-number {
  font-size: .8rem;
  letter-spacing: .2em;
  color: var(--muted);
  margin-bottom: 10px;
  display: block;
}

.value-card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

/* PROJECTS */
.projects {
  position: relative;
  padding: 20vh 0;
  background-color: #fafafa;
}

.top-projects{
  max-width:670px ;
}

.project-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.project-item {
  width: 100%;
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 6px 6px 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transition: background-color 1s ease;
}

.project-item:hover {
  background: var(--color-primary);
}


.project-item:hover h4,
.project-item:hover .project-desc {
  color: #fff;
}

.project-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: clamp(220px, 28vw, 320px);
  margin-bottom: 1rem;
  
}

.project-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.75);
  transition: filter 1.5s ease, transform 3s ease;
}

.project-item:hover .project-image img {
  filter: brightness(.95) contrast(1.1);
  transform: scale(1.04);
}

.project-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: .5rem;
  padding: 0 10px;
}

.project-desc {
  font-size: .95rem;
  padding: 0 10px;
}

/* =========================
   PROCESS
========================= */

.process-section {
  position: relative;
  padding: 8rem 0;
  background: var(--bg-primary);
  overflow: visible;
}

.process-section .fixed-container {
  padding-top: 0;
  padding-bottom: 0;
}

.process-wrap {
  position: relative;
  height: 320vh; /* bepaalt hoe lang de sectie gepind blijft */
}

.process {
  --timeline-pad: 52px;
  --dot-size: 28px;
  --track-width: 3px;

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: none;

  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 1fr);
  gap: 8rem;
  align-items: start;
  z-index: 2;
}

.process.is-pinned {
  position: fixed;
  top: 90px;
  left: var(--pin-left);
  width: var(--pin-width);
  transform: none;
}

.process.is-ended {
  position: absolute;
  top: calc(100% - var(--process-height));
  left: 0;
  width: 100%;
  transform: none;
}

.process__left {
  position: relative;
  min-width: 0;
}

.process__right {
  position: sticky;
  top: 90px;
  align-self: start;
  max-width: 520px;
}

/* .process__right span {
  color: var(--muted);
} */

.timeline {
  position: relative;
  padding-left: var(--timeline-pad);
}

.timeline__track {
  position: absolute;
  top: 0;
  left: calc(var(--timeline-pad) + (var(--dot-size) / 2) - (var(--track-width) / 2));
  width: var(--track-width);
  background: #d9dce0;
  border-radius: 999px;
  overflow: hidden;
  z-index: 1;
}

.timeline__fill {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0%;
  background: var(--accent);
  border-radius: inherit;
  transition: height 0.08s linear;
}

.step {
  display: grid;
  grid-template-columns: var(--dot-size) 1fr;
  gap: 18px;
  padding: 18px 0 34px;
  position: relative;
  z-index: 2;
}

.step__dot {
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 999px;
  background: #f3f3f3;
  border: 1px solid #dcdfe4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--color-primary);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease,
    transform 0.28s ease;
}

.step__card {
   background: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);

  opacity: 0;
  visibility: hidden;
  transform: translateY(28px);

  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.35s ease,
    visibility 0s linear 0.45s;
}

.step__icon {
    display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: .75rem;
  color: var(--accent);

  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0s linear 0.35s;
}

.step__icon i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step__icon h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--accent);
}

.step__card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.step.is-reached .step__dot {
  border-color: rgba(255,115,0,.45);
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255,115,0,.12);
  transform: scale(1.02);
}

.step.is-reached .step__card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  box-shadow: 0 16px 34px rgba(0,0,0,.08);
  transition-delay: 0s;
}

.step.is-reached .step__icon {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.05s;
}

@media (max-width: 1200px) {
  .process {
    gap: 4rem;
  }
  
}

@media (max-width: 900px) {
  .process-wrap {
    height: auto;
  }

  .hero-title{
    margin-top:0;
  }

  .process,
  .process.is-pinned,
  .process.is-ended {
    --timeline-pad: 28px;
    --dot-size: 18px;
    --track-width: 3px;

    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process__right {
    position: relative;
    top: auto;
    max-width: 100%;
  }

  .step {
    gap: 12px;
    padding: 14px 0 22px;
  }

  .step__card {
    opacity: 1;
    transform: none;
    padding: 16px;
  }

  .step__icon {
    opacity: 1;
    transform: none;
    gap: .75rem;
  }

  .timeline__fill {
    height: 100% !important;
  }
}

@media (max-width: 1200px) {
  .process {
    gap: 4rem;
  }
}

@media (max-width: 900px) {
  .process-wrap {
    height: auto;
  }

.process {
  --timeline-pad: 28px;
  --dot-size: 18px;
  --track-width: 3px;

  position: relative;
  top: auto;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.process__right,
.process__right.is-bottom {
  align-self: start;
  justify-content: flex-start;
  min-height: auto;
}

  .step {
    gap: 12px;
    padding: 14px 0 22px;
  }

  .step__card {
    opacity: 1;
    transform: none;
    padding: 16px;
  }

  .step__icon {
    opacity: 1;
    transform: none;
    gap: .75rem;
  }

  .timeline__fill {
    height: 100% !important;
  }
}

/* PRICES */
.prices {
  position: relative;
  padding: 20vh 0; 
  background-color: #fafafa;
}

.price-desc {
  width:fit-content;
  margin: 0 auto;
  padding-bottom: 2rem;
  width: 60%;
}

.price-tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin:2rem 0;
}

.price-tag {
  width: 100%;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 2px solid var(--color-tertiary);
  transition: .3s ease;
  position: relative;

  display: flex;
  flex-direction: column;
}

.price-tag:hover {
  transform: translateY(-12px);
}

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

.btnPro{
  position: relative;
  color: white;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);

}
.btnPro:hover {
  opacity: 1;
  box-shadow: 0 0 15px #FF7730;
}


.pro .price,
.pro .desc,
.pro .lists li p {
  color: white;
}

.title {
  font-size: 1rem;
  font-weight: 500;
  width: fit-content;
  background-color: var(--color-tertiary);
  padding: .5rem .8rem;
  border-radius: .5rem;
  color: var(--color-primary);
}

.pro .title {
  background: rgba(255,255,255,.15);
  color: #fff;
}

.price {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1;
  font-weight: 700;
  margin-top: 1rem;
}

.desc {
  margin: .75rem 0;
  font-style: italic;
}

hr {
  border: none;
  border-top: 2px dotted var(--color-tertiary);
  margin: 2rem 0;
}

.lists {
  list-style: none;
}

.list {
  margin-bottom: .75rem;
  display: flex;
  align-items: start;
}
.price-li{
  margin-left:.5rem;
}

.action {
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  border-radius: .75rem;
  padding: .85rem 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: .25s ease;
  margin-top: auto;
  align-self: flex-start;
}

.action:hover {
  background: var(--accent);
  color: white;
}

.pro .action {
  background: var(--accent);
  color: white;
}

/* ABOUT */
#about-vocore {
  padding: 8rem 0;
}

.about-container {
  width: min(1200px, calc(100% - 40px));
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: .75rem;
  position: relative;
  z-index: 2;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: .15;
}

.circle-1 {
  width: 200px;
  height: 200px;
  top: -40px;
  left: -40px;
}

.circle-2 {
  width: 120px;
  height: 120px;
  bottom: -30px;
  right: -30px;
}

/* TESTIMONIALS */
.testimonials {
  position: relative;
  overflow: hidden;
  padding: 20vh 20px;
  background:
    radial-gradient(circle at 15% 15%, rgba(255,115,0,0.08), transparent 18%),
    radial-gradient(circle at 85% 10%, rgba(255,115,0,0.05), transparent 18%),
    linear-gradient(to bottom, #fafafa 0%, var(--bg-primary) 100%);
}

.testimonials-container {
  width: min(100%, 1160px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap:2rem;
}

.testimonials-description{
  width: 60%;
}

.carousel-shell {
  position: relative;
  border-radius: 34px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 28px;
  cursor: grab;
  user-select: none;
}

.carousel-track {
  display: flex;
  width: 100%;
  will-change: transform;
  transform: translateX(0%);
}

.carousel-slide {
  min-width: 100%;
  flex: 0 0 100%;
  padding: 8px;
}

.testimonial-card {
  min-height: 460px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  align-items: stretch;
}

.testimonial-main,
.testimonial-side {
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.5);
}

.testimonial-main {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.54)),
    linear-gradient(135deg, rgba(255,115,0,0.05), transparent 42%);
}

.quote-mark {
  font-size: 4.2rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.34;
  margin-bottom: 8px;
}

.testimonial-quote {
  margin: 0;
  font-size: clamp(1.5rem, 3.2vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  max-width: 15ch;
  color: var(--color-primary);
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background-image: url('../img/JanetteGnodde.png');
  background-size: cover;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(255, 115, 0, 0.22);
  flex: 0 0 auto;
}

.testimonial-person strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.testimonial-person span {
  color: var(--muted);
  font-size: 0.95rem;
}

.testimonial-side {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,255,255,0.44);
}

.testimonial-meta {
  display: grid;
  gap: 14px;
}

.meta-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(0,0,0,0.04);
}

.meta-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.meta-card p {
  margin: 0;
  color: var(--color-secondary);
  line-height: 1.65;
}

.testimonial-rating-wrap {
  margin-top: 18px;
}

.rating-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.testimonial-rating {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.testimonial-rating svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  stroke: var(--accent);
  stroke-width: 1.2;
}

.carousel-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.carousel-nav {
  display: flex;
  gap: 12px;
}

.carousel-btn {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid var(--color-tertiary);
  background: rgba(255,255,255,0.78);
  color: var(--color-primary);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,0.04);
}

.carousel-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255,115,0,0.28);
}

.carousel-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-progress-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: flex-end;
  min-width: 260px;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 0;
  background: rgba(0,0,0,0.12);
  cursor: pointer;
  transition: width 0.25s ease, background-color 0.25s ease;
  padding: 0;
}

.carousel-dot.active {
  width: 34px;
  background: var(--accent);
}

/* FAQ */
.faq-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(255,115,0,0.08), transparent 18%),
    radial-gradient(circle at 85% 10%, rgba(255,115,0,0.05), transparent 18%),
    linear-gradient(to bottom, #fafafa 0%, var(--bg-primary) 90%, #fafafa 100%);
  color: var(--color-primary);
  position: relative;
  overflow: hidden;
  padding: 20vh 20px 20vh 20px;
}

.faq-bg-word {
  top: 10px;
}

.faq-header {
  max-width: 700px;
  margin-bottom: 56px;
}

.faq-title {
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-card {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,115,0,0.22);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
}

.faq-question-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-number {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.faq-question h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--color-primary);
}

.faq-toggle {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid var(--color-tertiary);
  background: var(--white);
  display: grid;
  place-items: center;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-primary);
  transition: transform 0.3s ease, opacity 0.25s ease, background-color 0.3s ease;
}

.faq-toggle::after {
  transform: rotate(90deg);
}

.faq-card.active .faq-toggle {
  background: var(--accent);
  border-color: transparent;
  transform: rotate(180deg);
}

.faq-card.active .faq-toggle::before,
.faq-card.active .faq-toggle::after {
  background: #fff;
}

.faq-card.active .faq-toggle::after {
  opacity: 0;
  transform: rotate(90deg) scaleX(0.4);
}

.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s ease;
}

.faq-card.active .faq-answer-wrap {
  grid-template-rows: 1fr;
}

.faq-answer {
  overflow: hidden;
}

.faq-answer-inner {
  padding: 0 28px 24px 28px;
  color: var(--color-secondary);
  line-height: 1.75;
  max-width: 70ch;
}

.faq-answer-inner p {
  margin: 0;
}

.faq-answer-inner strong {
  color: var(--color-primary);
}

/* CONTACT */
#contact {
  position: relative;
  padding: 120px 0;
  background: #fafafa;
  overflow: hidden;
}

.contact-circles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,115,0,0.08);
}

.contact-circles span:nth-child(1) {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -120px;
}

.contact-circles span:nth-child(2) {
  width: 300px;
  height: 300px;
  bottom: -80px;
  right: -80px;
}

.contact-circles span:nth-child(3) {
  width: 180px;
  height: 180px;
  top: 40%;
  right: 20%;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  background: rgba(255,255,255,.92);
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 20px 40px rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.6);
  position: relative;
  z-index: 2;
}

.contact-left h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 20px;
}

.contact-left p {
  max-width: 450px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
textarea,select,
button {
  font-family: var(--ff-poppins);
}

.input-group label {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea,.contact-form select {
  border: 1px solid var(--color-tertiary);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: .95rem;
  outline: none;
  transition: .2s;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus
 {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,115,0,.12);
}

.contact-form select{
  color:#6b7280;
}

.contact-btn {
  margin-top: 10px;
  border: none;
  padding: 14px;
  border-radius: 12px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: .25s;
}

.contact-btn:hover {
  transform: translateY(-2px);
}

/* FOOTER */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  background-color: #151315;
  gap: 1rem;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.footer p {
  font-size: .9rem;
  color: white;
  padding: 1rem;
}

.footer .values-bg-word {
  color: var(--muted);
  position: absolute;
  transform: none;
  opacity: 0.2;
  font-size:20rem;

  inset:0;
  display: flex;
  align-items: end;
  justify-content: center;

  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.01) 0%,   
    rgba(255, 255, 255, 0.04) 40%, 
    rgba(255, 255, 255, 0.2) 60%,  
    rgb(255, 255, 255,.7) 100%  
  );
  
  /* -webkit-background-clip: text; */
  color: transparent;
}

.site-footer {
  background: #111;
  color: #eaeaea;
  padding: 4rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);

  position: relative;
  overflow: hidden; 
}

.footer-container {
  position:relative;
  z-index: 2 ;

  width: min(1400px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 2rem;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #fff;
}


.footer-logo {
  position: absolute;
  bottom: 4vh;
  left: 50%;
  transform: translateX(-50%);

  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: 800;

  pointer-events: none;
  user-select: none;
  white-space: nowrap;

  /* gradient fade */
  background: linear-gradient(
    to top,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0)
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  z-index: 0;
}

@media (max-width: 1400px) {
  .footer-logo {
    display: none;
  }
}

.footer-text {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li,
.footer-links li {
  margin-bottom: 0.8rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.footer-list i {
  margin-right: 0.6rem;
  color: var(--accent, #ff6a00);
}

.footer-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: 0.25s ease;
}

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

.opening-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 0.45rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.social-link {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  overflow: visible;
}

.social-link i {
  font-size: 1rem;
}

.social-link:hover {
  transform: translateY(-4px);
  background: var(--accent, #ff6a00);
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.25);
}

/* Tooltip */
.social-link::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  color: #111;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.social-link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 6px);
  transform: translateX(-50%) translateY(8px) rotate(45deg);
  /* width: 0px; */
  height: 10px;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.social-link:hover::after,
.social-link:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.footer-bottom {
  width: min(1400px, 100%);
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  align-items: center;
}

.footer-legal{
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .opening-hours li {
    justify-content: space-between;
  }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
.price-desc{
  margin:0;
}

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #hero {
    grid-template-columns: 1fr 0.9fr;
    grid-template-areas:
      "title title"
      "text image";
    min-height: auto;
    padding: 3rem 0 2rem;
  }

  .hero-img {
    max-width: 480px;
  }

  .process {
    gap: 4rem;
  }
}
@media (max-width: 900px) {

.price-desc{
  margin:0;
  width: 100%;
}  
.cta{
   width: 100%;
}
  .fixed-container {
    width: min(100%, calc(100% - 32px));
    padding: 8vh 16px;  
  }

  .faq-section .fixed-container{
    margin:0;
  }

  .vocore-values,.projects,.testimonials,.prices,.faq-section{
    padding: 15vh 16px;
  }

  .testimonials-description{
  width: 100%;
  } 


  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .values-grid,
  .project-grid,
  .price-tags,
  .about-container,
  .contact-card,
  .testimonial-card {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 36px 24px;
    gap: 32px;
  }

  .about-container {
    gap: 2.5rem;
    margin:0rem 2rem;
  }

#hero {
  grid-template-columns: 1fr;
  grid-template-areas:
    "title"
    "image"
    "text";
  row-gap: 1.5rem;
  align-items: start;
  min-height: auto;
  padding: 2rem 0 0;
}

.hero-title {
  font-size: 2rem;
  height:fit-content;
}

.inner-headings span {
  font-size: 2rem;
}

.hero-image-wrap {
  justify-content: center;
  align-self: center;
}

.hero-img {
  max-width: 420px;
  width: 100%;
  max-height: none;
}

.hero-text {
  max-width: 100%;
  position: relative;
}

.fixed-hero{
  position: relative;
}

.btns-hero {
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.btn-hero {
  padding:0 auto;
  width: 100%;
}

  .process {
    --timeline-pad: 28px;
    --dot-size: 18px;
    --track-width: 3px;

    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-wrap {
    height: auto;
  }

  .step {
    gap: 12px;
    padding: 14px 0 22px;
  }

  .step__card {
    opacity: 1;
    transform: none;
    padding: 16px;
  }

  .step__icon {
    opacity: 1;
    transform: none;
    gap: .75rem;
  }

  .timeline__fill {
    height: 100% !important;
  }
}
@media (max-width: 700px) {
  .project-grid {
    grid-template-columns: 1fr;
  }


  .carousel-shell {
    padding: 16px;
    border-radius: 24px;
  }

  .testimonial-main,
  .testimonial-side {
    padding: 22px;
    border-radius: 22px;
  }

  .carousel-bottom {
    justify-content: center;
  }

  .carousel-progress-wrap {
    justify-content: center;
  }

  .testimonial-quote {
    max-width: 100%;
  }
}

/* Mobiel */
@media (max-width: 640px) {
  .fixed-container {
    width: min(100%, calc(100% - 24px));
    padding: 0 12px;
  }

  .site-header {
    padding: .9rem 1rem;
    /* border-radius: .75rem; */
  }

  .logo {
    font-size: 1.35rem;
  }

  .span-hero {
    transform: scale(.9);
  }

.hero-title {
  font-size: 1.8rem;
  gap: .5rem;
  margin-bottom: 0;
  display:flex;
  justify-content: center;
}

.hero-text{
  /* margin-top:10%; */
  display: flex;
  justify-content: start;
  max-width: 100%;
  align-items: space-between;
  min-height: 30vh;
  /* padding: 1.5rem 
  0; */
}



.btn-hero{
  padding:.9rem .6rem;
}


.inner-headings {
  height: 2.6rem;
}

.inner-headings span {
  font-size: 2rem;
  line-height: 2.6rem;
}



  @keyframes animation {
    0%, 100% { top: 0; }
    20% { top: 0; }
    25% { top: -2.6rem; }
    45% { top: -2.6rem; }
    50% { top: -5.2rem; }
    70% { top: -5.2rem; }
    75% { top: -7.8rem; }
    95% { top: -7.8rem; }
  }

  .value-card,
  .price-tag,
  .contact-card {
    border-radius: 18px;
  }

  .value-card {
    padding: 24px;
  }

  .contact-card {
    width: min(100%, calc(100% - 24px));
    padding: 22px 18px;
  }

  .contact-left h2 {
    font-size: 1.9rem;
  }

  .contact-circles span:nth-child(1) {
    width: 240px;
    height: 240px;
  }

  .contact-circles span:nth-child(2) {
    width: 180px;
    height: 180px;
  }

  .contact-circles span:nth-child(3) {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 900px) {
  .process-wrap {
    height: auto;
  }

.process,
.process.is-pinned,
.process.is-ended {
  --timeline-pad: 28px;
  --dot-size: 18px;
  --track-width: 3px;

  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  width: 100%;
  transform: none;

  grid-template-columns: 1fr;
  gap: 2.5rem;
}

  .process__right,
  .timeline {
    padding-top: 0;
  }

  .process__right {
   position: relative;
    top: auto;
    max-width: 100%;
  }

  .step {
    gap: 12px;
    padding: 14px 0 22px;
  }

  .step__card {
    opacity: 1;
    transform: none;
    padding: 16px;
  }

  .step__icon {
    opacity: 1;
    transform: none;
    gap: .75rem;
  }

  .timeline__fill {
    height: 100% !important;
  }
}



/* Animaties: */


.span-title{
  color:var(--muted); 
}

/* animatie letters */

.fade-text {
  color: var(--color-primary);
  line-height: 1.1;
}

.fade-text .span-title {
  color: var(--muted);
}

.word-wrap,
.letter-wrap {
  display: inline-block;
}

.letter {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  color: inherit;
}

.fade-text.active .letter {
  animation: fadeLetter 0.6s cubic-bezier(.22,1,.36,1) forwards;
}

.fade-text .span-title .letter {
  color: var(--muted);
}

@keyframes fadeLetter {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


.fade-up-delay{
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .3s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay: .1s;
}

@keyframes fadeUp{
  from{
    opacity: 0;
    transform: translateY(30px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   REVEAL SYSTEM
========================= */

.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale{
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity 0.8s cubic-bezier(.22,1,.36,1),
    transform 0.8s cubic-bezier(.22,1,.36,1);
}

/* beginposities */
.reveal-up{
  transform: translate3d(0, 40px, 0);
}

.reveal-left{
  transform: translate3d(-60px, 0, 0);
}

.reveal-right{
  transform: translate3d(60px, 0, 0);
}

.reveal-scale{
  transform: scale(0.92);
}

/* actieve staat */
.reveal-up.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active{
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

/* delays */
.delay-1{
  transition-delay:.15s; 
  /* 0.15s; */
}

.delay-2{
  transition-delay: .3s;
  /* 0.3s; */
}

.delay-3{
  transition-delay: .45s;
  /* 0.45s */
}

.delay-4{
  transition-delay: .6s;
  /* 0.6s */
}
.delay-5{
  transition-delay: .75s;
  /* 0.6s */
}


/* accessibility */
@media (prefers-reduced-motion: reduce){
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale{
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* SCROLL TOP BUTTON */
.scroll-top-btn {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;

  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;

  /* achtergrond kleur kun jij zelf aanpassen */
  background: var(--accent);
  color: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);

  border:3px #fff solid;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.3s ease;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
  transform: translateY(-3px) scale(1.03);
}

.site-header.hide-header {
transform: translateY(-140%);
opacity: 0;
}

