/* ==========================================================
   NOLO DESIGN — Dutch grid modernism
   Palette:
   --paper   #F2F2EE  koel papier
   --ink     #0B0B0F  inkt
   --blue    #1D2BE0  Klein-blauw (merk-accent)
   --blue-d  #141FA6  donker blauw (hover)
   --grey    #6A6A70  secundaire tekst
   Type: Archivo (variable width/weight) + Space Mono (labels)
   ========================================================== */

:root {
  --paper: #F2F2EE;
  --paper-2: #EAEAE4;
  --ink: #0B0B0F;
  --blue: #1D2BE0;
  --blue-d: #141FA6;
  --grey: #6A6A70;
  --line: rgba(11, 11, 15, .14);
  --line-light: rgba(242, 242, 238, .16);
  --radius: 2px;
  --gutter: clamp(20px, 5vw, 72px);
  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;
  --ease: cubic-bezier(.22, .8, .3, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
  overflow-x: clip;
  font-family: var(--display);
  font-variation-settings: "wdth" 100;
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--blue); color: #fff; }

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

/* ---------- typographic utilities ---------- */

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
}
.eyebrow--light { color: #8A93FF; }

h2 {
  font-weight: 800;
  font-variation-settings: "wdth" 112;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
h2 em {
  font-style: normal;
  color: var(--blue);
}

.section-head {
  padding: clamp(80px, 11vw, 140px) var(--gutter) clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line);
}
.section-head--dark { border-top-color: var(--line-light); }
.section-head--dark h2 em { color: #6D79FF; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.btn--primary:hover { background: var(--blue-d); border-color: var(--blue-d); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--full { width: 100%; text-align: center; }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: transform .35s var(--ease);
}
.nav--hidden { transform: translateY(-100%); }
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px var(--gutter);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
}
.nav__logo-mark {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  font-variation-settings: "wdth" 125;
  font-size: 18px;
}
.nav__logo-word {
  font-weight: 800;
  font-variation-settings: "wdth" 112;
  letter-spacing: -.01em;
  font-size: 17px;
  text-transform: uppercase;
}
.nav__logo-word em { font-style: normal; font-weight: 400; text-transform: none; }
.nav__links { display: flex; gap: 26px; }
.nav__links a {
  font-family: var(--mono);
  font-size: 13px;
  text-decoration: none;
  color: var(--ink);
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }
.btn--nav { padding: 11px 20px; background: var(--ink); border-color: var(--ink); color: var(--paper); }
.btn--nav:hover { background: var(--blue); border-color: var(--blue); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span { width: 26px; height: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s; }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.nav__mobile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px var(--gutter) 24px;
  border-top: 1px solid var(--line);
}
.nav__mobile[hidden] { display: none; }
@media (min-width: 861px) {
  .nav__mobile { display: none !important; }
}
.nav__mobile a {
  font-family: var(--mono);
  font-size: 16px;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.nav__mobile .btn { margin-top: 16px; border-bottom: 1px solid var(--blue); text-align: center; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 120px;
  overflow: hidden;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  padding: 0 var(--gutter);
}
.hero__title {
  font-weight: 900;
  font-variation-settings: "wdth" 118;
  text-transform: uppercase;
  letter-spacing: -.025em;
  line-height: .94;
  font-size: clamp(40px, 7.5vw, 120px);
}
.hero__line { display: block; }
.hero__line--block span {
  display: inline-block;
  background: var(--blue);
  color: var(--paper);
  padding: 0 .14em;
  margin-left: -.14em;
}
.hero__line--sub {
  font-weight: 300;
  font-variation-settings: "wdth" 88;
  font-size: .5em;
  letter-spacing: -.01em;
  margin-top: .18em;
  color: var(--grey);
  text-transform: none;
}
.hero__rotator {
  color: var(--ink);
  border-bottom: 3px solid var(--blue);
  display: inline-block;
  min-width: 5ch;
}
.hero__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin: clamp(32px, 5vw, 56px) 0;
}
.hero__lead {
  max-width: 480px;
  color: var(--grey);
  font-size: 18px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }


/* ---------- klantlogo's ---------- */

.logos {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: 26px 0 30px;
}
.logos__label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #7C86D6;
  padding: 0 var(--gutter);
  margin-bottom: 18px;
}
.logos__viewport { overflow: hidden; }
.logos__track {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  width: max-content;
  animation: ticker 45s linear infinite;
}
.logos__item { flex: none; display: grid; place-items: center; }
.logos__item img {
  height: 36px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .85;
}
.logos__wordmark {
  font-weight: 800;
  font-variation-settings: "wdth" 112;
  font-size: 17px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: rgba(242, 242, 238, .85);
  white-space: nowrap;
}
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .logos__viewport { overflow-x: auto; }
  .logos__track { animation: none; padding: 0 var(--gutter); }
}

/* ---------- werk ---------- */

.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.work__recent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.mini {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-decoration: none;
  border-left: 1px solid var(--line);
  transition: background .3s;
}
.mini:first-child { border-left: 0; }
.mini:hover { background: #fff; }
.mini__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: clamp(16px, 2.4vw, 28px);
  margin-bottom: 0;
}
.mini__visual span {
  font-weight: 900;
  font-variation-settings: "wdth" 122;
  text-transform: uppercase;
  letter-spacing: -.02em;
  font-size: clamp(24px, 2.4vw, 34px);
  transition: transform .5s var(--ease);
  text-align: center;
  padding: 0 10px;
}
.mini__meta { padding: clamp(14px, 1.8vw, 20px); }
.mini__meta h3 {
  font-weight: 800;
  font-variation-settings: "wdth" 110;
  font-size: 18px;
  letter-spacing: -.01em;
  margin: 4px 0 6px;
}
.work__all {
  display: none;
  padding: 28px var(--gutter) 0;
  text-align: center;
}

.work__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.case {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: background .3s;
}
.case:nth-child(odd) { border-right: 1px solid var(--line); }
.case:hover { background: #fff; }
.case__visual {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: clamp(20px, 3vw, 36px);
  margin-bottom: 0;
}
.case__visual span {
  font-weight: 900;
  font-variation-settings: "wdth" 122;
  text-transform: uppercase;
  letter-spacing: -.02em;
  font-size: clamp(30px, 3.6vw, 52px);
  transition: transform .5s var(--ease);
}
.case__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 1;
}
.case__visual--a { background: var(--ink); color: var(--paper); }
.case__visual--b { background: #D9CFC0; color: var(--ink); }
.case__visual--c { background: var(--blue); color: var(--paper); }
.case__visual--d { background: #1E5F5B; color: var(--paper); }
.case__visual--e { background: #DFD8E8; color: var(--ink); }
.case__visual--f { background: #26262B; color: var(--paper); }
.case__visual--g { background: #B9AE9A; color: var(--ink); }
.case__visual--h { background: #4A3B33; color: var(--paper); }
.case__visual--j { background: #10365C; color: var(--paper); }
.case__visual--k { background: #5C1F2E; color: var(--paper); }

/* Compact raster op de projectenpagina */
.work__list--compact { grid-template-columns: repeat(3, 1fr); }
.work__list--compact .case { border-right: 0; border-left: 1px solid var(--line); }
.work__list--compact .case:nth-child(3n + 1) { border-left: 0; }
.work__list--compact .case__visual {
  aspect-ratio: 16 / 10;
  margin: 14px;
  margin-bottom: 0;
}
.work__list--compact .case__visual span { font-size: clamp(18px, 1.8vw, 24px); }
.work__list--compact .case__meta { padding: 14px; }
.work__list--compact .case__tag { font-size: 11px; margin-bottom: 4px; }
.work__list--compact .case__meta h3 { font-size: 17px; margin-bottom: 2px; }
.work__list--compact .case__desc { display: none; }
.work__list--compact .case__result { margin-top: 6px; font-size: 11px; }
.work__list--compact .case--cta .case__desc { display: block; font-size: 14px; }
@media (min-width: 1081px) {
  .work__list--compact .case--cta { grid-column: span 2; }
}
.case--cta { background: var(--blue); }
.case--cta:hover { background: var(--blue-d); }
.case__meta--cta { display: flex; flex-direction: column; justify-content: center; min-height: 100%; }
.case--cta .case__tag { color: rgba(255,255,255,.7); }
.case--cta h3, .case--cta .case__desc { color: #fff; }
.case--cta .case__desc { opacity: .85; }
.case--cta .case__result { color: #fff; }
.case__meta { padding: clamp(20px, 3vw, 36px); }
.case__tag {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--grey);
  margin-bottom: 8px;
}
.case__meta h3 {
  font-weight: 800;
  font-variation-settings: "wdth" 110;
  font-size: 24px;
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.case__desc { color: var(--grey); max-width: 52ch; }
.case__result {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}
.work__more {
  padding: 26px var(--gutter);
  font-family: var(--mono);
  font-size: 13px;
  color: var(--grey);
}

/* ---------- diensten (dark band) ---------- */

.services {
  background: var(--ink);
  color: var(--paper);
}
.services__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}
.service {
  padding: clamp(32px, 4vw, 56px) var(--gutter);
  border-left: 1px solid var(--line-light);
}
.service:first-child { border-left: 0; }
.service__index {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #6D79FF;
  margin-bottom: 20px;
}
.service h3 {
  font-weight: 800;
  font-variation-settings: "wdth" 110;
  font-size: 26px;
  letter-spacing: -.01em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.service p { color: #A7A7AE; }
.service ul {
  margin-top: 22px;
  list-style: none;
}
.service li {
  padding: 10px 0 10px 26px;
  border-top: 1px solid var(--line-light);
  position: relative;
  font-size: 15px;
}
.service li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #6D79FF;
}

/* ---------- maatwerk software ---------- */

.custom__case {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  border-top: 1px solid var(--line);
  padding: clamp(40px, 6vw, 80px) var(--gutter);
  background: #fff;
}
.custom__copy h3 {
  font-weight: 800;
  font-variation-settings: "wdth" 110;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -.015em;
  margin: 12px 0 16px;
}
.custom__copy > p { color: var(--grey); max-width: 58ch; }
.custom__features {
  list-style: none;
  margin: 26px 0 30px;
}
.custom__features li {
  padding: 11px 0 11px 28px;
  border-top: 1px solid var(--line);
  position: relative;
  font-size: 15px;
}
.custom__features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue);
}
.custom__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.custom__phone-wrap { display: grid; place-items: center; }
.custom__app-shot {
  width: min(320px, 78vw);
  height: auto;
  border-radius: 44px;
  box-shadow: 0 24px 48px rgba(11, 11, 15, .28);
  transform: rotate(2deg);
}

.custom__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.custom__item {
  padding: clamp(26px, 3.4vw, 42px) var(--gutter);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.custom__item:nth-child(3n + 1) { border-left: 0; }
.custom__item h4 {
  font-weight: 800;
  font-variation-settings: "wdth" 110;
  font-size: 18px;
  margin-bottom: 8px;
}
.custom__item p { color: var(--grey); font-size: 15px; }

/* ---------- projectenpagina ---------- */

.page-hero {
  padding: clamp(150px, 18vw, 220px) var(--gutter) clamp(48px, 6vw, 72px);
}
.page-hero h1 {
  font-weight: 900;
  font-variation-settings: "wdth" 116;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: .96;
  font-size: clamp(40px, 7.4vw, 96px);
}
.page-hero h1 em { font-style: normal; color: var(--blue); }
.page-hero__lead {
  margin-top: 24px;
  max-width: 56ch;
  color: var(--grey);
  font-size: 18px;
}
.contact__inner--single {
  grid-template-columns: 1fr;
  text-align: left;
}
.contact__cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn--light {
  background: #fff;
  border-color: #fff;
  color: var(--blue);
}
.btn--light:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--ghost-light {
  background: transparent;
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.btn--ghost-light:hover { background: #fff; color: var(--blue); border-color: #fff; }

/* ---------- werkwijze ---------- */

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
}
.step {
  padding: clamp(28px, 4vw, 48px) var(--gutter);
  border-left: 1px solid var(--line);
}
.step:first-child { border-left: 0; }
.step__num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}
.step h3 {
  font-weight: 800;
  font-variation-settings: "wdth" 110;
  font-size: 22px;
  margin: 14px 0 10px;
}
.step p { color: var(--grey); font-size: 15px; }

/* ---------- tarieven ---------- */

.pricing__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.plan {
  padding: clamp(32px, 4vw, 52px) var(--gutter);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.plan:first-child { border-left: 0; }
.plan--featured {
  background: #fff;
  position: relative;
}
.plan__badge {
  position: absolute;
  top: 0; left: 0;
  background: var(--blue);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 14px;
}
.plan h3 {
  font-weight: 800;
  font-variation-settings: "wdth" 112;
  font-size: 22px;
  text-transform: uppercase;
}
.plan__price {
  font-weight: 900;
  font-variation-settings: "wdth" 118;
  font-size: clamp(34px, 3.6vw, 46px);
  letter-spacing: -.02em;
  margin: 10px 0 6px;
}
.plan__price span {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 13px;
  color: var(--grey);
  letter-spacing: 0;
  vertical-align: middle;
  margin-right: 6px;
}
.plan__desc { color: var(--grey); font-size: 15px; }
.plan ul {
  list-style: none;
  margin: 24px 0 28px;
  flex: 1;
}
.plan li {
  padding: 10px 0 10px 26px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  position: relative;
}
.plan li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue);
}
.pricing__note {
  padding: 22px var(--gutter) 0;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--grey);
}

/* ---------- reviews (dark band) ---------- */

.reviews { background: var(--ink); color: var(--paper); }
.reviews__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}
.review {
  padding: clamp(32px, 4vw, 52px) var(--gutter);
  border-left: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
}
.review:first-child { border-left: 0; }
.review__stars { color: #6D79FF; letter-spacing: 4px; margin-bottom: 18px; }
.review p { font-size: 17px; line-height: 1.6; }
.review footer {
  margin-top: auto;
  padding-top: 24px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #A7A7AE;
}

/* ---------- faq ---------- */

.faq__list {
  border-top: 1px solid var(--line);
  padding: 0 var(--gutter) clamp(60px, 8vw, 100px);
  max-width: 900px;
}
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  font-weight: 700;
  font-variation-settings: "wdth" 106;
  font-size: 19px;
  padding: 24px 44px 24px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 300;
  font-size: 30px;
  color: var(--blue);
  transition: transform .3s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 0 26px; color: var(--grey); max-width: 68ch; }

/* ---------- contact ---------- */

.contact {
  background: var(--blue);
  color: #fff;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  padding: clamp(80px, 10vw, 130px) var(--gutter);
}
.contact h2 { color: #fff; }
.contact h2 em { color: var(--ink); }
.contact__lead {
  margin-top: 24px;
  max-width: 46ch;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}
.contact__direct {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__direct a {
  font-family: var(--mono);
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.4);
  width: fit-content;
  padding-bottom: 2px;
}
.contact__direct a:hover { border-color: #fff; }

.contact__form {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(28px, 3.4vw, 44px);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
  color: var(--grey);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--display);
  font-size: 16px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color .2s;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 0;
  border-color: var(--blue);
}
.contact__small {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--grey);
  text-align: center;
}
.form-success,
.form-error {
  padding: 16px;
  font-size: 15px;
  margin-top: 14px;
}
.form-success {
  background: #E7F6EC;
  border: 1px solid #2E9E5B;
  color: #19613A;
}
.form-error {
  background: #FBEAEA;
  border: 1px solid #C24343;
  color: #7A1F1F;
}

/* ---------- footer ---------- */

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(56px, 7vw, 90px) var(--gutter) 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-light);
}
.footer__logo {
  font-weight: 800;
  font-variation-settings: "wdth" 112;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer__logo em { font-style: normal; font-weight: 400; text-transform: none; }
.footer__brand p:last-child { color: #A7A7AE; font-size: 15px; }
.footer__col h4 {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #6D79FF;
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  color: #D8D8DC;
  text-decoration: none;
  padding: 5px 0;
  font-size: 15px;
}
.footer__col a:hover { color: #fff; }
.footer__legal {
  padding-top: 26px;
  font-family: var(--mono);
  font-size: 12px;
  color: #7C7C82;
}

/* ---------- whatsapp widget ---------- */

.wa-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(11, 11, 15, .25);
  transition: background .25s;
}
.wa-widget:hover { background: #1DA851; }
.wa-widget:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
@media (max-width: 860px) {
  .wa-widget { bottom: 84px; right: 16px; width: 54px; height: 54px; }
}

/* ---------- sticky mobile cta ---------- */

.sticky-cta {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 40;
  display: none;
  text-align: center;
  background: var(--blue);
  color: #fff;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(29, 43, 224, .35);
  transform: translateY(120%);
  transition: transform .4s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }

/* ---------- reveal animaties ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .services__list,
  .reviews__list,
  .pricing__list { grid-template-columns: 1fr; }
  .service, .review, .plan { border-left: 0; border-top: 1px solid var(--line-light); }
  .plan { border-top-color: var(--line); }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(odd) { border-left: 0; }
  .step { border-top: 1px solid var(--line); }
  .work__list--compact { grid-template-columns: 1fr 1fr; }
  .work__list--compact .case:nth-child(3n + 1) { border-left: 1px solid var(--line); }
  .work__list--compact .case:nth-child(2n + 1) { border-left: 0; }
}

@media (max-width: 860px) {
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .work__list { grid-template-columns: 1fr; }
  .case:nth-child(odd) { border-right: 0; }
  .work__list--compact { grid-template-columns: 1fr 1fr; }
  .work__list--compact .case { border-top: 1px solid var(--line); }
  .work__list--compact .case__visual { margin: 10px; margin-bottom: 0; }
  .work__list--compact .case__meta { padding: 10px; }
  .work__list--compact .case__meta h3 { font-size: 14px; }
  .work__list--compact .case__tag { font-size: 9px; letter-spacing: .06em; }
  .work__list--compact .case__result { font-size: 10px; }
  .work__list--compact .case--cta { grid-column: span 2; }
  .mini__visual { aspect-ratio: 16 / 10; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .sticky-cta { display: block; }
  .work__recent { grid-template-columns: 1fr; }
  .mini { border-left: 0; border-top: 1px solid var(--line); }
  .mini:first-child { border-top: 0; }
  .section-head--split .btn { display: none; }
  .work__all { display: block; }
  .custom__case { grid-template-columns: 1fr; }
  .custom__phone-wrap { order: -1; }
  .custom__app-shot { transform: rotate(0deg); }
  .custom__grid { grid-template-columns: 1fr 1fr; }
  .custom__item:nth-child(3n + 1) { border-left: 1px solid var(--line); }
  .custom__item:nth-child(odd) { border-left: 0; }
}

@media (max-width: 560px) {
  .process__steps { grid-template-columns: 1fr; }
  .step { border-left: 0; }
  .hero__bottom { margin-bottom: 40px; }
  .footer__inner { grid-template-columns: 1fr; }
  .custom__grid { grid-template-columns: 1fr; }
  .custom__item { border-left: 0 !important; }
}
