/* ─────────────────────────────────────────────────────────────
   Header — sticky, blurred (dark on dark sections, transparent over light hero)
   ───────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(10, 10, 12, 0.72);
  border-bottom: 1px solid var(--color-divider);
  color: var(--color-text);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  font-size: 0.875rem;
}
.site-header__brand {
  display: flex;
  align-items: center;
}
.site-header__logo {
  height: 22px;
  width: auto;
  display: block;
}
.site-header__nav { display: flex; gap: var(--space-7); }
.site-header__nav a { color: var(--color-text); opacity: .8; transition: opacity var(--dur-1) var(--ease-out); }
.site-header__nav a:hover { opacity: 1; }
@media (max-width: 820px) { .site-header__nav { display: none; } }

/* ─────────────────────────────────────────────────────────────
   Buttons
   ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 16px 22px;
  border-radius: var(--radius-pill);
  font-weight: var(--fw-medium);
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  transition: background-color var(--dur-1) var(--ease-out),
              color var(--dur-1) var(--ease-out),
              transform var(--dur-1) var(--ease-out),
              border-color var(--dur-1) var(--ease-out);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn--lg { padding: 14px 28px; font-size: 1.0625rem; }

/* On dark backgrounds */
.btn--primary { background: #fff; color: var(--color-text-on-light); }
.btn--primary:hover { background: #e5e5e7; }
.btn--ghost {
  color: var(--color-text);
  border-color: rgba(255,255,255,0.18);
}
.btn--ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); }

/* On light backgrounds */
.section--light .btn--primary,
.section--light-soft .btn--primary { background: var(--color-text-on-light); color: #fff; }
.section--light .btn--primary:hover,
.section--light-soft .btn--primary:hover { background: #2c2c2e; }
.section--light .btn--ghost,
.section--light-soft .btn--ghost {
  color: var(--color-text-on-light);
  border-color: rgba(0,0,0,0.18);
}
.section--light .btn--ghost:hover,
.section--light-soft .btn--ghost:hover { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.3); }

/* ─────────────────────────────────────────────────────────────
   Hero — light, clean entry
   ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  text-align: center;
  padding-block: clamp(80px, 14vw, 180px) clamp(40px, 6vw, 80px);
  background: #0a0a0c;
  color: var(--color-text);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 30% 30%, rgba(108, 93, 252, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 75% 60%, rgba(184, 245, 17, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 70% 50% at 50% 90%, rgba(232, 54, 156, 0.10) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero .eyebrow { color: var(--color-text-muted); }
.hero__title {
  margin-bottom: var(--space-5);
  color: var(--color-text);
  line-height: 0.95;
  letter-spacing: var(--tracking-tightest);
  /* Brand-character: all-caps + bigger, zoals je oude site */
  text-transform: uppercase;
  font-size: clamp(3.5rem, 11vw, 9rem);
  font-weight: var(--fw-bold);
}
.hero__title em {
  /* Italic + lime-green — Snappy Video's signature accent (matcht logo) */
  font-style: italic;
  font-weight: var(--fw-bold);
  color: var(--color-snappy-lime);
  display: inline-block;
  margin-top: -0.05em;
}
@keyframes shimmer { to { background-position: 220% center; } }
.hero__sub {
  margin: 0 auto var(--space-7);
  max-width: 580px;
  color: var(--color-text-muted);
}
.hero__sub em {
  font-style: italic;
  font-weight: var(--fw-semibold);
  color: var(--color-snappy-lime);
}

/* Mascot — peeks in from the right edge, behind hero content */
.hero__mascot {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-55%);
  width: clamp(220px, 28vw, 380px);
  height: auto;
  z-index: 0;
  pointer-events: none;
  /* Soft fade aan de onderkant zodat de bird organisch wegvloeit */
  mask-image: linear-gradient(to bottom, #000 40%, transparent 88%);
  -webkit-mask-image: linear-gradient(to bottom, #000 40%, transparent 88%);
}
@media (max-width: 1100px) {
  .hero__mascot {
    right: -8%;
    width: clamp(180px, 22vw, 280px);
    opacity: 0.65;
  }
}
@media (max-width: 800px) {
  .hero__mascot { display: none; }
}

/* TrustPilot widget — recreated, niet via TrustPilot's eigen embed */
.hero__trustpilot {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  flex-wrap: wrap;
  justify-content: center;
}
.hero__trustpilot:hover { color: var(--color-text); }
.hero__trustpilot-mark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: var(--fw-semibold);
  color: var(--color-text);
}
.hero__trustpilot-stars {
  display: inline-flex;
  gap: 2px;
}
.hero__trustpilot-stars span {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #00B67A;
  position: relative;
}
.hero__trustpilot-stars span::after {
  content: "";
  position: absolute;
  inset: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 19' fill='white'><path d='M19.9404 7.24347H12.3222L9.97711 0L7.61813 7.24347L0 7.22959L6.16111 11.7117L3.80213 18.9551L9.96324 14.4731L16.1243 18.9551L13.7792 11.7117L19.9404 7.24347Z'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.hero__trustpilot-tagline {
  font-size: 0.8125rem;
  opacity: 0.85;
}
.hero__ctas {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}
/* When .hero__ctas is reused inside a regular section (CTA blocks),
   add extra breathing room from the lead paragraph above. */
.section .hero__ctas { margin-top: var(--space-6); }

/* Hero media — showreel video below CTAs (light hero variant) */
.hero__media {
  margin-top: var(--space-9);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-3);
  position: relative;
  max-width: 1100px;
  margin-inline: auto;
}
.hero__media video,
.hero__media iframe {
  width: 100%; height: 100%; border: 0; display: block;
  object-fit: cover;
}
.hero__media-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--color-text-on-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--dur-2) var(--ease-out),
              background-color var(--dur-1) var(--ease-out);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.hero__media-play:hover { transform: scale(1.08); background: #fff; }
.hero__media-play svg { width: 32px; height: 32px; margin-left: 4px; }

/* ─────────────────────────────────────────────────────────────
   Numbers row — same as animatie.nl, light treatment
   ───────────────────────────────────────────────────────────── */
.numbers__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  list-style: none; margin: 0; padding: 0;
}
@media (max-width: 760px) { .numbers__list { grid-template-columns: repeat(2, 1fr); gap: var(--space-7); } }
@media (max-width: 420px) { .numbers__list { grid-template-columns: 1fr; } }

.numbers__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  border-left: 2px solid var(--color-divider-light);
  padding-left: var(--space-5);
}
@media (max-width: 420px) {
  .numbers__item {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--color-divider-light);
    padding-top: var(--space-4);
  }
}
.numbers__value {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  letter-spacing: var(--tracking-tightest);
  line-height: 1;
  color: var(--color-text-on-light);
}
.numbers__plus {
  font-weight: var(--fw-medium);
  font-size: 0.6em;
  color: var(--color-text-light-muted);
  letter-spacing: 0;
  vertical-align: 0.18em;
  margin-left: 2px;
}
.numbers__label {
  font-size: 0.9375rem;
  color: var(--color-text-light-muted);
  line-height: var(--leading-snug);
  max-width: 22ch;
}

/* ─────────────────────────────────────────────────────────────
   Brand split — Animatie.nl + Filmpje.nl twin cards
   The flagship section: shows the architecture
   ───────────────────────────────────────────────────────────── */
.brands {
  text-align: center;
}
.brands__head { text-align: center; margin-bottom: var(--space-9); }
.brands__head .lead { margin: var(--space-4) auto 0; max-width: 640px; }

.brands__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
@media (max-width: 800px) { .brands__split { grid-template-columns: 1fr; } }

.brand-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: var(--space-8) var(--space-7);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  min-height: 420px;
  transition: transform var(--dur-2) var(--ease-out);
  border: 1px solid var(--color-divider);
}
.brand-card:hover { transform: translateY(-6px); }

.brand-card--animatie {
  background: #fff;
  color: var(--color-text-on-light);
  border-color: var(--color-divider-light);
}
.brand-card--filmpje {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(108,93,252,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(232,54,156,0.14) 0%, transparent 55%),
    var(--color-bg-elevated);
  color: var(--color-text);
  border-color: var(--color-divider);
}

.brand-card__mark {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 2rem;
  letter-spacing: var(--tracking-tightest);
  margin-bottom: var(--space-5);
}
.brand-card__mark-dot {
  background: var(--gradient-brand);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.brand-card__title {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-3);
  line-height: var(--leading-snug);
}
.brand-card__pitch {
  font-size: 1rem;
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  max-width: 36ch;
  opacity: 0.8;
}
.brand-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: 0.9375rem;
  opacity: 0.85;
}
.brand-card__features li::before {
  content: "→ ";
  opacity: 0.5;
  margin-right: var(--space-1);
}
.brand-card__cta {
  margin-top: auto;
  align-self: flex-start;
}

/* ─────────────────────────────────────────────────────────────
   Services grid — six mediums under one studio
   ───────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 800px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  padding: var(--space-6);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  background: var(--color-bg-elevated);
  transition: transform var(--dur-2) var(--ease-out),
              border-color var(--dur-2) var(--ease-out);
}
.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.18);
}
.service-card__icon-chip {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  margin-bottom: var(--space-4);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  display: block;
  /* Convert dark Lottie strokes to white so icons match the dark theme */
  filter: brightness(0) invert(1);
  pointer-events: none;
}
.service-card__title {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 1.25rem;
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.service-card p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: var(--leading-snug);
}

/* ─────────────────────────────────────────────────────────────
   Testimonials — video cards from clients on camera
   ───────────────────────────────────────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}
@media (max-width: 760px) { .testimonials { grid-template-columns: 1fr; } }

.testimonial {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-2xl);
  padding: var(--space-5);
  text-align: left;
  cursor: pointer;
  transition: transform var(--dur-2) var(--ease-out),
              border-color var(--dur-2) var(--ease-out),
              box-shadow var(--dur-2) var(--ease-out);
  font-family: inherit;
  width: 100%;
  color: var(--color-text);
}
.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-3);
}
.testimonial__video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  margin-bottom: var(--space-5);
}
.testimonial__video img,
.testimonial__video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  pointer-events: none;
  object-fit: cover;
}
.testimonial__video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}
.testimonial__video::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%231d1d1f' d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/28px no-repeat;
  z-index: 2;
  transition: transform var(--dur-1) var(--ease-out);
}
.testimonial:hover .testimonial__video::before { transform: translate(-50%, -50%) scale(1.1); }

.testimonial__meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.testimonial__meta img {
  height: 32px;
  width: auto;
  max-width: 110px;
  flex-shrink: 0;
  /* Make client logos render white on dark */
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.testimonial__person { display: flex; flex-direction: column; line-height: 1.3; }
.testimonial__person strong {
  font-size: 0.9375rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text);
}
.testimonial__person span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* ─────────────────────────────────────────────────────────────
   Word-swap — "Happy ↔ Snappy" cycling animation
   ───────────────────────────────────────────────────────────── */
.word-swap {
  display: inline-grid;
  grid-template-columns: 1fr;
  vertical-align: baseline;
}
.word-swap > span {
  grid-column: 1;
  grid-row: 1;
  text-align: center;
}
.word-swap__primary {
  animation: word-swap-primary 7s infinite ease-in-out;
}
.word-swap__alt {
  animation: word-swap-alt 7s infinite ease-in-out;
  color: var(--color-snappy-lime);
  font-style: italic;
}
@keyframes word-swap-primary {
  0%, 75% { opacity: 1; transform: translateY(0); }
  82%, 92% { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes word-swap-alt {
  0%, 75% { opacity: 0; transform: translateY(8px); }
  82%, 92% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(8px); }
}
@media (prefers-reduced-motion: reduce) {
  .word-swap__primary,
  .word-swap__alt { animation: none; }
  .word-swap__alt { display: none; }
}

/* ─────────────────────────────────────────────────────────────
   About section — vertical: head → video → body
   ───────────────────────────────────────────────────────────── */
.about__head { text-align: center; margin-bottom: var(--space-7); }
.about__head .h2 { margin-top: var(--space-3); }

.about__media {
  margin: 0 auto var(--space-8);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-2);
}
.about__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
@media (max-width: 720px) {
  .about__body { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* ─────────────────────────────────────────────────────────────
   Two-col explainer
   ───────────────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-8);
  align-items: start;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; gap: var(--space-5); } }
.two-col__body { display: flex; flex-direction: column; gap: var(--space-4); }

.prose {
  font-size: var(--fs-body-lg);
  line-height: var(--leading-relaxed);
}
.section--light .prose,
.section--light-soft .prose { color: var(--color-text-light-muted); }
.section--light .prose strong,
.section--light-soft .prose strong { color: var(--color-text-on-light); font-weight: var(--fw-semibold); }
.prose:not(.section--light .prose):not(.section--light-soft .prose) { color: var(--color-text-muted); }
.prose strong { color: var(--color-text); font-weight: var(--fw-semibold); }
.prose a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 3px; }

/* ─────────────────────────────────────────────────────────────
   Showreel grid — work showcase, dark dramatic
   ───────────────────────────────────────────────────────────── */
.showcase__head { text-align: center; margin-bottom: var(--space-8); }
.showcase__head .lead { margin: var(--space-4) auto 0; }

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(180px, 22vw, 240px);
  gap: var(--space-3);
}
.bento__cell {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-bg-elevated);
  cursor: pointer;
  transition: transform var(--dur-2) var(--ease-out);
  display: block;
  width: 100%;
  text-align: left;
  padding: 0;
  border: 0;
  font-family: inherit;
}
.bento__cell:hover { transform: translateY(-4px); }
.bento__cell video,
.bento__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.bento__cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
.bento__cell--xl { grid-column: span 8; grid-row: span 2; }
.bento__cell--lg { grid-column: span 4; grid-row: span 2; }
.bento__cell--md { grid-column: span 6; grid-row: span 1; }
.bento__cell--sm { grid-column: span 4; grid-row: span 1; }

/* Bento collapse — hide cells beyond 9 by default */
.bento--collapsed > .bento__cell:nth-child(n+10) {
  display: none;
}
.bento-toggle {
  display: flex;
  justify-content: center;
  margin-top: var(--space-7);
}
.bento-toggle .btn svg { transition: transform var(--dur-1) var(--ease-out); }
.bento-toggle .btn[aria-expanded="true"] svg { transform: rotate(180deg); }

.bento__label {
  position: absolute;
  inset: auto var(--space-5) var(--space-4) var(--space-5);
  color: #fff;
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-tight);
  font-size: 1.125rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
  z-index: 1;
}
@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .bento__cell--xl { grid-column: span 6; grid-row: span 2; }
  .bento__cell--lg { grid-column: span 6; grid-row: span 2; }
  .bento__cell--md { grid-column: span 6; grid-row: span 1; }
  .bento__cell--sm { grid-column: span 3; grid-row: span 1; }
}
@media (max-width: 540px) {
  .bento { grid-template-columns: 1fr; }
  .bento__cell--xl,
  .bento__cell--lg,
  .bento__cell--md,
  .bento__cell--sm { grid-column: span 1; grid-row: span 1; }
  .bento__cell--xl { grid-row: span 2; }
}

/* ─────────────────────────────────────────────────────────────
   Video modal (HTML <dialog>)
   ───────────────────────────────────────────────────────────── */
.video-modal {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(1100px, 92vw);
  width: 100%;
  margin: auto;
  overflow: visible;
}
.video-modal::backdrop {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.video-modal[open] {
  display: block;
  animation: modalIn var(--dur-2) var(--ease-out);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
.video-modal__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-modal__close {
  position: absolute;
  top: -44px; right: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  cursor: pointer;
  background: transparent;
  border: 0;
  opacity: 0.85;
  transition: opacity var(--dur-1) var(--ease-out);
}
.video-modal__close:hover { opacity: 1; }
.video-modal__close svg { width: 24px; height: 24px; }

/* ─────────────────────────────────────────────────────────────
   Trust row — client logos
   ───────────────────────────────────────────────────────────── */
.trust {
  padding-block: var(--space-8);
  border-block: 1px solid var(--color-divider-light);
  background: var(--color-bg-light);
}
.trust__label {
  text-align: center;
  font-size: var(--fs-caption);
  color: var(--color-text-light-muted);
  margin-bottom: var(--space-5);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
}
.trust__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.trust__row img {
  height: 26px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.55;
  transition: filter var(--dur-2) var(--ease-out), opacity var(--dur-2) var(--ease-out);
}
.trust__row img:hover { filter: none; opacity: 1; }
.trust__row img[alt="Sharp"]            { height: 17px; }
.trust__row img[alt="Maersk"]           { height: 22px; }
.trust__row img[alt="Deloitte"]         { height: 22px; }
.trust__row img[alt="Digital Realty"]   { height: 28px; }
.trust__row img[alt="AstraZeneca"]      { height: 22px; }
.trust__row img[alt="Strukton"]         { height: 30px; }
.trust__row img[alt="Digital Realty"]:hover { filter: brightness(0); }

/* ─────────────────────────────────────────────────────────────
   Pricing — three pillars: Project / Retainer / Enterprise
   ───────────────────────────────────────────────────────────── */
.pricing__head { text-align: center; margin-bottom: var(--space-9); }
.pricing__head .lead { margin-inline: auto; }

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items: stretch;
}
@media (max-width: 960px) { .tiers { grid-template-columns: 1fr; } }

.tier {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-2xl);
  padding: var(--space-7);
  transition: transform var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out);
  color: var(--color-text);
}
.tier:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.18); }

.tier--featured {
  background:
    linear-gradient(180deg, rgba(108,93,252,0.1) 0%, rgba(232,54,156,0.05) 100%),
    var(--color-bg-elevated);
  border-color: rgba(108,93,252,0.3);
  position: relative;
}
.tier__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.tier__name {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 1.375rem;
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-2);
}
.tier__pitch {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-bottom: var(--space-6);
  min-height: 3em;
}
.tier__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-1);
}
.tier__price-amt {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-tighter);
  line-height: 1;
}
.tier__price-unit {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}
.tier__price-second {
  font-size: 0.875rem;
  color: var(--color-text-subtle);
  margin-bottom: var(--space-6);
}
.tier__feats {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: 0 0 var(--space-7);
  list-style: none;
  padding: 0;
}
.tier__feat {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.9375rem;
  line-height: 1.4;
}
.tier__feat svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  color: var(--color-accent);
}
.tier__cta { margin-top: auto; width: 100%; justify-content: center; }

/* ─────────────────────────────────────────────────────────────
   Process steps
   ───────────────────────────────────────────────────────────── */
.process__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-7);
  list-style: none; padding: 0; margin: 0;
}
@media (max-width: 900px) { .process__list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process__list { grid-template-columns: 1fr; } }
.process__step { display: flex; flex-direction: column; gap: var(--space-3); }
.process__step__num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 0.875rem;
  letter-spacing: var(--tracking-eyebrow);
}
.section--light .process__step__num,
.section--light-soft .process__step__num { color: var(--color-text-light-muted); }
.process__step__num:not(.section--light .process__step__num):not(.section--light-soft .process__step__num) { color: var(--color-text-subtle); }
.process__step h3 { margin-top: var(--space-1); margin-bottom: var(--space-1); }
.process__step p { font-size: 0.9375rem; line-height: var(--leading-snug); }
.section--light .process__step p,
.section--light-soft .process__step p { color: var(--color-text-light-muted); }

/* ─────────────────────────────────────────────────────────────
   CTA
   ───────────────────────────────────────────────────────────── */
.cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(108,93,252,0.20) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(232,54,156,0.16) 0%, transparent 55%);
  z-index: 0;
  pointer-events: none;
}
.cta > * { position: relative; z-index: 1; }
.cta .display-sm { margin-bottom: var(--space-4); }
.cta .lead { color: var(--color-text-muted); margin-inline: auto; margin-bottom: var(--space-7); }

/* ─────────────────────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────────────────────── */
.site-footer {
  padding-block: var(--space-9) var(--space-6);
  background: var(--color-bg-soft);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-divider);
}
.site-footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: var(--space-8);
  padding-bottom: var(--space-7);
  margin-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-divider);
}
@media (max-width: 880px) { .site-footer__main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .site-footer__main { grid-template-columns: 1fr; gap: var(--space-7); } }

.site-footer__brand-mark {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 1.25rem;
  letter-spacing: var(--tracking-tightest);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.site-footer__logo {
  height: 28px;
  width: auto;
  margin-bottom: var(--space-4);
}
.site-footer__about { line-height: var(--leading-snug); max-width: 32ch; }
.site-footer__about a { color: var(--color-text); text-decoration: underline; text-underline-offset: 3px; }

.site-footer__heading {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 0.75rem;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.site-footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-2); }
.site-footer__list a { color: var(--color-text-muted); transition: color var(--dur-1) var(--ease-out); }
.site-footer__list a:hover { color: var(--color-text); }

.site-footer__address { font-style: normal; line-height: var(--leading-snug); margin-bottom: var(--space-3); }
.site-footer__ein { display: block; margin-top: var(--space-2); font-size: 0.75rem; color: var(--color-text-subtle); }
.site-footer__email { display: block; margin-bottom: var(--space-3); color: var(--color-accent); }

.site-footer__legal { display: flex; gap: var(--space-4); flex-wrap: wrap; font-size: 0.8125rem; }
.site-footer__legal a { color: var(--color-text-muted); transition: color var(--dur-1); }
.site-footer__legal a:hover { color: var(--color-text); }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: 0.8125rem;
  color: var(--color-text-subtle);
}
.site-footer__bottom a { color: inherit; text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color var(--dur-1); }
.site-footer__bottom a:hover { text-decoration-color: currentColor; }

/* ─────────────────────────────────────────────────────────────
   Contact page — hero + form
   ───────────────────────────────────────────────────────────── */
.contact-hero {
  padding-block: clamp(60px, 10vw, 120px) clamp(20px, 3vw, 40px);
  text-align: center;
}
.contact-hero__title { margin-bottom: var(--space-4); }
.contact-hero__sub {
  margin: 0 auto;
  max-width: 580px;
  color: var(--color-text-muted);
}

.contact-form-section { padding-top: var(--space-7); padding-bottom: var(--space-10); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
@media (max-width: 640px) {
  .contact-form__row { grid-template-columns: 1fr; }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  color: var(--color-text);
}
.form-label__hint {
  color: var(--color-text-muted);
  font-weight: 400;
  font-size: 0.8125rem;
}
.form-input {
  appearance: none;
  -webkit-appearance: none;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-text);
  transition: border-color var(--dur-1) var(--ease-out),
              background-color var(--dur-1) var(--ease-out);
  width: 100%;
}
.form-input::placeholder { color: var(--color-text-subtle); }
.form-input:hover { border-color: rgba(255, 255, 255, 0.18); }
.form-input:focus {
  outline: none;
  border-color: var(--color-text);
  background: rgba(255, 255, 255, 0.02);
}
.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: var(--leading-snug);
}
/* Custom select arrow on dark theme */
select.form-input {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a1a1a6'><path d='M7 10l5 5 5-5H7z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 42px;
}

.contact-form__submit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  margin-top: var(--space-3);
}
.contact-form__note {
  color: var(--color-text-subtle);
  font-size: 0.8125rem;
  line-height: var(--leading-snug);
  max-width: 420px;
}

/* Inline status (validation errors, network errors) */
.contact-form__status {
  margin: var(--space-3) 0 0;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: var(--leading-snug);
  max-width: 480px;
}
.contact-form__status.is-error {
  background: rgba(232, 76, 76, 0.08);
  border-color: rgba(232, 76, 76, 0.28);
  color: #ff9d9d;
}

/* Success state — replaces the form after a successful submit */
.contact-form__success {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-2xl);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-divider);
}
.contact-form__success h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 1.5rem;
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.contact-form__success p {
  color: var(--color-text-muted);
  line-height: var(--leading-snug);
  max-width: 480px;
  margin: 0 auto;
  font-size: 0.9375rem;
}

/* ─────────────────────────────────────────────────────────────
   AI honesty note
   ───────────────────────────────────────────────────────────── */
.ai-note {
  margin-top: var(--space-7);
  padding: var(--space-5) var(--space-6);
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: var(--leading-snug);
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.ai-note strong { color: var(--color-text); }
.ai-note a { color: var(--color-text); text-decoration: underline; }
