:root {
  --bg: #121116;
  --bg-soft: #17161c;
  --text: #f4f3f1;
  --text-dim: #a2a1a8;
  --text-mute: #74747a;
  --accent: #ff5c00;
  --line: rgba(255,255,255,.13);
  --edge-light: inset 0 1px 0 rgba(255,255,255,.06);
  --radius-pill: 999px;
  --radius-lg: 22px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.5;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility; -webkit-tap-highlight-color: transparent;
}
html[lang="kk"] body { font-family: 'Golos Text', 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(72% 60% at 50% 42%, rgba(255,92,0,.09), transparent 62%), var(--bg);
  display: grid; place-items: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__inner {
  display: flex; flex-direction: column; align-items: center; gap: 16px; width: min(300px,74vw);
  animation: preIn .8s var(--ease) both;
}
@keyframes preIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.preloader__shield {
  width: clamp(64px, 17vw, 86px); height: auto; margin-bottom: 4px;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.5)) drop-shadow(0 0 22px rgba(255,92,0,.4));
  animation: preShield 2.6s var(--ease) infinite;
}
@keyframes preShield {
  0%, 100% { transform: translateY(0) scale(1); filter: drop-shadow(0 12px 24px rgba(0,0,0,.5)) drop-shadow(0 0 18px rgba(255,92,0,.32)); }
  50% { transform: translateY(-5px) scale(1.045); filter: drop-shadow(0 18px 30px rgba(0,0,0,.55)) drop-shadow(0 0 36px rgba(255,92,0,.62)); }
}
.preloader__eyebrow { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.preloader__logo {
  font-weight: 800; letter-spacing: .14em; font-size: 26px; color: var(--text);
  text-shadow: 0 0 34px rgba(255,92,0,.28);
}
.preloader__logo .accent { color: var(--accent); animation: preDot 1.6s var(--ease) infinite; }
@keyframes preDot { 0%, 100% { opacity: 1; } 50% { opacity: .32; } }
.preloader__bar { width: 100%; height: 3px; background: rgba(255,255,255,.08); border-radius: 3px; overflow: hidden; margin-top: 6px; }
.preloader__fill { display: block; height: 100%; width: 0; background: var(--accent); border-radius: 3px; box-shadow: 0 0 12px rgba(255,92,0,.6); transition: width .25s var(--ease); }
.preloader__pct { font-size: 12px; color: var(--text-mute); letter-spacing: .12em; font-variant-numeric: tabular-nums; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px clamp(16px,4vw,40px);
  padding-top: max(16px, env(safe-area-inset-top));
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), padding .4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(10,10,11,.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line); padding-top: 12px; padding-bottom: 12px;
}
.nav__logo-img { height: 76px; width: auto; }
.nav__menu { display: none; gap: 6px; }
.nav__menu a {
  font-size: 14px; font-weight: 500; color: var(--text-dim);
  padding: 9px 16px; border-radius: var(--radius-pill); transition: color .25s, background .25s;
}
.nav__menu a:hover { color: var(--text); background: rgba(255,255,255,.06); }
.nav__menu .nav__menu-cta { display: none; }

.nav__burger {
  position: relative; z-index: 95;
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 11px; cursor: pointer;
  background: rgba(255,255,255,.08); border: 1px solid var(--line); border-radius: 12px;
}
.nav__burger span { display: block; height: 2px; width: 100%; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav--open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--open .nav__burger span:nth-child(2) { opacity: 0; }
.nav--open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lang { display: inline-flex; align-items: center; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: var(--radius-pill); background: rgba(255,255,255,.04); }
.lang button {
  font: inherit; font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--text-dim);
  background: none; border: none; padding: 6px 11px; border-radius: var(--radius-pill); cursor: pointer;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.lang button:hover { color: var(--text); }
.lang button.is-active { color: #140a03; background: var(--accent); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px; cursor: pointer; border: none;
  border-radius: var(--radius-pill);
  transition: transform .25s var(--ease), background .25s, box-shadow .25s; white-space: nowrap;
}
.btn--pill { padding: 11px 22px; background: rgba(255,255,255,.08); color: var(--text); border: 1px solid var(--line); }
.btn--pill:hover { background: rgba(255,255,255,.14); }
.btn--primary { padding: 15px 28px; background: var(--accent); color: #140a03; box-shadow: 0 8px 30px -8px rgba(255,92,0,.6); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px -10px rgba(255,92,0,.75); }
.btn__arw { font-size: 1.1em; transition: transform .25s var(--ease); }
.btn--primary:hover .btn__arw { transform: translate(2px,-2px); }

.hero { position: relative; height: 380vh; background: #000; }
.hero__sticky {
  position: sticky; top: 0;
  height: 100svh; overflow: hidden;
  display: grid; place-items: center;
  background: #000;
}

.hero__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(58% 48% at 50% 58%, rgba(255,120,35,.09), transparent 68%),
    radial-gradient(46% 34% at 50% 92%, rgba(255,90,0,.08), transparent 74%),
    radial-gradient(70% 60% at 50% 30%, rgba(190,120,60,.035), transparent 70%);
}

.hero__ghost {
  position: absolute; top: 50%; left: 0; right: 0;
  z-index: 3; text-align: center; white-space: nowrap; pointer-events: none; user-select: none;
  font-weight: 800; font-size: 15vw; letter-spacing: -.02em;
  color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.4);
  will-change: top, transform, opacity; backface-visibility: hidden;
  transform: translateY(-50%);
}

.hero__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 2; pointer-events: none;
  mix-blend-mode: screen;
}

.hero__intro {
  position: absolute; top: 0; left: 0; right: 0; z-index: 4;
  text-align: center;
  padding: clamp(96px,15vh,160px) clamp(16px,4vw,40px) 60px;
  display: flex; flex-direction: column; align-items: center;
  background: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.82) 40%, rgba(0,0,0,.4) 72%, transparent 100%);
}
.hero__eyebrow {
  font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 20px;
}
.hero__title {
  font-weight: 800; line-height: 1.04; letter-spacing: -.03em;
  font-size: clamp(38px, 5.6vw, 74px);
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}
.hero__title .hl { color: var(--accent); }
.hero__sub { max-width: 460px; margin: 20px auto 0; color: var(--text); font-weight: 500; font-size: clamp(14px,1.6vw,17px); line-height: 1.6; }

.hero__points { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.hpoint {
  position: absolute; max-width: 230px; opacity: 0;
  padding: 0 clamp(16px,3vw,40px);
}
.hpoint__i { font-size: 13px; color: var(--accent); font-weight: 700; letter-spacing: .1em; }
.hpoint h3 { font-size: clamp(17px,2.4vw,21px); font-weight: 700; margin: 6px 0; }
.hpoint p { font-size: 13.5px; color: var(--text-dim); line-height: 1.5; }
.hpoint--tl { top: 18%; left: 2%; text-align: left; }
.hpoint--tr { top: 18%; right: 2%; text-align: right; }
.hpoint--bl { bottom: 16%; left: 2%; text-align: left; }
.hpoint--br { bottom: 16%; right: 2%; text-align: right; }

.hero__badges {
  position: absolute; bottom: max(28px, env(safe-area-inset-bottom)); left: 50%;
  transform: translateX(-50%); z-index: 4;
  display: flex; gap: 12px; opacity: 0;
}
.badge {
  display: flex; flex-direction: column; align-items: center; padding: 12px 20px; min-width: 110px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  border-radius: var(--radius-lg); backdrop-filter: blur(6px);
}
.badge__num { font-size: clamp(20px,3.5vw,28px); font-weight: 800; color: var(--accent); line-height: 1; }
.badge__label { font-size: 11.5px; color: var(--text-dim); margin-top: 6px; }

.hero__outro {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  z-index: 4; text-align: center; width: min(90%, 620px); opacity: 0;
}
.hero__outro-title {
  font-size: clamp(24px,3.4vw,44px); font-weight: 800; line-height: 1.12; letter-spacing: -.02em;
  margin-bottom: 0; text-shadow: 0 4px 24px rgba(0,0,0,.7);
}

.about {
  position: relative; z-index: 5;
  margin: -58vh auto 0; max-width: 1180px;
  padding: clamp(200px,42vh,460px) clamp(20px,5vw,40px) clamp(90px,14vh,160px);
  background: linear-gradient(to bottom, transparent 0%, rgba(10,10,11,.55) 30%, var(--bg) 52%);
}

.ghost-shield {
  position: absolute; z-index: 0; pointer-events: none;
  width: min(600px, 76vw); aspect-ratio: 1;
  right: -8%; bottom: -6%;
  transform: perspective(1200px) rotateY(-24deg) rotateX(9deg) rotate(-3deg);
  filter: drop-shadow(0 34px 46px rgba(0,0,0,.55));
  opacity: .85;
}
.ghost-shield::before, .ghost-shield::after {
  content: ''; position: absolute; inset: 0;
  -webkit-mask: url(../assets/img/favicon-512.png) center / contain no-repeat;
  mask: url(../assets/img/favicon-512.png) center / contain no-repeat;
}
.ghost-shield::after {
  z-index: -1; transform: translate(14px, 18px);
  background: linear-gradient(135deg, rgba(255,110,40,.16), rgba(0,0,0,.42));
  filter: blur(1px);
}
.ghost-shield::before {
  z-index: 1;
  background:
    linear-gradient(115deg, transparent 37%, rgba(255,255,255,.34) 47%, transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,.20) 0%, rgba(255,255,255,.03) 24%, rgba(255,92,0,.24) 52%, rgba(255,92,0,.04) 72%, transparent 90%);
}
@media (max-width: 760px) {
  .ghost-shield {
    width: 90vw; right: -16%; bottom: -3%; opacity: .7;
    transform: perspective(900px) rotateY(-18deg) rotateX(7deg) rotate(-3deg);
  }
}
.about__kicker { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 30px; }
.about__text { font-size: clamp(26px,4.6vw,56px); font-weight: 800; line-height: 1.22; letter-spacing: -.02em; max-width: 16ch; }
.about__text .word { color: rgba(244,243,241,.14); }
.about__text .word.is-key { color: var(--accent); }

.about__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px,4vw,60px);
  margin-top: clamp(60px,9vh,110px); padding-top: clamp(40px,6vh,70px);
  border-top: 1px solid var(--line);
}
.stat__num { display: block; font-size: clamp(40px,7vw,92px); font-weight: 800; line-height: 1; letter-spacing: -.03em; color: var(--text); }
.stat__label { display: block; margin-top: 12px; font-size: clamp(13px,1.4vw,15px); color: var(--text-dim); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px,5vw,40px); }

.sec-head { max-width: 760px; margin-bottom: clamp(40px,6vh,72px); }
.sec-head__kicker { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 18px; }
.sec-head__title { font-size: clamp(30px,5vw,60px); font-weight: 800; line-height: 1.1; letter-spacing: -.025em; overflow-wrap: break-word; }
.split-title .line { overflow: hidden; }

[data-reveal] { will-change: transform, opacity; }

.services { position: relative; z-index: 5; padding: clamp(70px,11vh,140px) 0; overflow: clip; }
.services > .wrap { position: relative; z-index: 1; }
.services::before {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  top: -4%; left: -6%; width: min(680px, 72vw); aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(255,110,40,.07), transparent 72%);
}
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px,1.6vw,22px); }
.svc {
  position: relative; padding: clamp(26px,2.6vw,38px); border-radius: var(--radius-lg);
  background: var(--bg-soft); border: 1px solid var(--line); overflow: hidden;
  box-shadow: var(--edge-light);
  transition: border-color .35s var(--ease), transform .35s var(--ease), background .35s var(--ease);
}
.svc::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(120% 80% at 50% 0%, rgba(255,92,0,.14), transparent 60%);
  transition: opacity .35s var(--ease);
}
.svc:hover { transform: translateY(-4px); border-color: rgba(255,92,0,.45); }
.svc:hover::after { opacity: 1; }
.svc__num { font-size: 13px; font-weight: 700; letter-spacing: .12em; color: var(--accent); }
.svc__title { font-size: clamp(19px,2vw,24px); font-weight: 700; margin: 16px 0 12px; letter-spacing: -.01em; }
.svc__text { font-size: 14.5px; color: var(--text-dim); line-height: 1.6; }
.svc__more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--accent); opacity: .85; transition: gap .25s var(--ease), opacity .25s; }
.svc:hover .svc__more { gap: 10px; opacity: 1; }

.svc-list { border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(16px,3vw,44px);
  padding: clamp(22px,3.4vw,38px) clamp(6px,1.5vw,20px);
  border-bottom: 1px solid var(--line);
  transition: padding-left .35s var(--ease), background .35s var(--ease);
}
.svc-row:hover, .svc-row:active { background: linear-gradient(90deg, rgba(255,92,0,.07), transparent 55%); padding-left: clamp(14px,2.5vw,34px); }
.svc-row__num { font-size: clamp(14px,1.3vw,17px); font-weight: 700; letter-spacing: .1em; color: var(--accent); }
.svc-row__body { min-width: 0; }
.svc-row__title { display: block; font-size: clamp(23px,3.2vw,40px); font-weight: 800; letter-spacing: -.02em; line-height: 1.08; transition: color .3s var(--ease); }
.svc-row:hover .svc-row__title { color: var(--accent); }
.svc-row__text { display: block; margin-top: 9px; font-size: clamp(13.5px,1.4vw,16px); color: var(--text-dim); line-height: 1.5; max-width: 62ch; }
.svc-row__arw {
  display: grid; place-items: center; flex-shrink: 0;
  width: clamp(38px,5vw,46px); aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(255,92,0,.4); color: var(--accent); font-size: clamp(16px,1.8vw,20px);
  transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s;
}
.svc-row:hover .svc-row__arw,
.svc-row:active .svc-row__arw {
  background: var(--accent); color: #140a03; border-color: var(--accent);
  transform: translate(3px,-3px);
}

.process { position: relative; z-index: 5; padding: clamp(70px,11vh,140px) 0; }
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px,2vw,28px); }
.steps__line { position: absolute; top: 11px; left: 6%; right: 6%; height: 2px; background: var(--line); border-radius: 2px; }
.steps__line-fill { display: block; height: 100%; width: 0; background: var(--accent); border-radius: 2px; }
.step { position: relative; }
.step__num {
  display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%;
  font-size: 11px; font-weight: 700; color: var(--bg); background: var(--accent); margin-bottom: 20px;
}
.step__title { font-size: clamp(18px,2vw,22px); font-weight: 700; margin-bottom: 10px; }
.step__text { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

.cases { position: relative; z-index: 5; padding: clamp(70px,11vh,140px) 0; overflow-x: clip; }
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px,1.6vw,22px); }
.case {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: clamp(26px,2.6vw,36px); border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255,92,0,.06), rgba(255,255,255,.02));
  border: 1px solid var(--line); box-shadow: var(--edge-light);
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.case:hover { transform: translateY(-4px); border-color: rgba(255,92,0,.45); }
.case__idx {
  font-size: clamp(40px,4vw,56px); font-weight: 800; line-height: 1;
  letter-spacing: -.03em; color: rgba(255,92,0,.32); margin-bottom: 16px;
}
.case__tag {
  align-self: flex-start; font-size: 12px; font-weight: 600; color: var(--accent);
  padding: 5px 12px; border: 1px solid rgba(255,92,0,.35); border-radius: var(--radius-pill);
}
.case__title { font-size: clamp(19px,2vw,26px); font-weight: 700; line-height: 1.22; letter-spacing: -.01em; margin-top: 14px; }
.case__text { font-size: 14.5px; color: var(--text-dim); line-height: 1.6; margin-top: 14px; }

.leader { position: relative; z-index: 5; padding: clamp(70px,11vh,140px) 0; }
.leader__wrap { display: grid; grid-template-columns: 0.82fr 1fr; gap: clamp(28px,5vw,72px); align-items: center; }
.leader__media { position: relative; }
.leader__img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 18%;
  border-radius: var(--radius-lg); border: 1px solid var(--line); display: block;
}
.leader__media::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); pointer-events: none;
  box-shadow: inset 0 -110px 130px -70px rgba(255,92,0,.28);
}
.leader__badge {
  position: absolute; left: 18px; bottom: 18px;
  font-weight: 800; letter-spacing: .1em; font-size: 13px; color: var(--text);
  padding: 8px 14px; border-radius: var(--radius-pill);
  background: rgba(10,10,11,.55); border: 1px solid var(--line);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.leader__badge .accent { color: var(--accent); }
.leader__name { font-size: clamp(28px,4vw,50px); font-weight: 800; line-height: 1.08; letter-spacing: -.02em; margin: 14px 0 20px; }
.leader__lead { font-size: clamp(15px,1.7vw,18px); color: var(--text-dim); line-height: 1.65; max-width: 48ch; }
.leader__quote {
  margin: 26px 0 0; padding-left: 20px; border-left: 2px solid var(--accent);
  font-size: clamp(16px,1.9vw,21px); font-weight: 600; line-height: 1.4; color: var(--text); max-width: 40ch;
}
.leader__cta { margin-top: 34px; }
@media (max-width: 860px) {
  .leader__wrap { grid-template-columns: 1fr; gap: 26px; }
  .leader__media { max-width: 420px; }
}

.team { position: relative; z-index: 5; padding: clamp(70px,11vh,140px) 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px,2vw,28px); }
.member { border-radius: var(--radius-lg); }
.member__photo {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #18181b, #0e0e10); border: 1px solid var(--line);
  display: grid; place-items: center; margin-bottom: 18px; transition: border-color .35s var(--ease);
}
.member__photo span { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-mute); }
.member__photo img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); display: block; }
.member:hover .member__photo { border-color: rgba(255,92,0,.45); }
.member__name { font-size: clamp(17px,1.9vw,21px); font-weight: 700; letter-spacing: -.01em; line-height: 1.25; }
.member__role { font-size: 13px; font-weight: 600; color: var(--accent); margin-top: 7px; letter-spacing: .01em; }
.member__spec { font-size: 13.5px; color: var(--text-dim); line-height: 1.55; margin-top: 8px; }

.member--more {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between; gap: clamp(20px,3vw,48px); flex-wrap: wrap;
  padding: clamp(28px,3vw,42px); border-radius: var(--radius-lg);
  border: 1px solid rgba(255,92,0,.32);
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(255,92,0,.16), transparent 62%),
    linear-gradient(120deg, rgba(255,92,0,.09), rgba(255,255,255,.02));
}
.more__avatars { display: flex; align-items: center; margin-bottom: 18px; }
.more__avatars img {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--bg-soft); margin-left: -14px;
}
.more__avatars img:first-child { margin-left: 0; }
.more__count {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; margin-left: -14px;
  background: var(--accent); color: #140a03; font-weight: 800; font-size: 22px; line-height: 1;
  border: 2px solid var(--bg-soft);
}
.more__title { font-size: clamp(20px,2.3vw,28px); font-weight: 800; letter-spacing: -.01em; }
.more__text { font-size: clamp(14px,1.5vw,16px); color: var(--text-dim); margin-top: 8px; max-width: 52ch; line-height: 1.6; }
.more__btn { flex-shrink: 0; }

.team-dots { display: none; }

.pricing { position: relative; z-index: 5; padding: clamp(70px,11vh,140px) 0; overflow-x: clip; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px,1.6vw,22px); }
.price {
  padding: clamp(26px,2.6vw,36px); border-radius: var(--radius-lg);
  background: var(--bg-soft); border: 1px solid var(--line); box-shadow: var(--edge-light);
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.price:hover { transform: translateY(-4px); border-color: rgba(255,92,0,.45); }
.price__cat { font-size: clamp(18px,2vw,22px); font-weight: 700; letter-spacing: -.01em; margin-bottom: 22px; }
.price__list { list-style: none; display: grid; }
.price__row {
  display: grid; grid-template-columns: 1fr auto; gap: 2px 20px; align-items: baseline;
  padding: 13px 0; border-top: 1px solid rgba(255,255,255,.07);
}
.price__row:first-child { border-top: none; padding-top: 0; }
.price__name { min-width: 0; font-size: 14px; color: var(--text-dim); line-height: 1.45; }
.price__val { font-size: 14.5px; font-weight: 700; color: var(--text); text-align: right; white-space: nowrap; }
.pricing__note { margin-top: clamp(28px,4vh,44px); font-size: 14px; color: var(--text-mute); line-height: 1.6; max-width: 64ch; }

.price-acc { border-top: 1px solid var(--line); }
.pacc { border-bottom: 1px solid var(--line); }
.pacc__head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: clamp(20px,2.8vw,30px) 0; background: none; border: none; cursor: pointer;
  font: inherit; text-align: left;
}
.pacc__cat { font-size: clamp(18px,2.3vw,27px); font-weight: 700; letter-spacing: -.01em; color: var(--text); transition: color .25s; }
.pacc__head:hover .pacc__cat { color: var(--accent); }
.pacc__ic { position: relative; flex: 0 0 22px; width: 22px; height: 22px; }
.pacc__ic::before, .pacc__ic::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--accent); border-radius: 2px; transition: transform .35s var(--ease), opacity .35s;
}
.pacc__ic::before { width: 14px; height: 2px; }
.pacc__ic::after { width: 2px; height: 14px; }
.pacc.is-open .pacc__ic::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.pacc__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.pacc__inner { overflow: hidden; }
.pacc.is-open .pacc__body { grid-template-rows: 1fr; }
.pacc__inner .price__list { padding-bottom: clamp(20px,2.6vw,30px); max-width: 640px; }
.footer__addr { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

.contact { position: relative; z-index: 5; padding: clamp(70px,11vh,140px) 0; overflow: clip; }
.contact::before {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  bottom: -10%; right: -6%; width: min(720px, 76vw); aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(255,110,40,.06), transparent 72%);
}
.contact__wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,80px); align-items: start; }
.contact__title { font-size: clamp(28px,4vw,48px); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; margin-bottom: 18px; }
.contact__lead { font-size: clamp(15px,1.6vw,17px); color: var(--text-dim); line-height: 1.6; max-width: 38ch; }
.contact__list { list-style: none; margin-top: clamp(32px,5vh,52px); display: grid; gap: 18px; }
.contact__list li { display: flex; flex-direction: column; gap: 4px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.contact__label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-mute); }
.contact__value { font-size: clamp(16px,1.8vw,19px); font-weight: 600; transition: color .25s; }
a.contact__value:hover { color: var(--accent); }

.contact__form { position: relative; z-index: 1; display: grid; gap: 16px; padding: clamp(26px,3vw,40px); background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--edge-light); }
.field { position: relative; }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 16px; color: var(--text); resize: vertical;
  padding: 22px 16px 8px; background: rgba(255,255,255,.03);
  border: 1px solid var(--line); border-radius: 14px; transition: border-color .25s, background .25s;
}
.field textarea { min-height: 96px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,.05); }
.field label {
  position: absolute; left: 16px; top: 15px; font-size: 15px; color: var(--text-mute);
  pointer-events: none; transition: transform .2s var(--ease), color .2s, font-size .2s;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  transform: translateY(-12px); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent);
}
.contact__submit { justify-content: center; margin-top: 4px; }
@media (min-width: 981px) { .contact__form { margin-top: 42px; } }
.contact__note { font-size: 13.5px; color: var(--text-dim); min-height: 18px; }
.contact__note.is-ok { color: #4ade80; }
.contact__note.is-err { color: #f87171; }

.footer { position: relative; z-index: 5; border-top: 1px solid var(--line); padding: clamp(50px,8vh,80px) 0 28px; }
.footer__wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px,4vw,60px); }
.footer__logo { font-weight: 800; letter-spacing: .1em; font-size: 20px; }
.footer__logo .accent { color: var(--accent); }
.footer__tag { font-size: 14px; color: var(--text-dim); margin-top: 14px; max-width: 30ch; line-height: 1.6; }
.footer__nav { display: grid; gap: 12px; align-content: start; }
.footer__nav a { font-size: 15px; color: var(--text-dim); transition: color .25s; }
.footer__nav a:hover { color: var(--text); }
.footer__contact { display: grid; gap: 12px; align-content: start; }
.footer__contact a { font-size: 15px; font-weight: 600; transition: color .25s; }
.footer__contact a:hover { color: var(--accent); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: clamp(40px,6vh,64px); padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--text-mute); }
.footer__top { transition: color .25s; }
.footer__top:hover { color: var(--accent); }

.marquee {
  position: relative; z-index: 5; overflow: hidden;
  padding: clamp(22px,3vh,34px) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track { display: flex; align-items: center; gap: 28px; width: max-content; animation: marquee 32s linear infinite; }
.marquee span { font-size: clamp(24px,4vw,44px); font-weight: 800; letter-spacing: -.02em; color: var(--text); white-space: nowrap; }
.marquee i { color: var(--accent); font-size: clamp(16px,2.4vw,26px); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.svc-grid, .case-grid, .price-grid { perspective: 1200px; }

[data-anim] { will-change: transform, opacity, clip-path; }
@media (prefers-reduced-motion: no-preference) {
  [data-anim] { opacity: 0; }
}

.quote { position: relative; z-index: 5; padding: clamp(80px,14vh,180px) 0; text-align: center; }
.quote .sec-head__kicker { margin-bottom: 26px; }
.quote__text {
  font-size: clamp(26px,4.4vw,54px); font-weight: 800; line-height: 1.28; letter-spacing: -.02em;
  max-width: 20ch; margin: 0 auto;
}
.quote__text .word { color: rgba(244,243,241,.16); }
.quote__text .word.is-key { color: var(--accent); }

.faq { position: relative; z-index: 5; padding: clamp(70px,11vh,140px) 0; }
.faq-list { max-width: 860px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: clamp(22px,3vh,30px) 0; background: none; border: none; cursor: pointer;
  font: inherit; font-size: clamp(17px,2.2vw,23px); font-weight: 600; color: var(--text); text-align: left;
  transition: color .25s;
}
.faq-q:hover { color: var(--accent); }
.faq-ic { position: relative; flex: 0 0 22px; width: 22px; height: 22px; }
.faq-ic::before, .faq-ic::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--accent); border-radius: 2px; transition: transform .35s var(--ease), opacity .35s;
}
.faq-ic::before { width: 14px; height: 2px; }
.faq-ic::after { width: 2px; height: 14px; }
.faq-item.is-open .faq-ic::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq-a__inner { overflow: hidden; }
.faq-a__inner p { padding-bottom: clamp(22px,3vh,30px); font-size: clamp(15px,1.7vw,17px); color: var(--text-dim); line-height: 1.6; max-width: 62ch; }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }

.cta { position: relative; z-index: 5; padding: clamp(70px,11vh,150px) 0; }
.cta__wrap {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(48px,7vw,90px) clamp(24px,5vw,60px); border-radius: clamp(24px,3vw,40px);
  background: linear-gradient(160deg, rgba(255,92,0,.12), rgba(255,255,255,.02));
  border: 1px solid rgba(255,92,0,.25);
}
.cta__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 90% at 50% 0%, rgba(255,92,0,.28), transparent 65%);
}
.cta__title { position: relative; font-size: clamp(28px,4.4vw,54px); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; }
.cta__text { position: relative; margin: 20px auto 0; max-width: 44ch; color: var(--text-dim); font-size: clamp(15px,1.7vw,18px); line-height: 1.6; }
.cta__btn { position: relative; margin-top: 32px; }

@media (max-width: 980px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .steps__line { display: none; }
  .contact__wrap { grid-template-columns: 1fr; }
}

@media (max-width: 1023px) {
  .nav__cta { display: none; }
  .lang { margin-left: auto; margin-right: 10px; }
  .nav--open, .nav--open.is-scrolled {
    background: transparent; border-color: transparent;
    transition: none;
    backdrop-filter: none; -webkit-backdrop-filter: none;
  }
  .nav--open .nav__menu {
    display: flex; flex-direction: column; gap: 20px;
    position: fixed; inset: 0; z-index: 90;
    align-items: center; justify-content: center;
    background: rgba(10,10,11,.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  }
  .nav--open .nav__menu a {
    font-size: 26px; font-weight: 600; color: var(--text);
    opacity: 0; transform: translateY(18px); animation: navLinkIn .55s var(--ease) forwards;
  }
  .nav--open .nav__menu a:nth-child(1) { animation-delay: .06s; }
  .nav--open .nav__menu a:nth-child(2) { animation-delay: .12s; }
  .nav--open .nav__menu a:nth-child(3) { animation-delay: .18s; }
  .nav--open .nav__menu a:nth-child(4) { animation-delay: .24s; }
  .nav--open .nav__menu a:nth-child(5) { animation-delay: .3s; }
  .nav--open .nav__menu-cta { display: inline-flex; margin-top: 18px; animation-delay: .36s; }
}
@keyframes navLinkIn { to { opacity: 1; transform: none; } }

@media (max-width: 760px) {
  .hero__points { inset: auto 0 0 0; top: auto; height: auto; padding-bottom: 168px; }
  .hpoint {
    position: static; max-width: none; width: 50%; float: left;
    padding: 8px clamp(14px,4vw,20px); text-align: left !important;
  }
  .hpoint h3 { font-size: 15px; margin: 4px 0 2px; }
  .hpoint p { display: none; }

  .hero__intro { padding: 80px clamp(16px,5vw,22px) 44px; }
  .hero__eyebrow { margin-bottom: 30px; }
  .hero__title { font-size: clamp(38px, 11vw, 62px); line-height: 1.1; }
  .hero__sub { font-size: 15px; max-width: 92%; margin-top: 30px; }

  .hero__badges { gap: 7px; bottom: max(16px, env(safe-area-inset-bottom)); }
  .hero__badges .badge { min-width: 0; padding: 9px 12px; border-radius: 14px; }
  .badge__num { font-size: 18px; }
  .badge__label { font-size: 10px; }

  .nav { padding: 12px 16px; }
  .nav__logo-img { height: 60px; }

  .about__text { font-size: clamp(22px, 6.4vw, 34px); }
  .about__stats { gap: 14px; margin-top: 50px; padding-top: 34px; }
  .stat__num { font-size: clamp(32px, 10vw, 48px); }
  .stat__label { font-size: 11px; }

  .hero__ghost { font-size: 11vw; -webkit-text-stroke-width: 1.5px; }
  .about { background: linear-gradient(to bottom, transparent 0%, rgba(10,10,11,.4) 24%, rgba(10,10,11,.85) 44%, var(--bg) 60%); }

  .services, .process, .pricing, .cases, .team, .contact { padding: clamp(56px,9vh,90px) 0; }
  .quote { padding: clamp(46px,7vh,72px) 0; }
  .quote .sec-head__kicker { margin-bottom: 18px; }
  .cta { padding: clamp(40px,6vh,64px) 0; }
  .svc-grid { grid-template-columns: 1fr; gap: 12px; }
  .price-grid { grid-template-columns: 1fr; gap: 12px; }
  .svc { padding: 22px; }
  .svc-row { padding: 20px 2px; gap: 14px; }
  .svc-row__text { display: none; }
  .case-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 22px; }
  .team-grid {
    grid-template-columns: none; display: flex; gap: 14px;
    margin: 0 calc(-1 * clamp(20px,5vw,40px));
    padding: 4px clamp(20px,5vw,40px) 2px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scroll-padding-left: clamp(20px,5vw,40px);
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .team-grid::-webkit-scrollbar { display: none; }
  .member {
    flex: 0 0 80%; scroll-snap-align: start;
    display: block; padding: 0; background: none; border: none;
  }
  .member__photo { aspect-ratio: 4 / 5; margin-bottom: 14px; }
  .member__name { font-size: 18px; }
  .member--more {
    display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 0; padding: 26px;
  }
  .member--more .more__btn { margin-top: 22px; }

  .team-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
  .team-dot {
    width: 8px; height: 8px; padding: 0; border: none; border-radius: 50%;
    background: var(--line); cursor: pointer; transition: background .25s var(--ease), transform .25s var(--ease);
  }
  .team-dot.is-active { background: var(--accent); transform: scale(1.35); }
  .footer__wrap { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 759px) {
  .hero { height: 320vh; }
}

@media (min-width: 1024px) {
  .nav__menu { display: flex; }
  .nav__burger { display: none; }
  .hpoint { max-width: 250px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .hero { height: auto; }
  .hero__sticky { position: relative; min-height: 100svh; }
  .hero__intro, .hpoint, .hero__badges { opacity: 1 !important; }
  .hero__outro { display: none; }
  .about__text .word { color: var(--text); }
}

.block { position: relative; z-index: 5; padding: clamp(70px,11vh,140px) 0; }

.shero {
  position: relative; overflow: hidden;
  padding: clamp(130px,22vh,210px) 0 clamp(50px,8vh,90px);
}
.shero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(64% 70% at 50% -10%, rgba(255,92,0,.16), transparent 62%);
}
.shero .wrap { position: relative; }
.crumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-dim); margin-bottom: 26px; transition: color .25s;
}
.crumb:hover { color: var(--accent); }
.shero__title {
  font-size: clamp(34px,6vw,66px); font-weight: 800; line-height: 1.06;
  letter-spacing: -.03em; max-width: 20ch; overflow-wrap: break-word;
}
.shero__title .hl { color: var(--accent); }
.shero__sub {
  margin-top: 22px; max-width: 62ch; font-size: clamp(15px,1.8vw,19px);
  color: var(--text-dim); line-height: 1.62;
}
.shero__cta { margin-top: 34px; }

.svc__list { list-style: none; margin-top: 16px; display: grid; gap: 9px; }
.svc__list li { position: relative; padding-left: 18px; font-size: 13.5px; color: var(--text-mute); line-height: 1.5; }
.svc__list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

.sec-head p { margin-top: 16px; color: var(--text-dim); font-size: clamp(15px,1.7vw,18px); line-height: 1.62; }

.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px,1.6vw,22px); }
.adv {
  padding: clamp(24px,2.6vw,34px); border-radius: var(--radius-lg);
  background: var(--bg-soft); border: 1px solid var(--line);
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.adv:hover { transform: translateY(-4px); border-color: rgba(255,92,0,.45); }
.adv__title { font-size: clamp(17px,1.9vw,21px); font-weight: 700; margin-bottom: 10px; letter-spacing: -.01em; }
.adv__text { font-size: 14.5px; color: var(--text-dim); line-height: 1.6; }

.sstats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px,3vw,50px); }
.sstats .stat__num { font-size: clamp(34px,5vw,68px); }

.status {
  min-height: 100svh; display: grid; place-items: center; text-align: center;
  padding: 100px clamp(20px,5vw,40px); position: relative; overflow: hidden;
}
.status__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 55% at 50% 40%, rgba(255,92,0,.14), transparent 65%);
}
.status__inner { position: relative; max-width: 560px; }
.status__logo { display: inline-block; margin-bottom: 40px; font-weight: 800; letter-spacing: .1em; font-size: 20px; }
.status__logo .accent { color: var(--accent); }
.status__code { font-size: clamp(70px,18vw,150px); font-weight: 800; color: var(--accent); line-height: 1; letter-spacing: -.04em; margin-bottom: 8px; }
.status__title { font-size: clamp(26px,4vw,44px); font-weight: 800; line-height: 1.14; letter-spacing: -.02em; margin-bottom: 16px; }
.status__text { color: var(--text-dim); font-size: clamp(15px,1.7vw,18px); line-height: 1.6; margin: 0 auto 32px; max-width: 46ch; }
.status__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

@media (max-width: 980px) {
  .adv-grid { grid-template-columns: 1fr; }
  .sstats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 760px) {
  .shero { padding: clamp(110px,18vh,150px) 0 clamp(40px,7vh,60px); }
  .block { padding: clamp(56px,9vh,90px) 0; }
  .sstats { gap: 18px; }
  .sstats .stat__num { font-size: clamp(30px,9vw,44px); }
}

.vplay {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 72px; height: 72px; padding: 0; border: none; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer; z-index: 2;
  background: var(--accent); color: #140a03;
  box-shadow: 0 10px 34px -6px rgba(255, 92, 0, .7);
  transition: transform .25s var(--ease);
}
.vplay::before { content: '▶'; font-size: 24px; margin-left: 3px; }
.vplay::after {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid rgba(255, 92, 0, .5); animation: vpulse 2.2s ease-out infinite;
}
@keyframes vpulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.35); opacity: 0; } }

.leader__play:hover { transform: translate(-50%, -50%) scale(1.08); }
.leader__vlabel {
  position: absolute; left: 18px; top: 18px; z-index: 2;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text);
  padding: 7px 13px; border-radius: var(--radius-pill);
  background: rgba(10, 10, 11, .55); border: 1px solid var(--line);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}

.case__video {
  align-self: flex-start; margin-top: 16px; display: inline-flex; align-items: center; gap: 8px;
  font: inherit; font-size: 13px; font-weight: 600; color: var(--accent); cursor: pointer;
  background: none; border: 1px solid rgba(255, 92, 0, .35); border-radius: var(--radius-pill);
  padding: 8px 15px; transition: background .25s var(--ease), border-color .25s;
}
.case__video::before { content: '▶'; font-size: 10px; }
.case__video:hover { background: rgba(255, 92, 0, .12); border-color: rgba(255, 92, 0, .6); }

.case-study__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.case-study__status {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px;
  font-size: 12.5px; font-weight: 600; color: var(--accent);
  padding: 7px 14px; border: 1px solid rgba(255, 92, 0, .35); border-radius: var(--radius-pill);
}
.case-study__status::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255, 92, 0, .55); animation: vdot 2s infinite;
}
@keyframes vdot { 0% { box-shadow: 0 0 0 0 rgba(255,92,0,.55); } 70% { box-shadow: 0 0 0 8px rgba(255,92,0,0); } 100% { box-shadow: 0 0 0 0 rgba(255,92,0,0); } }
.case-study__title { font-size: clamp(24px, 3vw, 40px); font-weight: 800; line-height: 1.14; letter-spacing: -.02em; margin-bottom: 16px; }
.case-study__lead { font-size: clamp(15px, 1.7vw, 17px); color: var(--text-dim); line-height: 1.65; max-width: 52ch; }
.case-study__list { list-style: none; display: grid; gap: 11px; margin-top: 22px; }
.case-study__list li { position: relative; padding-left: 26px; color: var(--text-dim); font-size: 15px; line-height: 1.5; }
.case-study__list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 2px; background: var(--accent); }
.case-study__poster {
  position: relative; display: block; width: 100%; padding: 0; cursor: pointer;
  aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: #000;
}
.case-study__poster img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .72; transition: opacity .3s, transform .5s var(--ease); }
.case-study__poster:hover img { opacity: .88; transform: scale(1.04); }
.case-study__poster:hover .vplay { transform: translate(-50%, -50%) scale(1.08); }

@media (prefers-reduced-motion: reduce) {
  .vplay::after, .case-study__status::before { animation: none; }
}
@media (max-width: 820px) {
  .case-study__grid { grid-template-columns: 1fr; gap: 26px; }
}

html.vmodal-open, html.vmodal-open body { overflow: hidden; }
.vmodal {
  position: fixed; inset: 0; z-index: 100000; display: grid; place-items: center;
  padding: clamp(16px, 4vw, 40px);
  padding-top: max(clamp(16px, 4vw, 40px), env(safe-area-inset-top));
  padding-bottom: max(clamp(16px, 4vw, 40px), env(safe-area-inset-bottom));
}
.vmodal[hidden] { display: none; }
.vmodal__backdrop { position: absolute; inset: 0; background: rgba(6, 6, 8, .82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.vmodal__box { position: relative; width: min(1000px, 100%); }
.vmodal--vertical .vmodal__box { width: min(420px, 92vw); }
.vmodal__frame { position: relative; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; background: #000; box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .8); }
.vmodal--vertical .vmodal__frame { aspect-ratio: 9 / 16; max-height: 86vh; }
.vmodal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vmodal__close {
  position: absolute; z-index: 2;
  top: max(16px, env(safe-area-inset-top)); right: max(16px, env(safe-area-inset-right));
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer; font-size: 26px; line-height: 1; color: var(--text);
  background: rgba(20, 18, 24, .72); border: 1px solid var(--line);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  -webkit-tap-highlight-color: transparent; transition: background .2s;
}
.vmodal__close:hover { background: rgba(255, 255, 255, .16); }

.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
