/* ============================================
   Grafix Studio -- Homepage Styles (Prokit-level)
   ============================================ */

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 50%, var(--color-accent) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(6, 44, 98, 0.6) 0%, transparent 60%),
              radial-gradient(ellipse at 85% 10%, rgba(0, 75, 130, 0.25) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3xl);
}

.hero-title {
  font-size: clamp(2.8rem, 1.5rem + 5.5vw, 6.5rem);
  font-weight: 200;
  color: var(--color-white);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0;
  word-break: keep-all;
}

.hero-title-line > span {
  white-space: inherit;
  word-break: keep-all;
}

.hero-title-line {
  display: block;
  overflow: hidden;
}

/* Tablet en groter: elke regel op 1 lijn, niet wrappen */
@media (min-width: 768px) {
  .hero-title-line,
  .hero-title-line > span,
  .hero-title-line span {
    white-space: nowrap;
  }
}

.hero-title-line span {
  display: inline-block;
}

.hero-word {
  display: inline-block;
  white-space: nowrap;
}

/* Letter-per-letter: elke letter is een span.hero-char */
.hero-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-char.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Spatie als &nbsp; */
.hero-char--space {
  width: 0.3em;
}

.hero-cta {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
  z-index: 2;
}

.hero-cta.is-visible {
  opacity: 1;
  transform: none;
}

.hero-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
  padding: 0;
  transition: color 300ms ease;
  text-decoration: none;
}

.hero-cta__link:hover {
  color: var(--color-white);
}

.hero-cta__link svg {
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cta__link:hover svg {
  transform: translateX(3px);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  will-change: transform, opacity;
}

.hero-scroll.in-view {
  transform: translateX(-50%);
}

.hero-scroll__text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.hero-scroll__line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.hero-scroll__line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  animation: scrollLine 2s ease-in-out infinite;
}

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

/* --- Project cursor image (floating mockup bij hover) --- */
.project-cursor-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 350px;
  height: auto;
  pointer-events: none;
  z-index: 90;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 150ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 150ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.project-cursor-img.is-visible {
  opacity: 1;
  transform: scale(1);
}

.project-cursor-img img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

@media (max-width: 768px) {
  .project-cursor-img {
    display: none;
  }
}

/* --- Intro Section --- */
.intro-section {
  padding: var(--space-5xl) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5xl);
  align-items: center;
}

.intro-text h2 {
  margin-bottom: var(--space-xl);
  font-weight: 500;
}

.intro-lead {
  font-size: var(--text-lg);
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.intro-text .btn {
  margin-top: var(--space-xl);
}

.intro-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.intro-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Featured Project Showcase --- */
.featured-project {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: var(--space-4xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-off-white);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.featured-project:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.featured-project__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
}

.featured-project__image {
  padding: var(--space-3xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-project__image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-project:hover .featured-project__image img {
  transform: scale(1.03);
}

.featured-project__body {
  padding: var(--space-3xl) var(--space-3xl) var(--space-3xl) 0;
}

.featured-project__label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  display: block;
}

.featured-project__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  font-weight: 500;
  margin-bottom: var(--space-lg);
  color: var(--color-dark);
}

.featured-project__desc {
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.featured-project__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  transition: gap 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.featured-project:hover .featured-project__link {
  gap: var(--space-md);
}

/* --- Projects Section (Prokit-stijl) --- */
.projects-section {
  padding: var(--space-5xl) 0;
}

.projects-section .section-header {
  margin-bottom: var(--space-4xl);
}

.projects-section .section-header p {
  max-width: 560px;
  margin: var(--space-md) auto 0;
}

.projects-list {
  display: flex;
  flex-direction: column;
}

.project-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-2xl);
  align-items: center;
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--color-light-gray);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-base);
  position: relative;
}

.project-row:first-child {
  border-top: 1px solid var(--color-light-gray);
}

.project-row__number {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-mid-gray);
  min-width: 3rem;
}

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

.project-row__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 1rem + 2vw, 2.75rem);
  font-weight: 400;
  color: var(--color-dark);
  transition: color var(--transition-fast);
  letter-spacing: -0.02em;
}

.project-row__result {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  opacity: 0.7;
  margin-top: 2px;
  transition: opacity 300ms ease;
}

.project-row:hover .project-row__result {
  opacity: 1;
}

.project-row:hover .project-row__title {
  color: var(--color-primary);
}

.project-row__tags {
  display: flex;
  gap: var(--space-sm);
}

.project-row__tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-light-gray);
  color: var(--color-mid-gray);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.project-row:hover .project-row__tag {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.project-row__arrow {
  font-size: var(--text-xl);
  color: var(--color-mid-gray);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateX(-10px);
}

.project-row:hover .project-row__arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--color-primary);
}

/* Fallback grid voor project cards (legacy) */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  cursor: pointer;
  display: block;
  background: var(--color-off-white);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.project-card__image-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.project-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%);
  transition: transform var(--transition-slow), filter var(--transition-slow);
}

.project-card:hover .project-card__image-wrap img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.project-card__placeholder {
  position: absolute;
  inset: 0;
}

.project-card__body {
  padding: var(--space-lg) var(--space-xl) var(--space-xl);
}

.project-card__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.project-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: var(--space-xs);
}

.project-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}

.project-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  margin-top: var(--space-md);
  transition: gap var(--transition-fast);
}

.project-card:hover .project-card__link {
  gap: var(--space-sm);
}

.project-card--wide {
  grid-column: span 2;
}

.project-card--wide .project-card__image-wrap {
  aspect-ratio: 21 / 9;
}

/* --- Focus Section --- */
.focus-section {
  padding: var(--space-5xl) 0;
}

.focus-compact {
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

.focus-compact h2 {
  font-weight: 500;
  margin: var(--space-md) 0 var(--space-xl);
  line-height: 1.25;
  max-width: none;
}

.focus-lead {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.focus-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.focus-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all 200ms ease;
}

.focus-tag svg {
  flex-shrink: 0;
}

.focus-tag--active {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  color: var(--color-dark);
}

.focus-tag--active svg {
  color: #16a34a;
}

.focus-tag--addon {
  background: rgba(22, 73, 142, 0.06);
  border: 1px solid rgba(22, 73, 142, 0.2);
  color: var(--color-primary);
}

.focus-tag--addon svg {
  color: var(--color-primary);
}

.focus-tag__note {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
  margin-left: 2px;
}

.focus-tag--inactive {
  background: transparent;
  border: 1px dashed var(--color-light-gray);
  color: var(--color-mid-gray);
  text-decoration: line-through;
  opacity: 0.6;
}

.focus-tag--inactive svg {
  color: #dc3545;
}

/* --- Werkwijze / Process Section --- */
.process-section {
  padding: var(--space-5xl) 0;
}

.process-section .section-header {
  margin-bottom: var(--space-4xl);
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-4xl);
  align-items: start;
}

.process-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: sticky;
  top: calc(80px + var(--space-2xl));
}

.process-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: var(--space-2xl) var(--space-lg);
  counter-increment: process;
  border-left: 1px solid var(--color-light-gray);
  transition: border-color var(--transition-base);
}

.process-step:hover {
  border-color: var(--color-primary);
}

.process-step::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 200;
  color: rgba(22, 73, 142, 0.1);
  line-height: 1;
  margin-bottom: var(--space-lg);
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}

.process-step__text {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.8;
}

/* --- Compare Section --- */
.compare-section {
  background-color: var(--color-off-white);
}

.compare-top {
  max-width: 800px;
  margin: 0 auto var(--space-4xl);
  text-align: left;
}

.compare-heading {
  font-size: var(--text-3xl);
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-dark);
  margin-bottom: var(--space-lg);
}

.compare-heading em {
  font-style: normal;
  color: var(--color-primary);
}

.compare-intro {
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.6;
}

.compare-intro--accent {
  color: var(--color-primary);
  font-weight: 500;
}

/* Toggle knop inline */
.compare-toggle {
  display: inline-flex;
  align-items: center;
  width: 40px;
  height: 22px;
  border-radius: var(--radius-full);
  background-color: var(--color-primary);
  padding: 2px;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
  vertical-align: middle;
  margin: 0 0.2em;
  position: relative;
  top: -2px;
}

.compare-toggle__dot {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transform: translateX(18px);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.compare-toggle.is-off {
  background-color: var(--color-mid-gray);
}

.compare-toggle.is-off .compare-toggle__dot {
  transform: translateX(0);
}

/* Compare grid - tighter vs layout */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
  position: relative;
}

/* VS badge in the middle */
.compare-grid::before {
  content: 'VS';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.compare-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.compare-card:hover {
  transform: translateY(-4px);
}

/* Andere bureaus card */
.compare-card--other {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
}

.compare-card--other .compare-card__header {
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  border-bottom: 1px solid var(--color-light-gray);
}

.compare-card--other .compare-card__header h3 {
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-mid-gray);
}

.compare-card--other .compare-card__list li svg {
  color: #dc3545;
  flex-shrink: 0;
}

/* Grafix Studio card */
.compare-card--gs {
  background: var(--color-secondary);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  transition: background-color 0.5s ease, border-color 0.5s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.compare-card--gs .compare-card__header {
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: border-bottom-color 0.5s ease;
}

.compare-card--gs .compare-card__header h3 {
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-white);
  transition: color 0.5s ease;
}

.compare-card--gs .compare-card__list li {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.06);
  transition: color 0.5s ease, border-bottom-color 0.5s ease;
}

.compare-card--gs .compare-card__list li:last-child {
  border-bottom: none;
}

.compare-card--gs .compare-card__list li svg {
  color: #22c55e;
  flex-shrink: 0;
  transition: color 0.5s ease;
}

/* Lijst items */
.compare-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-card__list li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  font-size: var(--text-base);
  border-bottom: 1px solid var(--color-light-gray);
  transition: background-color 0.2s ease;
}

.compare-card__list li:last-child {
  border-bottom: none;
}

.compare-card--other .compare-card__list li:hover {
  background-color: var(--color-off-white);
}

.compare-card--gs .compare-card__list li:hover {
  background-color: rgba(255,255,255,0.04);
}

/* Compare footer */
.compare-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  text-align: center;
}

.compare-footer__text {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  margin: 0;
}

/* Compare dimmed state (toggle uit) */
.compare-grid.is-dimmed .compare-card--gs {
  background: var(--color-light-gray);
  border-color: var(--color-light-gray);
}

.compare-grid.is-dimmed .compare-card--gs .compare-card__header {
  border-bottom-color: rgba(0,0,0,0.06);
}

.compare-grid.is-dimmed .compare-card--gs .compare-card__header h3 {
  color: var(--color-mid-gray);
}

.compare-grid.is-dimmed .compare-card--gs .compare-card__list li {
  color: var(--color-mid-gray);
  border-bottom-color: rgba(0,0,0,0.06);
}

.compare-grid.is-dimmed .compare-card--gs .compare-card__list li svg {
  color: var(--color-mid-gray);
}

.compare-grid.is-dimmed .compare-card--other {
  border-color: var(--color-light-gray);
}

.compare-grid.is-dimmed .compare-card--other .compare-card__list li svg {
  color: var(--color-mid-gray);
}

/* Compare responsive */
@media (max-width: 768px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .compare-grid::before {
    left: 50%;
    top: auto;
    bottom: calc(51.8% - 1em);
    transform: translateX(-50%);
  }
}

/* --- Services Section --- */
.services-section {
  padding: var(--space-5xl) 0;
}

.services-section .section-header {
  margin-bottom: var(--space-4xl);
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.services-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-image img {
  width: 100%;
  max-width: 100%;
  height: 20rem;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.service-card--featured {
  border-color: var(--color-primary);
  border-width: 2px;
}

.services-secondary {
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-light-gray);
}

.section--accent .services-secondary {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.section--accent .services-secondary__text {
  color: rgba(255, 255, 255, 0.6);
}

.section--accent .services-secondary__text a {
  color: var(--color-white);
}

.services-secondary__text {
  font-size: var(--text-base);
  color: var(--color-mid-gray);
}

.services-secondary__text a {
  color: var(--color-primary);
  font-weight: 600;
}

/* --- Stats Section --- */
.stats-section {
  padding: var(--space-5xl) 0;
}

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

/* --- Reviews Section --- */
.reviews-section {
  padding: var(--space-5xl) 0;
  background: var(--color-off-white);
}

.reviews-section .section-header {
  margin-bottom: var(--space-4xl);
  text-align: center;
}

.reviews-section .section-header h2 {
  margin-left: auto;
  margin-right: auto;
}

.reviews-section .section-header p {
  margin-left: auto;
  margin-right: auto;
}

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

/* --- Reviews Slider (homepage) --- */
.reviews-slider {
  position: relative;
  overflow: hidden;
}

.reviews-slider__track {
  display: flex;
  gap: var(--space-xl);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews-slider__track .review-card {
  flex: 0 0 calc((100% - 2 * var(--space-xl)) / 3);
  max-width: calc((100% - 2 * var(--space-xl)) / 3);
}

.reviews-slider__nav {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.reviews-slider__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-light-gray);
  background: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  transition: all var(--transition-fast);
}

.reviews-slider__btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-off-white);
}

.reviews-slider__btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.reviews-slider__btn:disabled:hover {
  border-color: var(--color-light-gray);
  color: var(--color-dark);
  background: var(--color-white);
}

/* --- About Teaser --- */
.about-teaser {
  padding: var(--space-5xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5xl);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
}

.about-text h2 {
  margin-bottom: var(--space-xl);
  font-weight: 500;
}

.about-text .btn {
  margin-top: var(--space-xl);
}

.about-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-stat__number {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.about-stat__label {
  font-size: var(--text-sm);
  color: var(--color-medium-gray);
  font-weight: 400;
}

/* --- FAQ Section --- */
.faq-section {
  padding: var(--space-5xl) 0;
}

.faq-section .section-header {
  margin-bottom: var(--space-3xl);
}

/* --- CTA Section --- */
.cta-section {
  padding: var(--space-5xl) 0 calc(var(--space-5xl) + 2rem);
}

.cta-section h2 {
  color: var(--color-white);
  font-weight: 400;
  margin-bottom: var(--space-lg);
  font-size: var(--text-4xl);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  margin: 0 auto var(--space-3xl);
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Lokale steden featured --- */
.lokaal-featured {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-xl);
}

.lokaal-featured__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lokaal-featured__item:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.lokaal-featured__name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-dark);
}

.lokaal-featured__label {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  background: rgba(22, 73, 142, 0.08);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.lokaal-more {
  text-align: center;
}

.lokaal-links--hidden {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 500ms cubic-bezier(0.16, 1, 0.3, 1), opacity 400ms ease, margin 400ms ease;
  margin-bottom: 0;
}

.lokaal-links--visible {
  max-height: 500px;
  opacity: 1;
  margin-bottom: var(--space-xl);
}

.lokaal-toggle {
  margin-top: var(--space-md);
}

/* --- Lokale steden links --- */
.lokaal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: var(--space-2xl);
}

.lokaal-links a {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-mid-gray);
  background: var(--color-off-white);
  border: 1px solid var(--color-light-gray);
  border-radius: 100px;
  text-decoration: none;
  transition: background 250ms ease, color 250ms ease, border-color 250ms ease;
}

.lokaal-links a:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

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

  .featured-project__inner {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-layout {
    grid-template-columns: 1fr;
  }

  .process-image {
    position: static;
    max-height: 400px;
    overflow: hidden;
  }

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

  .reviews-slider__track .review-card {
    flex: 0 0 calc((100% - var(--space-xl)) / 2);
    max-width: calc((100% - var(--space-xl)) / 2);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .project-row__info {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.2rem, 1.5rem + 4vw, 4rem);
  }

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

  .hero-cta .btn {
    justify-content: center;
    text-align: center;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .intro-visual {
    order: -1;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card--wide {
    grid-column: span 1;
  }

  .project-card--wide .project-card__image-wrap {
    aspect-ratio: 16 / 10;
  }

  .project-row {
    grid-template-columns: auto 1fr;
    gap: var(--space-md);
  }

  .project-row__arrow {
    display: none;
  }

  .project-row__title {
    font-size: clamp(1.25rem, 1rem + 1.5vw, 2rem);
  }

  .lokaal-featured {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-layout {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .process-step {
    padding: var(--space-xl);
    background: var(--color-off-white);
    border-radius: var(--radius-lg);
    border-left: none;
    border-top: 1px solid var(--color-light-gray);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-slider__track .review-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .about-image {
    order: -1;
  }


  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(1.75rem, 1.2rem + 3.5vw, 3rem);
  }

  .about-stats {
    flex-direction: column;
  }
}

