
:root {
  --ds-primary: #0aff8a;
  --ds-secondary: #6c3bff;
  --ds-accent: #ff3b6c;
  --ds-bg: #080b12;
  --ds-surface: #0f1420;
  --ds-text: #f0f2f8;
  --ds-text-dim: #6b7494;
  --ds-border: rgba(255,255,255,0.07);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  background: var(--ds-bg);
  color: var(--ds-text);
  overflow-x: hidden;
  cursor: auto;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--ds-primary); color: #000; }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--ds-bg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity .9s ease, visibility .9s;
}
#loader.out { opacity: 0; visibility: hidden; pointer-events: none; }
.l-word {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5rem, 15vw, 14rem);
  letter-spacing: -.02em;
  line-height: 1;
  overflow: hidden;
}
.l-word span {
  display: inline-block;
  transform: translateY(110%);
  animation: lUp .8s cubic-bezier(.22,1,.36,1) forwards;
}
.l-word span:nth-child(1) { animation-delay: .0s; }
.l-word span:nth-child(2) { animation-delay: .05s; }
.l-word span:nth-child(3) { animation-delay: .10s; }
.l-word span:nth-child(4) { animation-delay: .15s; }
.l-word span:nth-child(5) { animation-delay: .20s; }
.l-word span:nth-child(6) { animation-delay: .25s; }
.l-word span:nth-child(7) { animation-delay: .30s; }
@keyframes lUp { to { transform: translateY(0); } }
.l-line {
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--ds-primary), var(--ds-secondary));
  margin-top: 1.5rem;
  animation: lLine 1.2s .5s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes lLine { to { width: min(400px, 80vw); } }
.l-pct {
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--ds-text-dim); margin-top: .75rem;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 1.5rem clamp(1.5rem,4vw,4rem);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}
nav.s {
  background: rgba(8,11,18,.9);
  backdrop-filter: blur(24px);
  border-color: var(--ds-border);
}
.nav-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem; letter-spacing: .1em;
  display: flex; align-items: center; gap: 8px;
}
.nav-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ds-primary);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100%{box-shadow:0 0 0 0 rgba(10,255,138,.6)}
  50%{box-shadow:0 0 0 8px rgba(10,255,138,0)}
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: .75rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ds-text-dim);
  transition: color .3s; position: relative;
}
.nav-links a::after {
  content:""; position:absolute; bottom:-3px; left:0; right:0;
  height:1px; background: var(--ds-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.nav-links a:hover { color: var(--ds-text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-size: .75rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; padding: 9px 22px;
  border: 1px solid var(--ds-primary); color: var(--ds-primary);
  background: transparent; cursor: pointer;
  transition: background .3s, color .3s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.nav-cta:hover { background: var(--ds-primary); color: #000; }

/* ── HERO ── */
.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(12rem, 28vw, 32rem);
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

.orb {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  filter: blur(80px);
}
.orb-1 {
  width: 500px; height: 500px;
  background: rgba(108,59,255,.18);
  top: -100px; right: -100px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: rgba(10,255,138,.1);
  bottom: -100px; left: -50px;
}
.orb-3 {
  width: 300px; height: 300px;
  background: rgba(255,59,108,.08);
  top: 40%; left: 45%;
}

.hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(6rem,12vw,10rem) clamp(1.5rem,5vw,5rem) 4rem;
  gap: 0;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .7rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ds-primary);
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeSlide .8s 1.5s ease forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ""; display: block; width: 30px; height: 1px;
  background: var(--ds-primary); opacity: .5;
}

.hero-h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5rem, 14vw, 16rem);
  letter-spacing: -.02em; line-height: .88;
  opacity: 0; animation: fadeSlide 1s 1.7s cubic-bezier(.22,1,.36,1) forwards;
}
.hero-h1 .line-2 {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--ds-text);
  opacity: .25;
}
.hero-h1 .line-3 {
  display: block;
  background: linear-gradient(135deg, var(--ds-primary), var(--ds-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  max-width: 50ch; margin: 2.5rem auto 0;
  color: var(--ds-text-dim); font-size: 1rem; line-height: 1.8;
  opacity: 0; animation: fadeSlide .8s 2s ease forwards;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center; margin-top: 3rem;
  opacity: 0; animation: fadeSlide .8s 2.2s ease forwards;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: var(--ds-primary); color: #000;
  font-size: .82rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; cursor: pointer;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: transform .3s, box-shadow .3s, background .3s;
  border: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(10,255,138,.35);
  background: #fff;
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px;
  background: transparent; color: var(--ds-text);
  font-size: .82rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; cursor: pointer;
  border: 1px solid var(--ds-border);
  transition: border-color .3s, transform .3s, background .3s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.25);
  transform: translateY(-3px);
  background: rgba(255,255,255,.03);
}

.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0; animation: fadeIn .8s 2.8s ease forwards;
}
.hero-scroll-hint span {
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ds-text-dim);
}
.scroll-bar {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--ds-primary), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%{opacity:0;transform:scaleY(0);transform-origin:top}
  40%{opacity:1;transform:scaleY(1);transform-origin:top}
  60%{opacity:1;transform:scaleY(1);transform-origin:bottom}
  100%{opacity:0;transform:scaleY(0);transform-origin:bottom}
}

@keyframes fadeSlide {
  from{opacity:0;transform:translateY(24px)}
  to{opacity:1;transform:none}
}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ── WORK ── */
.work-section {
  padding: clamp(5rem,9vw,10rem) clamp(1.5rem,5vw,5rem);
  position: relative;
}

.sec-label {
  font-size: .65rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ds-primary); margin-bottom: 1rem;
}

.work-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-bottom: 5rem; flex-wrap: wrap;
}
.work-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: -.01em; line-height: .88;
}
.work-title .ghost {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.18);
}
.work-side { max-width: 36ch; color: var(--ds-text-dim); font-size: .9rem; line-height: 1.8; }

/* MOSAIC LAYOUT */
.work-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 3px;
}
.w1 { grid-column: 1/6; grid-row: 1/3; }
.w2 { grid-column: 6/10; grid-row: 1/2; }
.w3 { grid-column: 10/13; grid-row: 1/2; }
.w4 { grid-column: 6/9; grid-row: 2/3; }
.w5 { grid-column: 9/13; grid-row: 2/3; }

.wcard {
  position: relative; overflow: hidden;
  background: var(--ds-surface); cursor: pointer;
  outline: 1px solid rgba(255,255,255,0.12);
}
.wcard img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.8) brightness(.75);
  transition: transform 1.4s cubic-bezier(.22,1,.36,1), filter .6s;
}
.wcard:hover img {
  transform: scale(1.06);
  filter: saturate(1) brightness(.9);
}
.wcard-over {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,11,18,.9) 0%, transparent 50%);
  pointer-events: none;
}
.wcard-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem;
  transform: translateY(4px);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.wcard:hover .wcard-info { transform: none; }
.wcard-cat {
  font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(240,242,248,.5); margin-bottom: .3rem;
}
.wcard-name {
  font-family: "Playfair Display", serif;
  font-size: clamp(.9rem, 1.4vw, 1.3rem);
  font-weight: 900; line-height: 1.2; color: var(--ds-text);
}
.wcard-arrow {
  position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; color: var(--ds-text);
  opacity: 0; transform: scale(.7) rotate(-45deg);
  transition: opacity .3s, transform .4s cubic-bezier(.22,1,.36,1);
}
.wcard:hover .wcard-arrow { opacity: 1; transform: scale(1) rotate(0deg); }

/* NUMBERS STRIP */
.nums-strip {
  display: grid; grid-template-columns: repeat(3,1fr);
  margin-top: 3px; border: 1px solid var(--ds-border);
}
.num-block {
  padding: clamp(2rem,4vw,3rem) clamp(1.5rem,3vw,2.5rem);
  border-right: 1px solid var(--ds-border);
  text-align: center;
  transition: background .3s;
}
.num-block:last-child { border-right: none; }
.num-block:hover { background: rgba(255,255,255,.02); }
.num-big {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem,5vw,5rem);
  letter-spacing: -.03em; line-height: 1;
  background: linear-gradient(135deg, var(--ds-primary), var(--ds-secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.num-label {
  font-size: .65rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ds-text-dim); margin-top: .5rem; line-height: 1.6;
}

/* ── ABOUT ── */
.about-section {
  padding: clamp(5rem,9vw,10rem) 0;
  background: var(--ds-surface);
  border-top: 1px solid var(--ds-border);
  border-bottom: 1px solid var(--ds-border);
  overflow: hidden;
  position: relative;
}
.about-bg-num {
  position: absolute; right: -2rem; top: 50%;
  transform: translateY(-50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: 40vw; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.03);
  pointer-events: none; user-select: none;
}

.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  padding: 0 clamp(1.5rem,5vw,5rem);
  position: relative; z-index: 1;
}

.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  filter: saturate(.9) brightness(.85);
}
.about-float {
  position: absolute; bottom: -2.5rem; right: -2.5rem;
  width: 55%; aspect-ratio: 1;
  object-fit: cover;
  border: 5px solid var(--ds-bg);
  filter: brightness(.9);
}
.about-badge {
  position: absolute; top: 2rem; left: -1.5rem;
  background: var(--ds-primary); color: #000;
  padding: 1.25rem 1.75rem; z-index: 2;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}
.about-badge-n {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem; letter-spacing: -.04em; line-height: 1;
}
.about-badge-t { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; opacity: .7; margin-top: 3px; }

.about-h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem,4vw,4rem);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -.03em; margin-bottom: 1.5rem;
  text-align: center;
}
.about-h2 em { font-style: italic; color: var(--ds-primary); }
.about-body { color: var(--ds-text-dim); font-size: .9rem; line-height: 1.9; max-width: 48ch; text-align: center; }
.about-body p + p { margin-top: 1rem; }

.about-pills {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem;
}
.pill {
  font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 14px; border: 1px solid var(--ds-border);
  color: var(--ds-text-dim); transition: border-color .3s, color .3s;
}
.pill:hover { border-color: var(--ds-primary); color: var(--ds-primary); }

/* ── PROCESS ── */
.process-section {
  padding: clamp(5rem,9vw,10rem) clamp(1.5rem,5vw,5rem);
}
.process-head { margin-bottom: 4rem; }
.process-h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem,6vw,6rem);
  letter-spacing: -.01em; line-height: .88;
}
.process-h2 .ghost { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.18); }

.steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--ds-border); border: 1px solid var(--ds-border);
}
.step-card {
  background: var(--ds-bg); padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: background .4s;
  position: relative; overflow: hidden;
}
.step-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--ds-primary), var(--ds-secondary));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.step-card:hover { background: var(--ds-surface); }
.step-card:hover::before { transform: scaleX(1); }
.step-n {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem; letter-spacing: -.05em; line-height: 1;
  color: rgba(255,255,255,.05);
}
.step-title {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem; font-weight: 900; letter-spacing: -.02em;
}
.step-body { font-size: .82rem; color: var(--ds-text-dim); line-height: 1.75; flex: 1; }
.step-chip {
  display: inline-block; font-size: .6rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ds-primary);
  padding: 5px 10px; border: 1px solid rgba(10,255,138,.2);
  align-self: flex-start;
}

/* ── SERVICES ── */
.services-section {
  background: var(--ds-surface);
  border-top: 1px solid var(--ds-border);
  padding: clamp(5rem,9vw,10rem) clamp(1.5rem,5vw,5rem);
}
.services-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-bottom: 4rem; flex-wrap: wrap;
}
.services-h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem,6vw,6rem); letter-spacing: -.01em; line-height: .88;
}
.services-h2 .grd {
  background: linear-gradient(135deg, var(--ds-primary), var(--ds-secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.services-sub { max-width: 38ch; color: var(--ds-text-dim); font-size: .88rem; line-height: 1.8; }

.svc-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1px; background: var(--ds-border); border: 1px solid var(--ds-border);
}
.svc-card {
  background: var(--ds-bg); padding: 3rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: background .4s; cursor: default;
  position: relative; overflow: hidden;
}
.svc-card:hover { background: #0d1222; }
.svc-card::after {
  content:""; position:absolute; bottom:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, var(--ds-secondary), transparent);
  opacity:0; transition: opacity .4s;
}
.svc-card:hover::after { opacity:1; }
.svc-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--ds-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  transition: border-color .3s, transform .3s;
}
.svc-card:hover .svc-icon { border-color: var(--ds-primary); transform: rotate(12deg); }
.svc-name {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem; font-weight: 900; letter-spacing: -.02em;
}
.svc-desc { font-size: .85rem; color: var(--ds-text-dim); line-height: 1.75; flex: 1; }
.svc-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .5rem; }
.s-tag {
  font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border: 1px solid var(--ds-border); color: var(--ds-text-dim);
}

/* ── TESTIMONIALS ── */
.testi-section {
  padding: clamp(5rem,9vw,10rem) clamp(1.5rem,5vw,5rem);
}
.testi-h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem,6vw,6rem); letter-spacing: -.01em; line-height: .88;
  margin-bottom: 4rem;
}
.testi-h2 .dim { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.18); }

.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--ds-border); border: 1px solid var(--ds-border); }
.t-card {
  background: var(--ds-bg); padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: background .3s;
}
.t-card:hover { background: var(--ds-surface); }
.t-mark {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem; line-height: .7;
  background: linear-gradient(135deg, var(--ds-primary), var(--ds-secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.t-text { font-size: .9rem; color: var(--ds-text); line-height: 1.85; flex: 1; font-style: italic; }
.t-foot {
  font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ds-text-dim); padding-top: 1.25rem;
  border-top: 1px solid var(--ds-border);
}

/* ── CONTACT ── */
.contact-section {
  background: var(--ds-surface);
  border-top: 1px solid var(--ds-border);
  padding: clamp(5rem,9vw,10rem) clamp(1.5rem,5vw,5rem);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; overflow: hidden;
}
.contact-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(108,59,255,.08) 0%, transparent 70%);
}
.contact-h2 {
  position: relative; z-index: 1;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem,9vw,10rem); letter-spacing: -.03em; line-height: .85;
  margin-bottom: 1.5rem; max-width: 16ch;
}
.contact-h2 .grd {
  background: linear-gradient(135deg, var(--ds-primary), var(--ds-secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.contact-h2 .ghost { color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.15); }
.contact-sub {
  position: relative; z-index: 1;
  max-width: 50ch; color: var(--ds-text-dim); font-size: .95rem;
  line-height: 1.8; margin-bottom: 3.5rem;
}
.contact-form {
  position: relative; z-index: 1;
  width: 100%; max-width: 580px;
  background: var(--ds-bg); border: 1px solid var(--ds-border);
  padding: 3rem;
}
.form-grid { display: grid; gap: 1.25rem; }
.form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ds-text-dim); }
.field input, .field textarea {
  background: rgba(255,255,255,.03); border: 1px solid var(--ds-border);
  color: var(--ds-text); font: 400 .875rem/1.5 "Inter",sans-serif;
  padding: 12px 14px; outline: none;
  transition: border-color .3s, background .3s; resize: none;
}
.field input:focus, .field textarea:focus {
  border-color: var(--ds-primary);
  background: rgba(10,255,138,.03);
}
.field textarea { min-height: 100px; }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: .5rem; }
.form-note { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ds-text-dim); }

.contact-meta {
  position: relative; z-index: 1;
  display: flex; gap: 3rem; justify-content: center;
  flex-wrap: wrap; margin-top: 3rem;
}
.c-meta-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ds-text-dim);
}
.c-meta-item::before { content: ""; display: block; width: 20px; height: 1px; background: var(--ds-primary); }

/* ── FOOTER ── */
footer {
  padding: 2rem clamp(1.5rem,4vw,4rem);
  border-top: 1px solid var(--ds-border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.foot-logo { font-family: "Bebas Neue", sans-serif; font-size: 1.2rem; letter-spacing: .08em; }
.foot-copy { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ds-text-dim); }
.foot-links { display: flex; gap: 1.75rem; list-style: none; }
.foot-links a { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ds-text-dim); transition: color .3s; }
.foot-links a:hover { color: var(--ds-primary); }

/* ── REVEAL ── */
.rv { opacity: 0; transform: translateY(36px); transition: opacity .9s ease, transform .9s cubic-bezier(.22,1,.36,1); }
.rv.on { opacity: 1; transform: none; }
.rv-l { opacity: 0; transform: translateX(-40px); transition: opacity .9s ease, transform .9s cubic-bezier(.22,1,.36,1); }
.rv-l.on { opacity: 1; transform: none; }
.rv-r { opacity: 0; transform: translateX(40px); transition: opacity .9s ease, transform .9s cubic-bezier(.22,1,.36,1); }
.rv-r.on { opacity: 1; transform: none; }
.stgr > * { opacity: 0; transform: translateY(24px); transition: opacity .7s, transform .7s cubic-bezier(.22,1,.36,1); }
.stgr.on > *:nth-child(1){opacity:1;transform:none;transition-delay:.0s}
.stgr.on > *:nth-child(2){opacity:1;transform:none;transition-delay:.08s}
.stgr.on > *:nth-child(3){opacity:1;transform:none;transition-delay:.16s}
.stgr.on > *:nth-child(4){opacity:1;transform:none;transition-delay:.24s}
.stgr.on > *:nth-child(5){opacity:1;transform:none;transition-delay:.32s}
.stgr.on > *:nth-child(6){opacity:1;transform:none;transition-delay:.40s}
.stgr.on > *:nth-child(7){opacity:1;transform:none;transition-delay:.48s}

/* ── RESPONSIVE ── */
@media(max-width:1100px){
  .work-mosaic{ grid-template-columns:1fr 1fr; grid-template-rows:auto; }
  .w1,.w2,.w3,.w4,.w5,.w6,.w7{grid-column:auto;grid-row:auto;}
  .w1{grid-column:1/3;}
  .about-inner{grid-template-columns:1fr;}
  .about-img-wrap{display:none;}
  .steps{grid-template-columns:1fr 1fr;}
  .testi-grid{grid-template-columns:1fr 1fr;}
  .svc-grid{grid-template-columns:1fr;}
}
@media(max-width:768px){
  nav .nav-links{display:none;}
  .work-mosaic{grid-template-columns:1fr; grid-template-rows:auto;}
  .w1,.w2,.w3,.w4,.w5,.w6,.w7{grid-column:auto;grid-row:auto;}
  .nums-strip{grid-template-columns:1fr;}
  .num-block{border-right:none;border-bottom:1px solid var(--ds-border);}
  .num-block:last-child{border-bottom:none;}
  .steps{grid-template-columns:1fr;}
  .testi-grid{grid-template-columns:1fr;}
  .form-2{grid-template-columns:1fr;}
  .contact-form{padding:2rem;}
  footer{flex-direction:column;text-align:center;}
  .foot-links{justify-content:center;}
  .work-head{flex-direction:column;align-items:flex-start;}
  .services-head{flex-direction:column;align-items:flex-start;}
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition-duration:.01ms!important;}
}
