/* =========================================================
   TST Bilgisayar — style.css
   ========================================================= */
:root {
  --bg: #05070a;
  --bg-2: #0a0e13;
  --surface: #0e131a;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);
  --text: #eaf0f4;
  --muted: #8b97a4;
  --acc: #3df5c8;
  --acc-2: #7b61ff;
  --acc-3: #2ea8ff;
  --grad: linear-gradient(100deg, var(--acc) 0%, var(--acc-3) 50%, var(--acc-2) 100%);

  --f-display: "Unbounded", system-ui, sans-serif;
  --f-body: "Manrope", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  --pad: clamp(16px, 4vw, 56px);
  --radius: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--acc); color: #001a14; }

.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 var(--pad); }
.mono { font-family: var(--f-mono); letter-spacing: 0.02em; }
.c-acc { color: var(--acc); }
.grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.h2 .line { display: block; overflow: hidden; padding-bottom: .06em; }
.h2 .line > span { display: inline-block; }
.h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2rem, 5.2vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted);
}
.tag::before { content: ""; width: 6px; height: 6px; background: var(--acc); border-radius: 50%; box-shadow: 0 0 12px var(--acc); }
.tag--right::before { display: none; }
.section-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 18px; margin-bottom: clamp(32px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}
.eyebrow { font-size: 0.8rem; color: var(--acc); text-transform: uppercase; letter-spacing: 0.18em; }
.blink { animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.pulse {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--acc); position: relative; flex: none;
}
.pulse::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--acc); animation: ping 1.8s var(--ease) infinite;
}
@keyframes ping { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(3.2); opacity: 0; } }

/* ---------- Buttons ---------- */
.btn {
  --h: 56px;
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  height: var(--h); padding: 0 28px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; white-space: nowrap;
  overflow: hidden; isolation: isolate;
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.btn svg { width: 18px; height: 18px; transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  border-radius: inherit; transform: translateY(101%);
  transition: transform .5s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn--primary { background: var(--acc); color: #00140f; }
.btn--primary::before { background: #fff; }
.btn--ghost { border: 1px solid var(--line-2); color: var(--text); backdrop-filter: blur(10px); background: rgba(255,255,255,0.03); }
.btn--ghost::before { background: var(--text); }
.btn--ghost:hover { color: var(--bg); }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  pointer-events: none;
}
.loader__panel { position: absolute; left: 0; right: 0; height: 50.5%; background: var(--bg); z-index: -1; }
.loader__panel--top { top: 0; }
.loader__panel--bottom { bottom: 0; }
.loader__grid {
  position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
}
.loader__term {
  position: absolute; left: var(--pad); top: var(--pad); z-index: 1;
  font-family: var(--f-mono); font-size: 0.8rem; color: var(--muted);
}
.loader__line { opacity: 0; }
.loader__count {
  position: relative; z-index: 1;
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(5rem, 18vw, 16rem); line-height: 1; letter-spacing: -0.05em;
}
.loader__pct { font-size: 0.3em; color: var(--acc); vertical-align: top; margin-left: 0.1em; }
.loader__bar { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--line); z-index: 1; }
.loader__bar span { display: block; height: 100%; width: 100%; background: var(--grad); transform-origin: left; transform: scaleX(0); }
.dots::after { content: ""; animation: dots 1.2s steps(4) infinite; }
@keyframes dots { 0% { content: ""; } 25% { content: "."; } 50% { content: ".."; } 75% { content: "..."; } }

/* ---------- Cursor, progress, noise ---------- */
.cursor { position: fixed; top: 0; left: 0; z-index: 999; pointer-events: none; }
.cursor__dot, .cursor__ring { position: fixed; top: 0; left: 0; border-radius: 50%; }
.cursor__dot { width: 6px; height: 6px; background: var(--acc); }
.cursor__ring {
  width: 38px; height: 38px; border: 1px solid rgba(61, 245, 200, 0.5);
  display: grid; place-items: center;
  transition: width .4s var(--ease), height .4s var(--ease), background .4s var(--ease), border-color .4s;
}
.cursor__label { font-family: var(--f-mono); font-size: 0.7rem; color: #00140f; opacity: 0; transition: opacity .3s; text-transform: uppercase; letter-spacing: .1em; }
.cursor.is-hover .cursor__ring { width: 64px; height: 64px; border-color: var(--acc); }
.cursor.is-label .cursor__ring { width: 84px; height: 84px; background: var(--acc); border-color: var(--acc); }
.cursor.is-label .cursor__label { opacity: 1; }
.cursor.is-label .cursor__dot { opacity: 0; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200; }
.progress span { display: block; height: 100%; background: var(--grad); transform-origin: left; transform: scaleX(0); }

.noise {
  position: fixed; inset: -50%; z-index: 150; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 6s steps(8) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 20% { transform: translate(-5%,3%); } 40% { transform: translate(4%,-6%); }
  60% { transform: translate(-3%,5%); } 80% { transform: translate(6%,2%); }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 20px var(--pad);
  transition: padding .5s var(--ease), background .5s, border-color .5s, transform .6s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled { padding-top: 12px; padding-bottom: 12px; background: rgba(5, 7, 10, 0.72); backdrop-filter: blur(16px) saturate(140%); border-color: var(--line); }
.nav.is-hidden { transform: translateY(-100%); }
.nav__logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 40px; height: 40px; color: var(--text); }
.logo-mark svg { width: 100%; height: 100%; }
.logo-text { font-family: var(--f-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em; line-height: 1; }
.logo-text em { font-style: normal; font-weight: 300; color: var(--muted); margin-left: 6px; }
.nav__links { display: flex; gap: 6px; padding: 6px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,0.02); backdrop-filter: blur(10px); }
.nav__links a { position: relative; padding: 9px 18px; border-radius: 999px; font-size: 0.9rem; font-weight: 500; color: var(--muted); overflow: hidden; transition: color .3s; }
.nav__links a:hover, .nav__links a.is-active { color: var(--text); }
.nav__links a.is-active { background: rgba(255,255,255,0.07); }
.nav__phone { width: 16px; height: 16px; color: var(--acc); flex: none; }
.btn.nav__cta:hover svg { transform: none; }
.nav__cta { --h: 46px; gap: 10px; padding: 0 20px; font-family: var(--f-mono); font-weight: 500; font-size: 0.85rem; }
.nav__burger { display: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-2); position: relative; z-index: 120; }
.nav__burger span { position: absolute; left: 14px; right: 14px; height: 1.5px; background: var(--text); transition: transform .5s var(--ease), top .5s var(--ease); }
.nav__burger span:first-child { top: 19px; }
.nav__burger span:last-child { top: 26px; }
.nav__burger[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }

.mmenu {
  position: fixed; inset: 0; z-index: 90; background: var(--bg-2);
  display: flex; flex-direction: column; justify-content: center; padding: 100px var(--pad) 40px;
  clip-path: circle(0% at calc(100% - 45px) 45px);
  visibility: hidden;
}
.mmenu nav { display: flex; flex-direction: column; gap: 8px; }
.mmenu nav a { font-family: var(--f-display); font-size: clamp(2.2rem, 10vw, 3.5rem); font-weight: 500; letter-spacing: -0.03em; line-height: 1.15; }
.mmenu__foot { margin-top: auto; display: flex; flex-direction: column; gap: 6px; color: var(--muted); font-size: 0.9rem; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; padding: 140px 0 40px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { position: absolute; inset: -8% 0; width: 100%; height: 116%; object-fit: cover; opacity: .38; filter: saturate(1.2) hue-rotate(-10deg); }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 60%, transparent);
}
.hero__glow {
  position: absolute; width: 60vw; height: 60vw; left: 50%; top: 40%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(61,245,200,.18), rgba(123,97,255,.12) 40%, transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,7,10,.6), transparent 30%, transparent 55%, var(--bg)); z-index: 0; pointer-events: none; }
.hero__inner, .hero__stats { position: relative; z-index: 2; }
.hero__eyebrow { margin-bottom: 28px; }
.hero__title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(2.6rem, 9.2vw, 9.6rem);
  line-height: 0.98; letter-spacing: -0.045em;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.hero__title .word { display: inline-block; }
.rotator { display: inline-block; height: 1.02em; overflow: hidden; vertical-align: bottom; }
.rotator__track { display: flex; flex-direction: column; }
.rotator__track span {
  display: block; height: 1.02em; line-height: 1.02;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-top: clamp(28px, 4vw, 48px); flex-wrap: wrap; }
.hero__lead { max-width: 520px; color: #b7c2cc; text-shadow: 0 2px 20px rgba(0,0,0,.8); font-size: clamp(1rem, 1.3vw, 1.15rem); }
.hero__lead strong { color: var(--text); font-weight: 600; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(48px, 7vw, 96px); border-top: 1px solid var(--line);
}
.stat { padding: 22px 0 0; display: flex; flex-direction: column; gap: 4px; border-left: 1px solid var(--line); padding-left: 22px; }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__num { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.6rem); letter-spacing: -0.03em; line-height: 1.1; }
.stat__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.hero__scroll { position: absolute; right: var(--pad); top: 50%; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 14px; font-size: 0.7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); writing-mode: vertical-rl; }
.hero__scroll i { width: 1px; height: 70px; background: var(--line-2); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; left: 0; top: -40%; width: 100%; height: 40%; background: var(--acc); animation: drip 2s var(--ease) infinite; }
@keyframes drip { to { top: 100%; } }

/* ---------- Marquee ---------- */
.marquee { padding: clamp(40px, 6vw, 80px) 0; overflow: hidden; position: relative; }
.marquee__row { display: flex; white-space: nowrap; width: 112%; margin-left: -6%; }
.marquee__row--a { transform: rotate(-2deg); background: var(--acc); color: #00140f; padding: 18px 0; position: relative; z-index: 2; }
.marquee__row--b { transform: rotate(1.5deg) translateY(-14px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); padding: 16px 0; }
.marquee__track { display: flex; align-items: center; gap: 36px; padding-right: 36px; flex: none; }
.marquee__track span { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.4rem, 3.2vw, 2.8rem); letter-spacing: -0.02em; text-transform: uppercase; }
.marquee__row--b .marquee__track span { font-weight: 400; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.55); }
.marquee__track b { font-size: 1.4rem; font-weight: 400; }
.marquee__row--b b { color: var(--acc); }

/* ---------- About ---------- */
.about { padding: clamp(80px, 12vw, 180px) 0 clamp(60px, 10vw, 140px); position: relative; }
.about__statement {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(1.6rem, 3.8vw, 3.6rem); line-height: 1.18; letter-spacing: -0.03em;
  max-width: 1200px; margin-bottom: clamp(60px, 10vw, 140px);
}
.about__statement em { font-style: normal; }
.about__statement .w { color: rgba(234,240,244,.14); transition: none; }
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr 0.8fr; gap: clamp(24px, 4vw, 64px); align-items: start; }
.about__media { position: relative; }
.about__media .clip { overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/5; position: relative; }
.about__media .clip img { width: 100%; height: 120%; object-fit: cover; position: absolute; top: -10%; }
.about__media figcaption { margin-top: 12px; font-size: 0.75rem; color: var(--muted); }
.about__media--b { margin-top: 40%; }
.about__media--b .clip { aspect-ratio: 3/4; }
.about__text { display: flex; flex-direction: column; gap: 22px; padding-top: 20px; }
.about__text > p { color: var(--muted); font-size: 1.08rem; }
.about__text strong { color: var(--text); font-weight: 600; }
.values { margin-top: 18px; border-top: 1px solid var(--line); }
.values li { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.values__i { color: var(--acc); font-size: .8rem; padding-top: 4px; }
.values h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.15rem; letter-spacing: -0.02em; margin-bottom: 4px; }
.values p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Services ---------- */
.services { position: relative; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.services__pin { height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: clamp(72px, 10vh, 110px) 0 clamp(24px, 4vh, 48px); overflow: hidden; }
.services .h2 { font-size: clamp(2rem, min(5.2vw, 7.5vh), 5rem); }
.services__intro .section-head { margin-bottom: 32px; }
.services__counter b { color: var(--text); font-weight: 500; }
.services__intro .h2 { margin-bottom: clamp(20px, 4vh, 56px); }
.services__intro .section-head { margin-bottom: clamp(16px, 3vh, 32px); }
.services__viewport { width: 100%; }
.services__track { display: flex; gap: 24px; padding: 0 var(--pad); width: max-content; will-change: transform; }
.card {
  --w: clamp(280px, min(28vw, 50vh), 420px);
  position: relative; flex: none; width: var(--w);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transform-style: preserve-3d;
  transition: border-color .5s var(--ease);
}
.card::before {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none; border-radius: inherit;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(61,245,200,.14), transparent 45%);
  opacity: 0; transition: opacity .4s;
}
.card:hover::before { opacity: 1; }
.card:hover { border-color: rgba(61,245,200,.35); }
.card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
@media (max-height: 820px) and (min-width: 901px) { .card__media { aspect-ratio: 16/7; } .card__text { font-size: .88rem; margin-bottom: 14px; } .card__title { font-size: 1.15rem; } .card__body { padding: 0 22px 22px; } }
.card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--surface), transparent 60%); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); filter: grayscale(.35) contrast(1.05); transition: transform 1s var(--ease), filter .8s; }
.card:hover .card__media img { transform: scale(1.0); filter: grayscale(0) contrast(1.05); }
.card__body { position: relative; z-index: 2; padding: 0 28px 28px; margin-top: -30px; display: flex; flex-direction: column; flex: 1; }
.card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.card__num { font-size: 0.8rem; color: var(--acc); padding: 6px 10px; border: 1px solid rgba(61,245,200,.3); border-radius: 999px; background: rgba(5,7,10,.6); backdrop-filter: blur(6px); }
.card__icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: rgba(5,7,10,.7); border: 1px solid var(--line-2); backdrop-filter: blur(6px); transition: background .4s, color .4s, transform .6s var(--ease); }
.card__icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.card:hover .card__icon { background: var(--acc); color: #00140f; transform: rotate(-8deg) scale(1.05); }
.card__title { font-family: var(--f-display); font-weight: 500; font-size: 1.35rem; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 12px; }
.card__text { color: var(--muted); font-size: 0.95rem; line-height: 1.65; margin-bottom: 22px; }
.card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.card__tags li { font-size: 0.7rem; text-transform: uppercase; letter-spacing: .08em; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,.04); border: 1px solid var(--line); color: var(--muted); }
.card--cta {
  justify-content: center; align-items: flex-start; gap: 22px; padding: 40px;
  background: radial-gradient(circle at 80% 20%, rgba(123,97,255,.35), transparent 55%), radial-gradient(circle at 10% 90%, rgba(61,245,200,.25), transparent 55%), var(--surface);
}
.card--cta p { color: var(--acc); font-size: .85rem; }
.card--cta h3 { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.8rem, 2.6vw, 2.6rem); line-height: 1.08; letter-spacing: -0.03em; }
.services__bar { margin-top: clamp(16px, 4vh, 40px); }
.services__bar span { display: block; height: 2px; background: var(--line); position: relative; overflow: hidden; }
.services__bar span::after { content: ""; position: absolute; inset: 0; background: var(--grad); transform-origin: left; transform: scaleX(var(--p, 0)); }

/* ---------- Band ---------- */
.band { position: relative; height: 110vh; min-height: 640px; overflow: hidden; display: flex; align-items: center; }
.band__img { position: absolute; inset: 0; }
.band__img img { width: 100%; height: 100%; object-fit: cover; transform-origin: center; }
.band__overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(5,7,10,.3), rgba(5,7,10,.9) 75%), linear-gradient(var(--bg), transparent 20%, transparent 80%, var(--bg)); }
.band__content { position: relative; z-index: 2; text-align: center; }
.band__content .tag { justify-content: center; margin-bottom: 24px; }
.band__quote { font-family: var(--f-display); font-weight: 600; font-size: clamp(2.4rem, 8vw, 8.4rem); line-height: 1; letter-spacing: -0.045em; }
.bq-line { display: block; }
.outline { color: transparent; -webkit-text-stroke: 1.5px var(--acc); }

/* ---------- Process ---------- */
.process { padding: clamp(100px, 14vw, 200px) 0; position: relative; }
.process .h2 { margin-bottom: clamp(56px, 8vw, 110px); }
.process__wrap { position: relative; max-width: 980px; margin-left: auto; }
.process__fill { position: absolute; left: 11px; top: 0; bottom: 0; width: 3px; border-radius: 3px; background: linear-gradient(var(--acc), var(--acc-2)); box-shadow: 0 0 16px rgba(61,245,200,.5); transform-origin: top; transform: scaleY(0); z-index: 1; }
.process__wrap::before { content: ""; position: absolute; left: 12px; top: 0; bottom: 0; width: 1px; background: var(--line-2); }
.steps { display: flex; flex-direction: column; }
.step { position: relative; display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 0 0 clamp(48px, 7vw, 90px) 64px; }
.step:last-child { padding-bottom: 0; }
.step__dot { z-index: 2; position: absolute; left: 4px; top: 10px; width: 17px; height: 17px; border-radius: 50%; background: var(--bg); border: 1px solid var(--line-2); transition: background .4s, border-color .4s, box-shadow .4s; }
.step.is-active .step__dot { background: var(--acc); border-color: var(--acc); box-shadow: 0 0 0 6px rgba(61,245,200,.12), 0 0 24px var(--acc); }
.step__n { font-size: clamp(2rem, 4vw, 3.4rem); font-family: var(--f-display); font-weight: 300; color: var(--line-2); line-height: 1; transition: color .4s; }
.step.is-active .step__n { color: var(--acc); }
.step h3 { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.4rem, 2.4vw, 2.2rem); letter-spacing: -0.02em; margin-bottom: 10px; line-height: 1.15; }
.step p { color: var(--muted); max-width: 520px; font-size: 1.05rem; }

/* ---------- Contact ---------- */
.contact { position: relative; padding: clamp(100px, 12vw, 180px) 0; overflow: hidden; border-top: 1px solid var(--line); }
.contact__bg { position: absolute; inset: 0; z-index: 0; }
.contact__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.contact__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(var(--bg), rgba(5,7,10,.55) 40%, var(--bg)); }
.contact .container { position: relative; z-index: 1; }
.contact__title { font-family: var(--f-display); font-weight: 600; font-size: clamp(2.4rem, 7.6vw, 8rem); line-height: 1; letter-spacing: -0.045em; margin-bottom: clamp(48px, 7vw, 100px); }
.contact__title .line { display: block; overflow: hidden; padding-bottom: .08em; }
.contact__title .line > * { display: inline-block; }
.contact__big { display: inline-block; }
.contact__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.info {
  position: relative; display: flex; flex-direction: column; gap: 10px;
  padding: 28px; border-radius: var(--radius);
  background: rgba(14,19,26,.7); border: 1px solid var(--line); backdrop-filter: blur(14px);
  transition: border-color .4s, transform .6s var(--ease), background .4s;
  overflow: hidden;
}
a.info:hover { border-color: rgba(61,245,200,.4); transform: translateY(-4px); background: rgba(14,19,26,.9); }
.info__k { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.info__v { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.05rem, 1.6vw, 1.4rem); letter-spacing: -0.02em; word-break: break-word; }
.info__v--sm { font-size: clamp(1rem, 1.3vw, 1.2rem); line-height: 1.4; }
.info__v--acc { color: var(--acc); }
.info__arrow { position: absolute; right: 24px; top: 22px; font-size: 1.3rem; color: var(--muted); transition: transform .5s var(--ease), color .3s; }
a.info:hover .info__arrow { transform: translate(4px, -4px); color: var(--acc); }
.info--wide { grid-column: 1 / -1; }

/* ---------- Footer ---------- */
.footer { padding: 80px 0 28px; border-top: 1px solid var(--line); overflow: hidden; }
.footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.footer__claim { font-family: var(--f-display); font-size: 1.3rem; font-weight: 500; line-height: 1.3; }
.footer__claim span { font-size: .8rem; font-weight: 400; color: var(--muted); }
.footer__nav { display: flex; gap: 28px; flex-wrap: wrap; color: var(--muted); }
.footer__nav a:hover { color: var(--acc); }
.footer__up { width: 64px; height: 64px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; font-size: 1.4rem; transition: background .4s, color .4s; }
.footer__up:hover { background: var(--acc); color: #00140f; border-color: var(--acc); }
.footer__mega {
  display: flex; flex-wrap: wrap; column-gap: .25em; justify-content: center;
  font-family: var(--f-display); font-weight: 800; letter-spacing: -0.06em; line-height: .85;
  font-size: clamp(2.2rem, 10.5vw, 12rem); margin: 60px 0 40px;
}
.footer__mega span { display: inline-block; white-space: nowrap; }
.footer__mega span > div {
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.22);
  background: linear-gradient(180deg, rgba(61,245,200,.0) 40%, rgba(61,245,200,.0)); -webkit-background-clip: text; background-clip: text;
  transition: -webkit-text-stroke-color .4s, background .6s;
}
.footer__mega span > div:hover { -webkit-text-stroke-color: var(--acc); background-image: linear-gradient(180deg, var(--acc), var(--acc-2)); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .75rem; color: var(--muted); padding-top: 24px; border-top: 1px solid var(--line); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .about__grid { grid-template-columns: 1fr 1fr; }
  .about__text { grid-column: 1 / -1; grid-row: 2; }
  .about__media--b { margin-top: 20%; }
}
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .hero__scroll { display: none; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .stat { padding-bottom: 20px; }
  .contact__grid { grid-template-columns: 1fr 1fr; }
  .info--wide { grid-column: auto; }

  /* services: vertical stack on small screens */
  .services__pin { height: auto; }
  .services__track { flex-direction: column; width: 100%; }
  .card { width: 100%; }
  .services__bar { display: none; }
}
@media (max-width: 600px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media--b { margin-top: 0; }
  .contact__grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 8px; padding-left: 48px; }
  .hero__actions { width: 100%; flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .section-head { flex-wrap: wrap; gap: 8px; }
  .loader__term { font-size: .7rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
