:root {
  --brand-primary: #6d28d9;
  --brand-primary-dark: #4c1d95;
  --brand-accent: #f59e0b;
  --brand-accent-dark: #b45309;
  --brand-ink: #0f0a1f;
  --brand-ink-soft: #241a3d;
  --brand-surface: #ffffff;
  --brand-surface-alt: #f4f1fb;
  --brand-muted-bg: #ece7f7;
  --brand-text: #14111f;
  --brand-text-invert: #ffffff;
  --brand-line: rgba(15, 10, 31, 0.12);
  --brand-radius-sm: 10px;
  --brand-radius-md: 18px;
  --brand-radius-lg: 28px;
  --brand-radius-pill: 999px;
  --brand-shadow-sm: 0 6px 18px rgba(15, 10, 31, 0.08);
  --brand-shadow-md: 0 18px 44px rgba(15, 10, 31, 0.14);
  --brand-shadow-lg: 0 34px 80px rgba(15, 10, 31, 0.22);
  --brand-font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --brand-font-body: "Inter", "Segoe UI", sans-serif;
  --brand-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--brand-font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--brand-text);
  background-color: var(--brand-surface);
  overflow-x: hidden;
}

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

a {
  color: var(--brand-primary-dark);
  text-decoration: none;
  transition: color 0.25s var(--brand-ease);
}

a:hover,
a:focus-visible {
  color: var(--brand-accent-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--brand-font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--brand-ink);
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 1.75rem;
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  margin-bottom: 0.85rem;
}

h4 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

p {
  margin-bottom: 1.15rem;
}

strong {
  color: var(--brand-ink);
}

::selection {
  background: var(--brand-accent);
  color: var(--brand-ink);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  padding: 0.75rem 1.25rem;
  background: var(--brand-ink);
  color: #fff;
  border-radius: 0 0 var(--brand-radius-sm) 0;
}

.skip-link:focus {
  left: 0;
  color: #fff;
}

.container-brand {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section {
  position: relative;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section--light {
  background-color: var(--brand-surface);
}

.section--alt {
  background-color: var(--brand-surface-alt);
}

.section--muted {
  background-color: var(--brand-muted-bg);
}

.section--dark {
  background-color: var(--brand-ink);
  color: var(--brand-text-invert);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #ffffff;
}

.section--dark p,
.section--dark li,
.section--dark span {
  color: #f1ecff;
}

.section-overlay {
  color: #ffffff;
}

.section-overlay h1,
.section-overlay h2,
.section-overlay h3,
.section-overlay h4 {
  color: #ffffff;
}

.section-overlay p,
.section-overlay li {
  color: #f6f3ff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--brand-font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-accent-dark);
  margin-bottom: 1rem;
}

.section--dark .eyebrow,
.section-overlay .eyebrow {
  color: #fcd34d;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 3px;
  border-radius: var(--brand-radius-pill);
  background: currentColor;
}

.section-head {
  max-width: 820px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .eyebrow {
  justify-content: center;
}

.lead-text {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--brand-ink-soft);
}

.section--dark .lead-text,
.section-overlay .lead-text {
  color: #ece6ff;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.btn-brand,
.btn-brand-outline,
.btn-brand-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  font-family: var(--brand-font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--brand-radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--brand-ease), background-color 0.25s var(--brand-ease),
    color 0.25s var(--brand-ease), border-color 0.25s var(--brand-ease), box-shadow 0.25s var(--brand-ease);
}

.btn-brand {
  background-color: var(--brand-primary);
  color: #ffffff;
  box-shadow: var(--brand-shadow-sm);
}

.btn-brand:hover,
.btn-brand:focus-visible {
  background-color: var(--brand-primary-dark);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: var(--brand-shadow-md);
}

.btn-brand-outline {
  background-color: transparent;
  color: var(--brand-ink);
  border-color: var(--brand-ink);
}

.btn-brand-outline:hover,
.btn-brand-outline:focus-visible {
  background-color: var(--brand-ink);
  color: #ffffff;
  transform: translateY(-3px);
}

.btn-brand-light {
  background-color: var(--brand-accent);
  color: var(--brand-ink);
}

.btn-brand-light:hover,
.btn-brand-light:focus-visible {
  background-color: #fbbf24;
  color: var(--brand-ink);
  transform: translateY(-3px);
}

.btn-brand-block {
  width: 100%;
}

#inject-header {
  position: relative;
  z-index: 1030;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--brand-line);
}

.site-header__topbar {
  background-color: var(--brand-ink);
  color: #ffffff;
  font-size: 0.85rem;
}

.site-header__topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-block: 0.55rem;
}

.site-header__contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.site-header__contacts i {
  color: var(--brand-accent);
  margin-right: 0.4rem;
}

.site-header__contacts span {
  color: #ffffff;
}

.site-header__socials {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.site-header__socials a {
  color: #ffffff;
}

.site-header__socials a:hover,
.site-header__socials a:focus-visible {
  color: var(--brand-accent);
}

.site-header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--brand-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-ink);
}

.site-logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: #ffffff;
  font-size: 1.2rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav__link {
  position: relative;
  display: inline-block;
  padding: 0.55rem 0.85rem;
  font-family: var(--brand-font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-ink);
  border-radius: var(--brand-radius-sm);
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--brand-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--brand-ease);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__link.is-active::after {
  transform: scaleX(1);
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--brand-primary-dark);
}

.site-header__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius-sm);
  background: transparent;
  color: var(--brand-ink);
  font-size: 1.25rem;
  cursor: pointer;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--brand-muted-bg);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: clamp(4rem, 9vw, 7rem) 0;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(76, 29, 149, 0.55) 0%, rgba(15, 10, 31, 0.35) 100%);
  pointer-events: none;
}

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

.hero__content h1 {
  color: #ffffff;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
}

.hero__content p {
  color: #f3efff;
  font-size: 1.2rem;
  max-width: 620px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero__badges {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.75rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1.1rem;
  border-radius: var(--brand-radius-pill);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #ffffff;
  font-size: 0.9rem;
}

.hero__badge i {
  color: var(--brand-accent);
}

.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.65rem;
  z-index: 3;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s var(--brand-ease), transform 0.3s var(--brand-ease);
}

.hero-dots button.is-active {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  transform: scale(1.25);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.25rem;
  padding: 2.25rem;
  border-radius: var(--brand-radius-lg);
  background: var(--brand-surface);
  box-shadow: var(--brand-shadow-md);
  margin-top: -4.5rem;
  position: relative;
  z-index: 4;
}

.stat-strip__item {
  text-align: center;
  padding: 0.75rem;
  border-right: 1px solid var(--brand-line);
}

.stat-strip__item:last-child {
  border-right: none;
}

.stat-strip__value {
  display: block;
  font-family: var(--brand-font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--brand-primary-dark);
  line-height: 1.1;
}

.stat-strip__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.92rem;
  color: var(--brand-ink-soft);
}

.card-brand {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  background: var(--brand-surface);
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius-md);
  box-shadow: var(--brand-shadow-sm);
  transition: transform 0.35s var(--brand-ease), box-shadow 0.35s var(--brand-ease),
    border-color 0.35s var(--brand-ease);
}

.card-brand:hover {
  transform: translateY(-8px);
  box-shadow: var(--brand-shadow-md);
  border-color: rgba(109, 40, 217, 0.35);
}

.card-brand__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.14), rgba(245, 158, 11, 0.18));
  color: var(--brand-primary-dark);
  font-size: 1.4rem;
  margin-bottom: 1.35rem;
}

.card-brand h3 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

.card-brand p {
  color: var(--brand-ink-soft);
  margin-bottom: 1.35rem;
  flex-grow: 1;
}

.card-brand__link {
  font-family: var(--brand-font-display);
  font-weight: 700;
  color: var(--brand-primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-brand__link i {
  transition: transform 0.3s var(--brand-ease);
}

.card-brand__link:hover i {
  transform: translateX(6px);
}

.section--dark .card-brand,
.section-overlay .card-brand {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.section--dark .card-brand h3,
.section-overlay .card-brand h3 {
  color: #ffffff;
}

.section--dark .card-brand p,
.section-overlay .card-brand p {
  color: #e9e3ff;
}

.service-media {
  position: relative;
  border-radius: var(--brand-radius-md);
  overflow: hidden;
  box-shadow: var(--brand-shadow-md);
}

.service-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.6s var(--brand-ease);
}

.service-media:hover img {
  transform: scale(1.06);
}

.service-media__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 1rem;
  border-radius: var(--brand-radius-pill);
  background: var(--brand-accent);
  color: var(--brand-ink);
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--brand-font-display);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 2.1rem;
  margin-bottom: 0.85rem;
  color: var(--brand-ink-soft);
}

.check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: var(--brand-accent-dark);
}

.section--dark .check-list li,
.section-overlay .check-list li {
  color: #efeaff;
}

.section--dark .check-list li::before,
.section-overlay .check-list li::before {
  color: #fcd34d;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--brand-surface);
  border-radius: var(--brand-radius-md);
  border: 1px solid var(--brand-line);
  box-shadow: var(--brand-shadow-sm);
  counter-increment: step;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--brand-font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(109, 40, 217, 0.22);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.process-step p {
  margin: 0;
  color: var(--brand-ink-soft);
}

.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-primary), var(--brand-accent));
}

.timeline__item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -2.35rem;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-accent);
  border: 3px solid var(--brand-surface);
  box-shadow: 0 0 0 2px var(--brand-primary);
}

.timeline__year {
  display: block;
  font-family: var(--brand-font-display);
  font-weight: 700;
  color: var(--brand-primary-dark);
  margin-bottom: 0.35rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--brand-radius-md);
  overflow: hidden;
  box-shadow: var(--brand-shadow-sm);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s var(--brand-ease);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.25rem 1.1rem;
  background: linear-gradient(0deg, rgba(15, 10, 31, 0.88), rgba(15, 10, 31, 0));
  color: #ffffff;
  font-family: var(--brand-font-display);
  font-weight: 600;
}

.gallery-item__caption span {
  display: block;
  font-family: var(--brand-font-body);
  font-weight: 400;
  font-size: 0.88rem;
  color: #e6dfff;
  margin-top: 0.2rem;
}

.team-card {
  text-align: center;
  padding: 1.75rem 1.5rem;
  background: var(--brand-surface);
  border-radius: var(--brand-radius-md);
  border: 1px solid var(--brand-line);
  box-shadow: var(--brand-shadow-sm);
  transition: transform 0.35s var(--brand-ease), box-shadow 0.35s var(--brand-ease);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--brand-shadow-md);
}

.team-card__photo {
  width: 118px;
  height: 118px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--brand-muted-bg);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__role {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-accent-dark);
  margin-bottom: 0.6rem;
}

.team-card__socials {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1rem;
}

.team-card__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-muted-bg);
  color: var(--brand-ink);
}

.team-card__socials a:hover,
.team-card__socials a:focus-visible {
  background: var(--brand-primary);
  color: #ffffff;
}

.portfolio-card {
  position: relative;
  border-radius: var(--brand-radius-md);
  overflow: hidden;
  box-shadow: var(--brand-shadow-sm);
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  background: linear-gradient(0deg, rgba(76, 29, 149, 0.9), rgba(76, 29, 149, 0));
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.35s var(--brand-ease);
}

.portfolio-card:hover .portfolio-card__overlay,
.portfolio-card:focus-within .portfolio-card__overlay {
  opacity: 1;
}

.portfolio-card__overlay h3 {
  color: #ffffff;
  font-size: 1.2rem;
}

.portfolio-card__overlay p {
  color: #ece6ff;
  margin: 0;
  font-size: 0.92rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.25rem;
  background: var(--brand-surface);
  border: 2px solid var(--brand-line);
  border-radius: var(--brand-radius-lg);
  box-shadow: var(--brand-shadow-sm);
  transition: transform 0.35s var(--brand-ease), box-shadow 0.35s var(--brand-ease),
    border-color 0.35s var(--brand-ease);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--brand-shadow-md);
}

.pricing-card--featured {
  border-color: var(--brand-primary);
  box-shadow: var(--brand-shadow-md);
  position: relative;
}

.pricing-card--featured::after {
  content: "Populair";
  position: absolute;
  top: -14px;
  right: 2rem;
  padding: 0.35rem 1rem;
  border-radius: var(--brand-radius-pill);
  background: var(--brand-accent);
  color: var(--brand-ink);
  font-family: var(--brand-font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 1rem 0 1.5rem;
}

.pricing-card__price strong {
  font-family: var(--brand-font-display);
  font-size: 2.9rem;
  line-height: 1;
  color: var(--brand-primary-dark);
}

.pricing-card__price span {
  font-size: 0.95rem;
  color: var(--brand-ink-soft);
}

.pricing-card ul {
  flex-grow: 1;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  background: var(--brand-surface);
  border-radius: var(--brand-radius-md);
  border: 1px solid var(--brand-line);
  box-shadow: var(--brand-shadow-sm);
}

.testimonial-card__stars {
  color: var(--brand-accent-dark);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.testimonial-card__text {
  font-size: 1.05rem;
  color: var(--brand-ink-soft);
  flex-grow: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.testimonial-card__author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__author strong {
  display: block;
  font-family: var(--brand-font-display);
}

.testimonial-card__author span {
  font-size: 0.86rem;
  color: var(--brand-ink-soft);
}

.partner-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0.85;
}

.partner-row img {
  max-height: 46px;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.35s var(--brand-ease), opacity 0.35s var(--brand-ease);
}

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

.accordion-brand .accordion-item {
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--brand-surface);
}

.accordion-brand .accordion-button {
  font-family: var(--brand-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-ink);
  background: var(--brand-surface);
  padding: 1.25rem 1.5rem;
}

.accordion-brand .accordion-button:not(.collapsed) {
  color: var(--brand-primary-dark);
  background: var(--brand-muted-bg);
  box-shadow: none;
}

.accordion-brand .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.25);
  z-index: 3;
}

.accordion-brand .accordion-body {
  color: var(--brand-ink-soft);
  padding: 1.25rem 1.5rem;
}

.form-brand {
  padding: clamp(1.75rem, 4vw, 3rem);
  background: var(--brand-surface);
  border-radius: var(--brand-radius-lg);
  box-shadow: var(--brand-shadow-md);
}

.section--dark .form-brand,
.section-overlay .form-brand {
  background: rgba(255, 255, 255, 0.97);
}

.form-brand .form-label {
  font-family: var(--brand-font-display);
  font-weight: 600;
  color: var(--brand-ink);
  margin-bottom: 0.4rem;
}

.form-brand .form-control,
.form-brand .form-select {
  padding: 0.85rem 1rem;
  border-radius: var(--brand-radius-sm);
  border: 1px solid var(--brand-line);
  background: var(--brand-surface-alt);
  color: var(--brand-text);
  font-size: 1rem;
}

.form-brand .form-control:focus,
.form-brand .form-select:focus {
  border-color: var(--brand-primary);
  background: var(--brand-surface);
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.18);
}

.form-brand .form-check-label {
  color: var(--brand-ink-soft);
  font-size: 0.92rem;
}

.form-brand .form-check-input:checked {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.form-feedback {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--brand-radius-sm);
  font-size: 0.95rem;
  display: none;
}

.form-feedback.is-visible {
  display: block;
}

.form-feedback--success {
  background: #e7f8ee;
  color: #10633c;
  border: 1px solid #a7e6c2;
}

.form-feedback--error {
  background: #fdeaea;
  color: #8f1d1d;
  border: 1px solid #f3b8b8;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.newsletter-form .form-control {
  flex: 1 1 240px;
  padding: 0.9rem 1.15rem;
  border-radius: var(--brand-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.newsletter-form .form-control::placeholder {
  color: #d8cfff;
}

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
}

.map-embed {
  position: relative;
  border-radius: var(--brand-radius-lg);
  overflow: hidden;
  box-shadow: var(--brand-shadow-md);
  line-height: 0;
}

.map-embed iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
}

.cta-band {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  border-radius: var(--brand-radius-lg);
  overflow: hidden;
  color: #ffffff;
  background-size: cover;
  background-position: center;
}

.cta-band h2 {
  color: #ffffff;
}

.cta-band p {
  color: #f1ecff;
}

.info-tile {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--brand-surface);
  border-radius: var(--brand-radius-md);
  border: 1px solid var(--brand-line);
  box-shadow: var(--brand-shadow-sm);
  height: 100%;
}

.info-tile__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand-muted-bg);
  color: var(--brand-primary-dark);
  font-size: 1.25rem;
}

.info-tile h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.info-tile p,
.info-tile a {
  margin: 0;
  color: var(--brand-ink-soft);
  font-size: 0.96rem;
  word-break: break-word;
}

.article-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--brand-surface);
  border-radius: var(--brand-radius-md);
  border: 1px solid var(--brand-line);
  box-shadow: var(--brand-shadow-sm);
  transition: transform 0.35s var(--brand-ease), box-shadow 0.35s var(--brand-ease);
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--brand-shadow-md);
}

.article-card__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.75rem;
}

.article-card__meta {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--brand-accent-dark);
  margin-bottom: 0.6rem;
  font-family: var(--brand-font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-card__body p {
  color: var(--brand-ink-soft);
  flex-grow: 1;
}

.prose {
  max-width: 780px;
}

.prose h2 {
  margin-top: 2.5rem;
}

.prose h3 {
  margin-top: 2rem;
}

.prose p,
.prose li {
  color: var(--brand-ink-soft);
  font-size: 1.05rem;
}

.prose ul,
.prose ol {
  padding-left: 1.35rem;
}

.prose blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.75rem;
  border-left: 4px solid var(--brand-primary);
  background: var(--brand-surface-alt);
  border-radius: 0 var(--brand-radius-sm) var(--brand-radius-sm) 0;
  font-style: italic;
}

.site-footer {
  position: relative;
  padding-top: clamp(3rem, 7vw, 5rem);
  background-color: var(--brand-ink);
  color: #ffffff;
}

.site-footer h3 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.site-footer p,
.site-footer li,
.site-footer a,
.site-footer span {
  color: #ded7f0;
  font-size: 0.95rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--brand-accent);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__list li {
  margin-bottom: 0.6rem;
}

.site-footer__contact-item {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.site-footer__contact-item i {
  color: var(--brand-accent);
  margin-top: 0.25rem;
}

.site-footer__socials {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.site-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
  background: var(--brand-accent);
  color: var(--brand-ink);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.75rem;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.site-footer__legal a {
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1080;
  max-width: 720px;
  margin-inline: auto;
  padding: 1.5rem;
  background: var(--brand-surface);
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius-md);
  box-shadow: var(--brand-shadow-lg);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.5s var(--brand-ease), opacity 0.5s var(--brand-ease);
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.cookie-banner p {
  font-size: 0.94rem;
  color: var(--brand-ink-soft);
  margin-bottom: 1.15rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-cookie {
  padding: 0.7rem 1.5rem;
  border-radius: var(--brand-radius-pill);
  border: 2px solid transparent;
  font-family: var(--brand-font-display);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.25s var(--brand-ease), color 0.25s var(--brand-ease);
}

.btn-cookie--accept {
  background: var(--brand-primary);
  color: #ffffff;
}

.btn-cookie--accept:hover,
.btn-cookie--accept:focus-visible {
  background: var(--brand-primary-dark);
}

.btn-cookie--decline {
  background: transparent;
  color: var(--brand-ink);
  border-color: var(--brand-line);
}

.btn-cookie--decline:hover,
.btn-cookie--decline:focus-visible {
  background: var(--brand-muted-bg);
}

.scroll-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1040;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #ffffff;
  font-size: 1.05rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.3s var(--brand-ease), transform 0.3s var(--brand-ease),
    visibility 0.3s var(--brand-ease), background-color 0.3s var(--brand-ease);
}

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

.scroll-top:hover,
.scroll-top:focus-visible {
  background: var(--brand-primary-dark);
}

.cta-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  border-radius: var(--brand-radius-lg);
  background: linear-gradient(120deg, var(--brand-primary-dark), var(--brand-primary));
  color: #ffffff;
}

.cta-inline h3 {
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.cta-inline p {
  color: #ece6ff;
  margin: 0;
}

.divider-wave {
  height: 4px;
  width: 96px;
  border-radius: var(--brand-radius-pill);
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  margin-bottom: 1.5rem;
}

@media (max-width: 991.98px) {
  .site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 88vw);
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 5.5rem 1.5rem 2rem;
    background: var(--brand-surface);
    box-shadow: var(--brand-shadow-lg);
    transform: translateX(105%);
    transition: transform 0.4s var(--brand-ease);
    z-index: 1050;
    overflow-y: auto;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav__link {
    padding: 0.85rem 0.75rem;
    border-bottom: 1px solid var(--brand-line);
    border-radius: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header__cta .btn-brand {
    display: none;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767.98px) {
  .site-header__topbar-inner {
    justify-content: center;
  }

  .site-header__contacts {
    justify-content: center;
    gap: 0.75rem 1rem;
    font-size: 0.8rem;
  }

  .stat-strip {
    margin-top: -2.5rem;
    padding: 1.5rem;
  }

  .stat-strip__item {
    border-right: none;
    border-bottom: 1px solid var(--brand-line);
    padding-bottom: 1rem;
  }

  .stat-strip__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .map-embed iframe {
    height: 340px;
  }

  .cta-inline {
    padding: 1.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
/* --- Contrast / a11y fixes (appended) --- */
/* Hero sits on a photo background; provide an explicit dark background-color
   so white text always has a measurable, high-contrast backdrop. */
.hero {
  background-color: #1b1235;
}

/* Portfolio overlays use a gradient only; give the card a solid dark base
   so the white overlay text keeps sufficient contrast. */
.portfolio-card {
  background-color: #4c1d95;
}

/* Team cards live inside .section--dark (which forces white text) but kept a
   white card background. Give them a dark surface to match the other cards. */
.section--dark .team-card {
  background-color: #241a3d;
  border-color: rgba(255, 255, 255, 0.18);
}
.section--dark .team-card h3 {
  color: #ffffff;
}
.section--dark .team-card__role,
.section--dark .team-card p {
  color: #f1ecff;
}
.section--dark .team-card__photo {
  border-color: rgba(255, 255, 255, 0.22);
}

/* ===== Contrast fixes (appended overrides) ===== */

/* Hero uses a background-image (gradient + photo) but no background-color,
   so contrast tools fall back to the white body. Give it a solid dark base. */
.hero {
  background-color: #0f0a1f;
}

/* Hero outline button is forced white via inline style; against the dark hero
   base it now reads correctly. Keep a solid fill so it is never transparent. */
.hero .btn-brand-outline {
  background-color: rgba(15, 10, 31, 0.35);
}

/* CTA inline band relies on a gradient only; add a solid dark purple base. */
.cta-inline {
  background-color: #4c1d95;
}

/* Gallery captions sit on images via a gradient that fades to transparent;
   add a dark base colour behind the text for reliable contrast. */
.gallery-item__caption {
  background-color: rgba(15, 10, 31, 0.88);
}

/* Eyebrow accent on light/muted surfaces is slightly too light (#b45309).
   Darken it on the light backgrounds while keeping the gold tone in dark sections. */
.section--light .eyebrow,
.section--alt .eyebrow,
.section--muted .eyebrow {
  color: #92400e;
}

/* Inside section--dark the info tiles and the form are rendered on WHITE cards,
   but dark-section rules paint their headings/paragraphs white. Reset them. */
.section--dark .info-tile h3 {
  color: var(--brand-ink);
}

.section--dark .info-tile p,
.section--dark .info-tile a,
.section--dark .info-tile span {
  color: var(--brand-ink-soft);
}

.section--dark .form-brand h3 {
  color: var(--brand-ink);
}

.section--dark .form-brand p,
.section--dark .form-brand span,
.section--dark .form-brand li,
.section--dark .form-brand label {
  color: var(--brand-ink-soft);
}

/* Hero eyebrow uses the default (dark) accent, which is too dark on the hero
   photo/gradient. Use the light gold tone like the dark sections do. */
.hero .eyebrow {
  color: #fcd34d;
}

/* The hero card is a translucent panel over the dark hero image, so its
   inherited dark text is unreadable. Force light text inside it. */
.hero .card-brand h3 {
  color: #ffffff;
}

.hero .card-brand p,
.hero .card-brand li {
  color: #ece6ff;
}

.hero .card-brand .check-list li::before {
  color: #fcd34d;
}

/* Hero eyebrow + glass card need light text on the dark hero backdrop */
.hero .eyebrow {
  color: #fcd34d;
}

.hero .card-brand h3,
.hero .card-brand h2 {
  color: #ffffff;
}

.hero .card-brand p {
  color: #f1ecff;
}

/* ===== Contrast fix: service-media tag inside dark sections ===== */
/* .section--dark forces span colors to #f1ecff, which overrides the badge's
   intended dark text and leaves near-white text on the amber chip.
   Restore the dark ink color so the "Onze redactie" tag is readable. */
.section--dark .service-media__tag,
.section-overlay .service-media__tag {
  color: var(--brand-ink);
}

/* ===== Contrast fix: hero heading/paragraph on the dark hero backdrop ===== */
/* The blog-style hero uses a plain <h1>/<p> (no .hero__content wrapper), so the
   base heading colour (--brand-ink #0f0a1f) rendered dark-on-dark against the
   hero's #0f0a1f background. Force the light hero palette. */
.hero h1 {
  color: #ffffff;
}

.hero p {
  color: #f3efff;
}

/* ===== Homepage contrast fixes (appended) ===== */

/* CTA band uses only a background-image gradient; give it a solid dark
   background-color so the white heading, text and form label have a
   measurable, high-contrast backdrop. */
.cta-band {
  background-color: #4c1d95;
}

/* .section--dark forces white text on all headings/paragraphs/spans, but the
   process steps, testimonial cards and article cards keep a WHITE card
   background. Render those cards on a dark surface for legible text. */
.section--dark .process-step,
.section-overlay .process-step {
  background-color: #241a3d;
  border-color: rgba(255, 255, 255, 0.18);
}

.section--dark .process-step h3,
.section-overlay .process-step h3 {
  color: #ffffff;
}

.section--dark .process-step p,
.section-overlay .process-step p {
  color: #ece6ff;
}

.section--dark .process-step::before {
  color: rgba(255, 255, 255, 0.32);
}

.section--dark .testimonial-card,
.section-overlay .testimonial-card {
  background-color: #241a3d;
  border-color: rgba(255, 255, 255, 0.18);
}

.section--dark .testimonial-card__text,
.section-overlay .testimonial-card__text {
  color: #f1ecff;
}

.section--dark .testimonial-card__author strong,
.section-overlay .testimonial-card__author strong {
  color: #ffffff;
}

.section--dark .testimonial-card__author span,
.section-overlay .testimonial-card__author span {
  color: #d8cfff;
}

.section--dark .article-card,
.section-overlay .article-card {
  background-color: #241a3d;
  border-color: rgba(255, 255, 255, 0.18);
}

.section--dark .article-card__meta,
.section-overlay .article-card__meta {
  color: #fcd34d;
}

.section--dark .article-card h3,
.section--dark .article-card h3 a,
.section-overlay .article-card h3,
.section-overlay .article-card h3 a {
  color: #ffffff;
}

.section--dark .article-card__body p,
.section-overlay .article-card__body p {
  color: #e9e3ff;
}

/* Fix: testimonial star rating contrast on dark testimonials section */
.testimonial-card__stars,
.section--dark .testimonial-card__stars {
  color: #fcd34d !important;
}
