/* ─── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:     #05050f;
  --ink2:    #08081a;
  --surface: rgba(255,255,255,.04);
  --glass:   rgba(255,255,255,.06);
  --border:  rgba(255,255,255,.08);
  --border2: rgba(0,212,255,.25);
  --cyan:    #00d4ff;
  --cyan2:   #00b8e0;
  --purple:  #7c3aed;
  --muted:   rgba(255,255,255,.42);
  --text:    rgba(255,255,255,.88);
  --white:   #ffffff;
  --r:       14px;
  --t:       .22s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ─── LABELS ────────────────────────────────────────────────── */
.label {
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--cyan);
  margin-bottom: 14px; display: block;
}

.section-head { margin-bottom: 64px; }
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  color: var(--white); line-height: 1.1; letter-spacing: -.02em;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cyan); color: var(--ink);
  font-weight: 700; font-size: .9rem; letter-spacing: .01em;
  padding: 13px 26px; border-radius: 10px;
  transition: var(--t);
}
.btn-primary:hover { background: #1adaff; transform: translateY(-1px); box-shadow: 0 8px 30px rgba(0,212,255,.35); }
.btn-primary svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); color: var(--muted);
  font-weight: 600; font-size: .9rem;
  padding: 13px 26px; border-radius: 10px;
  transition: var(--t);
}
.btn-ghost:hover { border-color: var(--border2); color: var(--cyan); }

/* ─── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 200;
  transition: background var(--t), box-shadow var(--t);
}
.nav.scrolled {
  background: rgba(5,5,15,.82);
  backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  height: 86px; display: flex; align-items: center; gap: 48px;
}
.nav__logo img { height: 70px; width: auto; }

.nav__links { display: flex; list-style: none; gap: 4px; flex: 1; }
.nav__links a {
  font-size: .84rem; font-weight: 500; color: var(--muted);
  padding: 6px 12px; border-radius: 7px; transition: var(--t);
}
.nav__links a:hover { color: var(--white); background: var(--surface); }

.nav__right { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.lang-btn {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  color: var(--cyan); border: 1px solid var(--border2);
  padding: 5px 10px; border-radius: 6px; transition: var(--t);
}
.lang-btn:hover { background: rgba(0,212,255,.1); }

.nav__cta {
  display: flex; align-items: center; gap: 8px;
  font-size: .84rem; font-weight: 600; color: var(--white);
  border: 1px solid var(--border); padding: 7px 16px; border-radius: 8px;
  transition: var(--t);
}
.nav__cta:hover { border-color: var(--cyan); color: var(--cyan); }
.nav__cta svg { width: 14px; height: 14px; }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { width: 20px; height: 1.5px; background: var(--text); border-radius: 2px; transition: var(--t); }

.nav__drawer {
  display: none; flex-direction: column;
  background: rgba(5,5,15,.96); backdrop-filter: blur(20px);
  padding: 12px 28px 20px;
  border-bottom: 1px solid var(--border);
}
.nav__drawer a {
  padding: 12px 0; font-size: .95rem; color: var(--muted);
  border-bottom: 1px solid var(--border); transition: var(--t);
}
.nav__drawer a:last-child { border-bottom: none; }
.nav__drawer a:hover { color: var(--white); }
.nav__drawer.open { display: flex; }

/* ─── ORB / AMBIENT ─────────────────────────────────────────── */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none; z-index: 0;
}
/* orbs now live inside .hero__bg which is full-bleed */
.orb--1 { width: 700px; height: 700px; background: rgba(0,212,255,.1); top: -120px; left: -200px; }
.orb--2 { width: 500px; height: 500px; background: rgba(124,58,237,.09); top: 80px; right: -100px; }
.orb--3 { width: 400px; height: 400px; background: rgba(0,180,255,.06); bottom: -60px; left: 35%; }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  /* no max-width, no overflow:hidden — full bleed */
}

/* Full-bleed background layer */
.hero__bg {
  position: absolute; inset: 0;
  overflow: hidden;   /* clips orbs here, not on .hero */
  z-index: 0; pointer-events: none;
}

/* Subtle trading-screens photo in hero bg */
.hero__bg-img {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1640340434855-6084b1f4901c?w=1800&auto=format&fit=crop&q=60') center/cover no-repeat;
  opacity: .04;
}

/* Constrained content wrapper */
.hero__container {
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto;
  padding: 140px 28px 80px;
  display: grid; grid-template-columns: 1fr 440px;
  align-items: center; gap: 60px;
}

.hero__inner { position: relative; z-index: 1; }

.hero__label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 32px;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--cyan);
  animation: pdot 2s ease-in-out infinite;
}
@keyframes pdot { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(0,212,255,.5)} 50%{opacity:.7;box-shadow:0 0 0 5px rgba(0,212,255,0)} }

.hero__title { line-height: 1.05; margin-bottom: 24px; }
.hero__title-brand {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; letter-spacing: .01em;
  color: var(--muted);
  margin-bottom: 8px; font-family: 'JetBrains Mono', monospace;
}
.hero__title-line {
  display: block;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 800; letter-spacing: -.03em;
  color: var(--white);
  text-wrap: balance;
}
.hero__title-line--accent {
  background: linear-gradient(95deg, var(--cyan) 0%, #a78bfa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero__sub {
  font-size: 1.05rem; color: var(--muted); line-height: 1.7;
  max-width: 520px; margin-bottom: 40px;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 60px; }

.hero__stats {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  background: var(--surface);
}
.hstat {
  padding: 18px 24px; display: flex; flex-direction: column; gap: 3px; flex: 1;
}
.hstat__num {
  font-size: 1.55rem; font-weight: 800; color: var(--white);
  font-family: 'JetBrains Mono', monospace; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hstat__label { font-size: .68rem; color: var(--muted); font-weight: 500; line-height: 1.3; }
.hstat__div { width: 1px; background: var(--border); align-self: stretch; }

/* ─── HERO TERMINAL ─────────────────────────────────────────── */
.hero__terminal {
  position: relative; z-index: 1;
  background: #0d0d1a;
  border: 1px solid rgba(0,212,255,.2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(0,212,255,.06);
}
.terminal__bar {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid var(--border);
  padding: 11px 16px;
}
.terminal__dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.terminal__dot--r { background: #ff5f56; }
.terminal__dot--y { background: #ffbd2e; }
.terminal__dot--g { background: #27c93f; }
.terminal__title {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem; color: var(--muted); margin-left: 6px;
}
.terminal__body {
  padding: 20px 22px 22px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .78rem; line-height: 1.9;
  display: flex; flex-direction: column;
}
.terminal__line { display: flex; align-items: baseline; }
.t-blank { height: .6em; }
.t-prompt { color: var(--cyan); margin-right: 4px; font-weight: 600; }
.t-cmd { color: var(--text); }
.t-arg { color: #a78bfa; }
.t-step { color: var(--muted); flex: 0 0 160px; }
.t-dots { color: rgba(255,255,255,.15); flex: 1; letter-spacing: .05em; }
.t-ok { color: #27c93f; font-weight: 700; margin: 0 8px 0 4px; }
.t-note { color: var(--muted); font-size: .72rem; }
.t-arrow { color: var(--cyan); font-weight: 700; margin-right: 6px; }
.terminal__line--deploy { color: var(--cyan); font-weight: 600; margin-top: 2px; }
.terminal__cursor {
  width: 8px; height: 14px; background: var(--cyan);
  display: inline-block; margin-top: 4px;
  animation: blink .9s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ─── ABOUT ─────────────────────────────────────────────────── */
.about { padding: 120px 0; background: var(--ink2); }
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.about__left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800;
  line-height: 1.15; letter-spacing: -.022em; color: var(--white);
  text-wrap: balance;
}
.about__right p { color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.about__credo {
  font-size: .95rem; font-weight: 600; color: var(--text) !important;
  border-left: 2px solid var(--cyan); padding-left: 18px;
  margin-top: 24px !important;
}
/* "What we don't do" block */
.about__notsell {
  margin-top: 28px; padding: 20px 22px;
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: 10px;
}
.about__notsell-title {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px; font-family: 'JetBrains Mono', monospace;
}
.about__notsell ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.about__notsell li {
  font-size: .84rem; color: var(--muted); padding-left: 16px; position: relative;
}
.about__notsell li::before {
  content: '×'; position: absolute; left: 0;
  color: rgba(255,80,80,.6); font-weight: 700;
}
.about__clients {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px;
}
.about__clients span {
  font-size: .78rem; font-weight: 600;
  border: 1px solid var(--border); color: var(--muted);
  padding: 6px 14px; border-radius: 20px;
  transition: var(--t);
}
.about__clients span:hover { border-color: var(--border2); color: var(--cyan); }

/* ─── HOW IT WORKS ──────────────────────────────────────────── */
.process { padding: 120px 0; }
.process .section-head h2 { text-wrap: balance; }
.process__steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start; gap: 0;
}
.pstep {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color var(--t), transform var(--t);
}
.pstep:hover { border-color: var(--border2); transform: translateY(-3px); }
.pstep__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: .65rem; font-weight: 600; color: var(--cyan);
}
.pstep__icon {
  width: 42px; height: 42px;
  background: rgba(0,212,255,.08); border: 1px solid rgba(0,212,255,.2);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
}
.pstep__icon svg { width: 20px; height: 20px; }
.pstep h3 { font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.25; }
.pstep p { font-size: .85rem; color: var(--muted); line-height: 1.7; }
.pstep__arrow {
  display: flex; align-items: center; justify-content: center;
  padding: 0 16px; color: var(--border2); margin-top: 60px;
}
.pstep__arrow svg { width: 22px; height: 22px; }

/* ─── ABOUT VISUAL ──────────────────────────────────────────── */
.about__visual { margin-top: 60px; }
.about__img-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  height: 340px;
  border: 1px solid var(--border);
}
.about__img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.7) brightness(.75);
  transition: transform .6s ease, filter .6s ease;
}
.about__img-wrap:hover .about__img { transform: scale(1.03); filter: saturate(.9) brightness(.85); }
.about__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,15,.9) 0%, rgba(5,5,15,.3) 60%, transparent 100%);
}
.about__img-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-around;
  padding: 24px 28px;
}
.img-stat { text-align: center; }
.img-stat__n {
  display: block; font-size: 1.8rem; font-weight: 800;
  color: var(--white); font-family: 'JetBrains Mono', monospace; line-height: 1;
}
.img-stat__l { font-size: .68rem; color: var(--muted); font-weight: 500; }
.img-stat__sep { width: 1px; height: 40px; background: var(--border); }

/* ─── SERVICES ──────────────────────────────────────────────── */
.services { padding: 0 0 120px; }
.services__list { border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }

.svc { border-bottom: 1px solid var(--border); }
.svc:last-child { border-bottom: none; }

.svc__head {
  display: grid; grid-template-columns: 56px 1fr 24px;
  align-items: center; gap: 20px;
  padding: 22px 28px; cursor: pointer;
  transition: background var(--t);
}
.svc__head:hover { background: var(--surface); }
.svc--featured .svc__head { background: rgba(0,212,255,.04); }
.svc--featured .svc__head:hover { background: rgba(0,212,255,.08); }

.svc__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem; font-weight: 600; color: var(--cyan);
}
.svc__head h3 {
  font-size: 1rem; font-weight: 700; color: var(--white); transition: color var(--t);
}
.svc__arrow {
  width: 18px; height: 18px; color: var(--muted);
  transition: transform var(--t), color var(--t); flex-shrink: 0;
}
.svc.open .svc__arrow { transform: rotate(180deg); color: var(--cyan); }
.svc.open .svc__head h3 { color: var(--cyan); }

.svc__body {
  max-height: 0; overflow: hidden;
  transition: max-height .45s cubic-bezier(.4,0,.2,1), padding var(--t);
  padding: 0 28px 0 104px;
}
.svc.open .svc__body { max-height: 300px; padding: 0 28px 24px 104px; }

.svc__body p { color: var(--muted); font-size: .9rem; line-height: 1.75; margin-bottom: 14px; }
.svc__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc__tags span {
  font-size: .7rem; font-weight: 600; font-family: 'JetBrains Mono', monospace;
  background: var(--ink2); border: 1px solid var(--border);
  color: var(--muted); padding: 4px 9px; border-radius: 5px;
}

/* ─── PIPELINE ──────────────────────────────────────────────── */
.pipeline { padding: 0 0 120px; }
.pipeline__track {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
}
.pipe__step {
  background: var(--ink2); padding: 28px 22px;
  position: relative; transition: background var(--t);
  display: flex; flex-direction: column; gap: 12px;
}
.pipe__step:hover { background: var(--surface); }
.pipe__step--accent { background: rgba(0,212,255,.04); }
.pipe__step--accent:hover { background: rgba(0,212,255,.08); }

.pipe__dot {
  position: absolute; top: 0; left: 22px;
  width: 2px; height: 4px; background: var(--border);
}
.pipe__step--accent .pipe__dot { background: var(--cyan); }

.pipe__content { display: flex; flex-direction: column; gap: 4px; }
.pipe__n {
  font-family: 'JetBrains Mono', monospace; font-size: .65rem;
  font-weight: 600; color: var(--cyan); margin-bottom: 4px;
}
.pipe__content strong { font-size: .88rem; font-weight: 700; color: var(--white); line-height: 1.25; }
.pipe__content span { font-size: .72rem; color: var(--muted); font-family: 'JetBrains Mono', monospace; }

/* ─── STACK ─────────────────────────────────────────────────── */
.stack { padding: 0 0 120px; }
.stack__grid {
  display: grid; grid-template-columns: 1fr 1fr 340px; gap: 20px; align-items: start;
}
.stack__col {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 18px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 6px;
}
.stack__cat {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cyan); margin: 16px 0 8px; font-family: 'JetBrains Mono', monospace;
}
.stack__cat:first-child { margin-top: 0; }
.stack__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 4px; }
.stack__tags span {
  font-size: .78rem; font-weight: 500;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); padding: 5px 11px; border-radius: 7px;
}

.stack__highlight {
  background: linear-gradient(145deg, rgba(0,212,255,.06), rgba(124,58,237,.06));
  border: 1px solid var(--border2); border-radius: 18px;
  padding: 32px 28px; display: flex; flex-direction: column; justify-content: center;
}
.stack__highlight-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 16px; font-family: 'JetBrains Mono', monospace;
}

/* ─── CASES ─────────────────────────────────────────────────── */
.cases { padding: 0 0 80px; }
.cases__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }

.case {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.case:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.4); }

.case__thumb {
  height: 160px; overflow: hidden; position: relative;
}
.case__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.5) brightness(.6);
  transition: filter .5s ease, transform .5s ease;
}
.case:hover .case__thumb img { filter: saturate(.8) brightness(.75); transform: scale(1.04); }

.case__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }

.case__meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.case__type { font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-family: 'JetBrains Mono', monospace; }
.case__result {
  font-size: .66rem; font-weight: 700; font-family: 'JetBrains Mono', monospace;
  color: var(--cyan); background: rgba(0,212,255,.1);
  border: 1px solid var(--border2); padding: 3px 8px; border-radius: 5px; white-space: nowrap;
}
.case h3 { font-size: .95rem; font-weight: 700; color: var(--white); line-height: 1.3; }
.case p { font-size: .83rem; color: var(--muted); line-height: 1.7; flex: 1; }
.case__tags { display: flex; flex-wrap: wrap; gap: 5px; }
.case__tags span {
  font-size: .67rem; font-weight: 600; font-family: 'JetBrains Mono', monospace;
  background: var(--ink2); border: 1px solid var(--border);
  color: var(--muted); padding: 3px 8px; border-radius: 4px;
}

.testimonials { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.testi {
  background: var(--surface); border: 1px solid var(--border);
  border-top: 2px solid var(--cyan);
  border-radius: 12px; padding: 28px 24px;
}
.testi p { font-size: .92rem; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 14px; }
.testi cite { font-size: .72rem; font-weight: 700; color: var(--muted); font-family: 'JetBrains Mono', monospace; font-style: normal; }

/* ─── INFRA BANNER ──────────────────────────────────────────── */
.infra-banner {
  position: relative; height: 380px; overflow: hidden;
  margin: 80px 0 0;
}
.infra-banner__img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.6) brightness(.5);
}
.infra-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,5,15,.85) 0%, rgba(0,212,255,.06) 100%);
}
.infra-banner__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 680px;
}
.infra-banner__content h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
  color: var(--white); line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 14px;
}
.infra-banner__content > p { color: var(--muted); font-size: .95rem; line-height: 1.7; }

/* ─── TRUST BANNER ──────────────────────────────────────────── */
.trust-banner {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(0,212,255,.03);
  padding: 28px 0;
}
.trust-banner__inner {
  display: flex; align-items: center; gap: 20px;
}
.trust-banner svg { width: 28px; height: 28px; color: var(--cyan); flex-shrink: 0; }
.trust-banner p { font-size: .88rem; color: var(--muted); line-height: 1.65; }
.trust-banner strong { color: var(--text); font-weight: 700; margin-right: 8px; }

/* ─── CONTACT ───────────────────────────────────────────────── */
.contact { padding: 100px 0 120px; }
.contact__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact__left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800;
  color: var(--white); line-height: 1.1; letter-spacing: -.025em;
  margin-bottom: 16px;
}
.contact__left > p { color: var(--muted); line-height: 1.75; margin-bottom: 40px; }

.contact__links { display: flex; flex-direction: column; gap: 14px; }
.clink {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: 12px;
  border: 1px solid var(--border); transition: var(--t);
}
.clink:not(.clink--plain):hover { border-color: var(--border2); }
.clink--plain { cursor: default; }
.clink__icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(0,212,255,.08); border: 1px solid var(--border2);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
}
.clink__icon svg { width: 16px; height: 16px; }
.clink div:last-child { display: flex; flex-direction: column; gap: 2px; }
.clink strong { font-size: .88rem; font-weight: 700; color: var(--text); }
.clink span { font-size: .76rem; color: var(--muted); }

.contact__form {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 18px; padding: 36px 32px;
  display: flex; flex-direction: column; gap: 18px;
  backdrop-filter: blur(12px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
}
.form-field input, .form-field select, .form-field textarea {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  color: var(--text); border-radius: 9px;
  padding: 11px 14px; font-family: inherit; font-size: .9rem;
  outline: none; transition: border-color var(--t), box-shadow var(--t);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,.2); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--border2); box-shadow: 0 0 0 3px rgba(0,212,255,.08);
}
.form-field select {
  -webkit-appearance: none; cursor: pointer;
  background-color: #0e0e20;
  color: var(--text);
  color-scheme: dark;
}
.form-field select option {
  background-color: #0e0e20;
  color: var(--text);
}
.form-field textarea { resize: vertical; min-height: 110px; }

.form-ok {
  display: none; align-items: center; gap: 10px;
  background: rgba(0,212,255,.08); border: 1px solid var(--border2);
  border-radius: 9px; padding: 14px 18px;
  color: var(--cyan); font-size: .88rem; font-weight: 600;
}
.form-ok svg { width: 18px; height: 18px; flex-shrink: 0; }
.form-ok.visible { display: flex; }

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 32px; background: var(--ink2);
}
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img { height: 60px; }
.footer__brand span { font-size: .8rem; color: var(--muted); font-style: italic; }
.footer__nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__nav a { font-size: .82rem; color: var(--muted); transition: color var(--t); }
.footer__nav a:hover { color: var(--white); }
.footer__copy { font-size: .78rem; color: var(--muted); }
.footer__credit { color: var(--cyan); transition: opacity var(--t); }
.footer__credit:hover { opacity: .7; }

/* ─── SCROLL ANIMATION ──────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__container { grid-template-columns: 1fr; padding-top: 120px; }
  .hero__terminal { max-width: 520px; }
  .t-step { flex: 0 0 140px; }
  .hero__stats { display: grid; grid-template-columns: 1fr 1fr; }
  .hstat__div { display: none; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .stack__grid { grid-template-columns: 1fr 1fr; }
  .stack__highlight { grid-column: span 2; }
  .pipeline__track { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  .cases__grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .pipeline__track { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: 1fr; gap: 16px; }
  .pstep__arrow { display: none; }
}
@media (max-width: 600px) {
  .hero__container { padding: 100px 20px 60px; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .stack__grid { grid-template-columns: 1fr; }
  .stack__highlight { grid-column: auto; }
  .pipeline__track { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .svc__body.open, .svc.open .svc__body { padding-left: 28px; }
  .trust-banner__inner { flex-direction: column; align-items: flex-start; }
}
