:root {
  --logo-green: #5be340;
  --logo-green-deep: #009c6d;
  --logo-blue: #00b0ff;
  --logo-blue-deep: #0047db;
  --studio-amber: #ffb36b;
  --studio-orange: #ff7a18;
  --studio-teal: #33c6b8;
  --bg: #050608;
  --bg-soft: #0b0f17;
  --bg-card: #10141c;
  --text: #f5f7fb;
  --muted: #a7afbd;
  --muted-2: #737d8f;
  --border: rgba(255,255,255,.12);
  --shadow: 0 24px 80px rgba(0,0,0,.46);
  --radius: 28px;
  --container: 1180px;
  --anchor-offset: 148px;
}

* { box-sizing: border-box; }
html { scroll-padding-top: var(--anchor-offset); }
body {
  margin: 0;
  font-family: Inter, Manrope, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  max-width: 100%;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(0,176,255,.92);
  outline-offset: 3px;
}
.page-home .page {
  background:
    radial-gradient(circle at 14% 8%, rgba(91,227,64,.13), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(0,176,255,.16), transparent 34%),
    #050608;
}

.page-contacts .page {
  background:
    radial-gradient(circle at 14% 8%, rgba(91,227,64,.12), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(0,176,255,.14), transparent 34%),
    #050608;
}

.page-translations .page {
  background:
    radial-gradient(circle at 12% 8%, rgba(0,176,255,.16), transparent 32%),
    radial-gradient(circle at 84% 14%, rgba(0,71,219,.18), transparent 30%),
    #04070d;
}

.page-studio .page {
  background:
    radial-gradient(circle at 12% 10%, rgba(255,179,107,.14), transparent 32%),
    radial-gradient(circle at 86% 16%, rgba(51,198,184,.14), transparent 32%),
    #070708;
}

.page-studio .btn-primary {
  background: linear-gradient(135deg, var(--studio-orange), #ff9b42);
  box-shadow: 0 18px 50px rgba(255,122,24,.24);
}

.page-studio .dot {
  background: var(--studio-amber);
  box-shadow: 0 0 0 7px rgba(255,179,107,.14);
}

.page-studio .priority {
  border-color: rgba(255,179,107,.28);
  background:
    radial-gradient(circle at 20% 0%, rgba(255,179,107,.14), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
}

.page-studio .featured {
  border-color: rgba(255,122,24,.30);
  background:
    radial-gradient(circle at 15% 0%, rgba(255,122,24,.18), transparent 46%),
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
}

.page-studio .section-blue {
  background:
    radial-gradient(circle at 18% 12%, rgba(255,179,107,.10), transparent 32%),
    #070708;
}

.page-translations .section-blue {
  background:
    radial-gradient(circle at 16% 12%, rgba(0,176,255,.14), transparent 32%),
    #04070d;
}
img { max-width: 100%; display: block; }

main section[id],
.legal-card[id] {
  scroll-margin-top: var(--anchor-offset);
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero > .container,
.section > .container,
.legal-hero > .container,
.legal-section > .container {
  width: auto;
  max-width: var(--container);
}

.page {
  position: relative;
  max-width: 100%;
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(5,6,8,.76);
  backdrop-filter: blur(18px);
}

.page-home .site-header,
.page-studio .site-header {
  position: fixed;
  right: 0;
  left: 0;
}

.page-home main,
.page-studio main {
  padding-top: 88px;
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
}

.logo {
  --logo-width: 207px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  min-width: var(--logo-width);
  padding-top: 8px;
  padding-bottom: 4px;
  position: relative;
  isolation: isolate;
}
.logo::before {
  content: "";
  position: absolute;
  inset: -7px -10px;
  z-index: -1;
  border-radius: 14px;
  background: rgba(255,255,255,.075);
  filter: blur(10px);
  opacity: .85;
  pointer-events: none;
}
.logo img {
  width: var(--logo-width);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255,255,255,.14));
}
.logo span {
  display: block;
  width: var(--logo-width);
  color: rgba(245,247,251,.72);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 3px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  color: rgba(245,247,251,.78);
  font-size: 14px;
  font-weight: 850;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 18px 48px rgba(0,0,0,.28);
}
.nav::-webkit-scrollbar { display: none; }
.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,.075);
}
.nav a.active {
  border-color: rgba(255,255,255,.20);
  background:
    linear-gradient(135deg, rgba(91,227,64,.22), rgba(0,176,255,.26)),
    rgba(255,255,255,.10);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 12px 30px rgba(0,176,255,.16);
}
.nav-label-short {
  display: none;
}
.page-studio .nav a.active {
  background:
    linear-gradient(135deg, rgba(255,179,107,.28), rgba(51,198,184,.18)),
    rgba(255,255,255,.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 12px 30px rgba(255,122,24,.15);
}

.anchor-nav {
  border-top: 1px solid rgba(255,255,255,.06);
  background:
    linear-gradient(90deg, rgba(91,227,64,.08), transparent 34%),
    rgba(5,6,8,.58);
}

.page-home .anchor-nav,
.page-studio .anchor-nav {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height .22s ease, opacity .2s ease, transform .2s ease;
}

.page-home.is-scrolled .anchor-nav,
.page-studio.is-scrolled .anchor-nav {
  max-height: 56px;
  opacity: 1;
  transform: translateY(0);
}

.anchor-nav--studio {
  background:
    linear-gradient(90deg, rgba(255,179,107,.10), transparent 34%),
    rgba(7,7,8,.58);
}

.anchor-nav__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 46px;
  padding: 0 20px;
}

.anchor-nav__label {
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.anchor-nav__links {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 20px;
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.anchor-nav__links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  white-space: nowrap;
  transition: color .2s ease;
}

.anchor-nav__links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 9px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--logo-green), var(--logo-blue));
  opacity: 0;
  transform: scaleX(.45);
  transform-origin: center;
  transition: opacity .2s ease, transform .2s ease;
}

.anchor-nav--studio .anchor-nav__links a::after {
  background: linear-gradient(90deg, var(--studio-amber), var(--studio-teal));
}

.anchor-nav__links a:hover,
.anchor-nav__links a:focus-visible {
  color: var(--text);
}

.anchor-nav__links a:hover::after,
.anchor-nav__links a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 32px;
  margin-left: auto;
  padding: 3px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: rgba(245,247,251,.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.lang-switch__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 26px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.lang-switch__button:hover,
.lang-switch__button:focus-visible {
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.07);
}

.lang-switch__button.is-active {
  background: rgba(255,255,255,.14);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.lang-switch__separator {
  color: rgba(245,247,251,.28);
  font-size: 11px;
  line-height: 1;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 32px rgba(0,0,0,.24);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.header-phone:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.09);
  box-shadow: 0 18px 38px rgba(0,0,0,.32);
}

.messenger-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,.24);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.messenger-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 18px 38px rgba(0,0,0,.32);
}
.messenger-badge svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.messenger-badge__icon {
  width: 20px;
  height: 20px;
}
.messenger-badge__icon--telegram {
  width: 36px;
  height: 36px;
}
.messenger-badge__icon--max {
  width: 36px;
  height: 36px;
}
.messenger-badge__text {
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}
.messenger-badge--telegram {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
.messenger-badge--telegram:hover {
  border-color: transparent;
  box-shadow: none;
}
.messenger-badge--max {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
.messenger-badge--max:hover {
  border-color: transparent;
  box-shadow: none;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  letter-spacing: 0;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  text-align: center;
  font: inherit;
  cursor: pointer;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,.28) 46%, transparent 68%);
  transform: translateX(-135%);
  pointer-events: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--logo-blue), var(--logo-blue-deep));
  color: white;
  box-shadow: 0 18px 50px rgba(0,176,255,.24);
}
.btn-secondary {
  border-color: var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.btn-small {
  min-height: 44px;
  padding: 0 17px;
  font-size: 14px;
}

.hero {
  position: relative;
  padding: 40px 20px 56px;
  background:
    radial-gradient(circle at 12% 14%, rgba(91,227,64,.16), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(0,176,255,.16), transparent 32%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.86), transparent 80%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px;
  align-items: center;
}
.hero-grid > *,
.split-grid > * {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: #dce2ed;
  font-size: 14px;
  margin-bottom: 22px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--logo-green);
  box-shadow: 0 0 0 7px rgba(91,227,64,.14);
}

h1 {
  margin: 0 0 24px;
  max-width: 860px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}
.lead {
  max-width: 720px;
  margin: 0 0 18px;
  color: #d9deea;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
  letter-spacing: 0;
}
.sublead {
  max-width: 620px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: #d9deea;
  font-size: 14px;
  white-space: nowrap;
}

.hero-media-card,
.media-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(91,227,64,.14), rgba(0,176,255,.16)), #0d121a;
  box-shadow: var(--shadow);
}
.hero-media-card img,
.media-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(.98) contrast(1.03) brightness(.8);
}
.hero-media-card::after,
.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.58), rgba(0,0,0,.06) 48%),
    linear-gradient(135deg, rgba(91,227,64,.07), rgba(0,176,255,.10));
  pointer-events: none;
}
.hero-video-card {
  display: grid;
  width: min(100%, 320px);
  min-height: clamp(340px, 48vh, 520px);
  aspect-ratio: 9 / 16;
  justify-self: center;
  place-items: stretch;
  background: #05070b;
}
.hero-video-card__poster,
.hero-video-card__video {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.hero-video-card__poster {
  display: block;
  filter: saturate(1.08) contrast(1.06) brightness(.84);
  opacity: 1;
  transition: opacity .2s ease;
  z-index: 1;
}
.hero-video-card__video {
  display: block;
  opacity: 0;
  filter: saturate(1.12) contrast(1.08) brightness(.82);
  transform: scale(1.01);
  transition: opacity .2s ease;
  z-index: 2;
}
.hero-video-card--ready .hero-video-card__poster,
.hero-video-card--active .hero-video-card__poster {
  opacity: 0;
  pointer-events: none;
}
.hero-video-card--ready .hero-video-card__video,
.hero-video-card--active .hero-video-card__video {
  opacity: 1;
}
.hero-video-card::after {
  z-index: 3;
  background:
    linear-gradient(to top, rgba(0,0,0,.56), rgba(0,0,0,.08) 48%),
    linear-gradient(145deg, rgba(91,227,64,.20), rgba(0,176,255,.18) 46%, rgba(0,71,219,.18));
  mix-blend-mode: screen;
  opacity: .74;
}
.hero-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at 22% 18%, rgba(91,227,64,.22), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(0,176,255,.22), transparent 34%),
    linear-gradient(to bottom, rgba(5,6,8,.08), rgba(5,6,8,.42));
  pointer-events: none;
  opacity: .78;
}
.hero-video-card--active .hero-video-card__video {
  filter: saturate(1.02) contrast(1.02) brightness(1);
  transform: none;
}
.hero-video-card--active::before,
.hero-video-card--active::after {
  display: none;
}
.hero-video-card__activate {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.hero-video-card--active .hero-video-card__activate {
  display: none;
}
.hero-video-card__play {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 50px rgba(0,0,0,.32);
  transition: transform .2s ease, background-color .2s ease;
}
.hero-video-card__activate:hover .hero-video-card__play,
.hero-video-card__activate:focus-visible .hero-video-card__play {
  transform: scale(1.04);
  background: #fff;
}
.hero-video-card__play span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #10151d;
}
.media-card--map::after { display: none; }
.media-card.has-embed::after,
.media-card.has-poster::after { display: none; }
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #05070b;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-embed--fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}
.video-poster {
  position: relative;
  display: block;
  width: 100%;
  min-height: inherit;
  padding: 0;
  border: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.12), transparent 34%),
    linear-gradient(135deg, rgba(91,227,64,.20), rgba(0,176,255,.18)),
    #0b1118;
  cursor: pointer;
  overflow: hidden;
}
.video-poster img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  filter: brightness(.72);
}
.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.08) 45%),
    linear-gradient(135deg, rgba(91,227,64,.10), rgba(0,176,255,.12));
  pointer-events: none;
}
.video-poster__caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  gap: 6px;
  max-width: 320px;
  text-align: left;
}
.video-poster__label {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.video-poster__hint {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}
.video-poster--no-image .video-poster__caption { max-width: 260px; }
.video-poster__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 82px;
  height: 82px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  display: grid;
  place-items: center;
  z-index: 2;
  transition: transform .2s ease, background-color .2s ease;
}
.video-poster:hover .video-poster__play {
  transform: translate(-50%, -50%) scale(1.04);
  background: #fff;
}
.video-poster__triangle {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #10151d;
  margin-left: 4px;
}
.video-modal-open {
  overflow: hidden;
}
.video-modal-open .page,
.video-modal-open .mobile-cta,
.video-modal-open .back-to-top {
  filter: blur(10px);
}
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}
.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.66);
  backdrop-filter: blur(10px);
}
.video-modal__dialog {
  position: relative;
  width: min(100%, 1040px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: #05070b;
  box-shadow: 0 30px 90px rgba(0,0,0,.56);
  overflow: hidden;
}
.video-modal__content {
  background: #05070b;
}
.video-modal__content .video-embed {
  aspect-ratio: 16 / 9;
}
.hero-video-modal .video-modal__dialog {
  width: min(calc(100vw - 32px), calc((100dvh - 32px) * 9 / 16));
  transform-origin: center center;
  will-change: transform, opacity;
}
.hero-video-modal .video-modal__content {
  display: grid;
}
.hero-video-modal__frame {
  display: grid;
  width: 100%;
  max-height: calc(100dvh - 32px);
  aspect-ratio: 9 / 16;
  background: #05070b;
}
.hero-video-modal .hero-video-card__video {
  grid-area: auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
  z-index: auto;
}
.video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(5,7,11,.72);
  color: #fff;
  font: inherit;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.video-modal__close:hover,
.video-modal__close:focus-visible {
  transform: scale(1.04);
  border-color: rgba(255,255,255,.30);
  background: rgba(5,7,11,.92);
}
.media-placeholder,
.video-placeholder,
.map-placeholder {
  min-height: inherit;
  display: grid;
  place-items: center;
  padding: 28px;
  color: rgba(255,255,255,.74);
  text-align: center;
}
.media-placeholder span,
.video-placeholder span,
.map-placeholder span {
  max-width: 360px;
  padding: 18px;
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: 20px;
  background: rgba(0,0,0,.18);
  line-height: 1.55;
}
.map-embed {
  min-height: inherit;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(91,227,64,.12), rgba(0,176,255,.10) 56%, rgba(0,156,109,.14)), #0b1118;
}
.map-embed__stage {
  position: relative;
  overflow: hidden;
  flex: 1 1 auto;
  display: flex;
  min-height: 468px;
}
.map-embed__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(91,227,64,.22), transparent 30%),
    radial-gradient(circle at 84% 10%, rgba(0,176,255,.16), transparent 24%),
    linear-gradient(135deg, rgba(91,227,64,.08), rgba(0,156,109,.10)),
    linear-gradient(to bottom, rgba(6,8,12,.08), rgba(6,8,12,.24));
  pointer-events: none;
}
.map-embed iframe {
  width: 100%;
  height: auto;
  flex: 1 1 auto;
  min-height: 468px;
  border: 0;
  display: block;
  filter: saturate(.9) contrast(1.03) brightness(.9);
  pointer-events: auto;
}
.map-embed iframe:not([src]) {
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.16) 0 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(135deg, rgba(229,255,232,.82), rgba(205,239,250,.82));
}
.map-embed__activate {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-100% - 20px));
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(91,227,64,.28);
  border-radius: 24px;
  background: rgba(7,14,14,.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0,0,0,.28), 0 0 0 1px rgba(0,176,255,.04) inset;
  color: #f4f7fb;
  font: inherit;
  line-height: 1.2;
  letter-spacing: .02em;
  text-align: left;
  cursor: pointer;
  z-index: 2;
  transition: opacity .18s ease, visibility .18s ease, border-color .18s ease, background .18s ease;
}
.map-embed__activate:hover,
.map-embed__activate:focus-visible {
  border-color: rgba(0,176,255,.30);
  background: rgba(7,14,14,.94);
}
.map-embed--active .map-embed__activate {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.map-embed__activate-copy {
  display: grid;
  gap: 4px;
}
.map-embed__pin-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--logo-green), var(--logo-blue));
  box-shadow: 0 0 0 4px rgba(91,227,64,.12), 0 0 18px rgba(0,176,255,.16);
  flex: 0 0 auto;
}
.map-embed__pin-label {
  display: block;
  white-space: nowrap;
}
.map-embed__activate-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}
.map-embed__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-top: 0;
  background: linear-gradient(135deg, rgba(9,18,17,.97), rgba(10,18,30,.97));
  color: #e7edf7;
}
.map-embed__footer p {
  margin: 0;
}
.map-embed__footer strong {
  display: block;
  margin-bottom: 4px;
  color: #f4fff6;
}
.map-embed__footer .inline-link {
  margin-top: 0;
  color: #b8fff0;
  white-space: nowrap;
}
.floating-card {
  --floating-card-opacity: .42;
  position: absolute;
  left: -26px;
  bottom: 28px;
  width: min(340px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(13,17,25,var(--floating-card-opacity));
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  z-index: 2;
}
.floating-card h3 { margin: 0 0 14px; font-size: 17px; letter-spacing: 0; }

.section {
  padding: 108px 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.section-compact {
  padding-top: 82px;
  padding-bottom: 82px;
}
.section-alt { background: linear-gradient(180deg, #050608, #080b11); }
.section-blue {
  background:
    radial-gradient(circle at 20% 16%, rgba(0,176,255,.12), transparent 32%),
    #050608;
}
.section-green {
  background:
    radial-gradient(circle at 18% 12%, rgba(91,227,64,.10), transparent 30%),
    #050608;
}
.section-copy { margin-bottom: 34px; }
.section-copy h2,
.contact-card h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}
.section-copy p,
.contact-card p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.contact-card p {
  max-width: 720px;
}
.split-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 52px;
  align-items: start;
}

.contact-route--single {
  min-height: calc(100vh - 83px);
  padding-top: clamp(24px, 4vw, 44px);
  padding-bottom: clamp(24px, 4vw, 44px);
  display: flex;
  align-items: center;
}
.contact-route--single .split-grid {
  grid-template-columns: .74fr 1.26fr;
  gap: 36px;
  align-items: center;
}
.contact-route--single .section-copy {
  margin-bottom: 0;
}
.contact-route--single .contact-panel {
  padding: clamp(22px, 3vw, 30px);
}
.contact-route--single .contact-panel .eyebrow {
  margin-bottom: 16px;
}
.contact-route--single .contact-panel h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 3.6vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}
.contact-route--single .contact-list {
  gap: 8px;
  margin-bottom: 16px;
}
.contact-route--single .contact-link {
  padding: 13px 16px;
}
.contact-route--single .contact-link span span {
  display: none;
}
.contact-route--single .media-card {
  min-height: min(58vh, 510px);
  height: min(58vh, 510px);
}
.contact-route--single .map-embed__stage,
.contact-route--single .map-embed iframe {
  min-height: min(43vh, 410px);
}

.grid-2,
.grid-3,
.grid-4,
.logo-wall,
.faq-list,
.process-grid,
.case-grid,
.gallery-grid,
.examples-grid {
  display: grid;
  gap: 16px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.process-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.examples-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }

.card,
.package-card,
.case-card,
.contact-card,
.info-card,
.faq-item,
.gallery-item,
.example-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 18px 54px rgba(0,0,0,.22);
}
.card,
.package-card,
.info-card,
.faq-item {
  min-height: 200px;
  padding: 24px;
}
.contact-card {
  display: grid;
  gap: 28px;
  padding: clamp(30px, 5vw, 58px);
  overflow: hidden;
  position: relative;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 0;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  pointer-events: none;
}
.contact-card::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--logo-green), var(--logo-blue));
  opacity: .72;
  pointer-events: none;
}
.page-studio .contact-card::after {
  background: linear-gradient(180deg, var(--studio-amber), var(--studio-teal));
}
.contact-card > * {
  position: relative;
  z-index: 1;
}
.contact-card > div {
  max-width: 820px;
}
.card h3,
.package-card h3,
.case-card h3,
.info-card h3,
.faq-item h3,
.example-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
  letter-spacing: 0;
}
.card p,
.package-card p,
.case-card p,
.info-card p,
.faq-item p,
.example-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
#audience .section-copy h2 {
  max-width: 1120px;
}
#audience .section-copy p {
  max-width: 780px;
}
.audience-grid {
  margin-bottom: 8px;
}
.audience-grid .card {
  min-height: 178px;
  padding: 22px;
  border-color: rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 16% 0%, rgba(91,227,64,.10), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.028));
}
.audience-grid .card h3 {
  font-size: 20px;
  line-height: 1.12;
}
.audience-grid .card p {
  font-size: 14px;
  line-height: 1.55;
}
.faq-accordion {
  grid-template-columns: repeat(2, minmax(0,1fr));
  align-items: start;
  gap: 12px;
}

.faq-accordion .faq-item {
  min-height: auto;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
}

.faq-accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 16px 58px 16px 20px;
  color: #f5f7fb;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: 0;
  cursor: pointer;
  list-style: none;
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #8fd8ff;
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.faq-accordion .faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  border-color: rgba(0,176,255,.28);
  background: rgba(0,176,255,.10);
}

.page-studio .faq-accordion summary::after {
  color: #ffd1a3;
}

.page-studio .faq-accordion .faq-item[open] summary::after {
  border-color: rgba(255,179,107,.32);
  background: rgba(255,179,107,.10);
}

.faq-answer {
  padding: 0 20px 20px;
}

.faq-answer p {
  max-width: 920px;
  color: #b7c0cf;
  font-size: 15px;
  line-height: 1.62;
}
.card-number {
  display: inline-flex;
  margin-bottom: 34px;
  color: rgba(255,255,255,.36);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .12em;
}
#advantages .split-grid {
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 4.4vw, 58px);
  align-items: stretch;
}
#advantages .section-copy {
  margin-bottom: 0;
  padding-top: 4px;
}
#advantages .section-copy h2 {
  max-width: 620px;
}
#advantages .grid-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
#advantages .card {
  position: relative;
  display: flex;
  min-height: 214px;
  flex-direction: column;
  overflow: hidden;
  padding: 26px 22px 24px;
  border-color: rgba(255,255,255,.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,179,107,.13), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.082), rgba(255,255,255,.034)),
    #090d13;
}
#advantages .card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,179,107,.72), rgba(0,217,194,.58));
  opacity: .42;
}
#advantages .card-number {
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  border: 1px solid rgba(255,179,107,.26);
  border-radius: 50%;
  background: rgba(255,179,107,.09);
  color: #ffd1a3;
  letter-spacing: .06em;
}
#advantages .card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.1;
}
#advantages .card p {
  color: #b9c2d0;
  font-size: 14px;
  line-height: 1.55;
}
.priority {
  border-color: rgba(91,227,64,.28);
  background:
    radial-gradient(circle at 20% 0%, rgba(91,227,64,.14), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
}
.featured {
  border-color: rgba(0,176,255,.34);
  background:
    radial-gradient(circle at 15% 0%, rgba(0,176,255,.18), transparent 46%),
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
}
.check-list,
.field-list,
.brief-list,
.package-list,
.equipment-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #dce2ed;
  font-size: 14px;
  line-height: 1.45;
}
.package-list,
.field-list,
.equipment-list { margin-top: 18px; }
#equipment .split-grid {
  grid-template-columns: 1fr;
  gap: 28px;
}
#equipment .section-copy {
  max-width: 880px;
  margin-bottom: 0;
}
#equipment .section-copy h2 {
  max-width: 820px;
}
#equipment .grid-2 {
  gap: 18px;
}
#equipment .card {
  min-height: auto;
}
.check-list li,
.field-list li,
.brief-list li,
.equipment-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.check {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(91,227,64,.18), rgba(0,176,255,.18));
  color: #8fd8ff;
  font-size: 12px;
}
.price {
  display: inline-flex;
  margin-bottom: 14px;
  color: #8fd8ff;
  font-size: 14px;
  font-weight: 850;
}
.pricing-addons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.pricing-addon {
  min-height: 100%;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
}
.pricing-addon h3 {
  margin: 0 0 10px;
  font-size: 21px;
  letter-spacing: 0;
}
.pricing-addon p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.inline-link {
  display: inline-flex;
  margin-top: 28px;
  color: #8fd8ff;
  font-weight: 850;
  letter-spacing: 0;
}
.proof-grid,
.testimonial-grid,
.estimate-grid {
  display: grid;
  gap: 16px;
}

.proof-grid {
  grid-template-columns: repeat(2, minmax(0,1fr));
}

.metric-card,
.quote-card,
.estimate-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.078), rgba(255,255,255,.036));
  box-shadow: 0 18px 54px rgba(0,0,0,.22);
}

.metric-card {
  display: grid;
  gap: 10px;
  align-content: start;
}

.metric-value {
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  line-height: .95;
  letter-spacing: 0;
  font-weight: 900;
}

.metric-label {
  color: #dce2ed;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 800;
}

.metric-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0,1fr));
  margin-top: 16px;
}

.quote-card h3,
.estimate-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: 0;
}

.quote-card p,
.estimate-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.quote-card strong {
  display: inline-flex;
  margin-top: 18px;
  color: #dce2ed;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.estimate-grid {
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.estimate-meta {
  display: inline-flex;
  margin-bottom: 16px;
  color: #8fd8ff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.estimate-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #dce2ed;
  font-size: 14px;
  line-height: 1.5;
}

.estimate-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cases-disclaimer {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.6;
}

.mobile-cta {
  display: none;
}

.mobile-cta__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: 0;
  text-align: center;
}

.mobile-cta__link--primary {
  background: linear-gradient(135deg, var(--logo-blue), var(--logo-blue-deep));
  color: #fff;
  box-shadow: 0 16px 36px rgba(0,176,255,.22);
}

.page-studio .mobile-cta__link--primary {
  background: linear-gradient(135deg, var(--studio-orange), #ff9b42);
  box-shadow: 0 16px 36px rgba(255,122,24,.22);
}

.mobile-cta__link--secondary {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.07);
  color: #fff;
}

.note-box {
  padding: 18px;
  border: 1px solid rgba(0,176,255,.22);
  border-radius: 22px;
  background: rgba(0,176,255,.055);
  color: #dce2ed;
  font-size: 15px;
  line-height: 1.55;
}

.logo-wall {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  margin-top: 28px;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 18%, rgba(91,227,64,.08), transparent 28%),
    radial-gradient(circle at 82% 0%, rgba(0,176,255,.1), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
}
.logo-wall-title {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  color: var(--muted-2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.brand-logo {
  position: relative;
  min-width: 0;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  overflow: hidden;
  isolation: isolate;
}
.brand-logo::before {
  content: "";
  position: absolute;
  inset: 18px 12px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(255,255,255,.22), rgba(255,255,255,.1) 40%, rgba(255,255,255,0) 72%);
  opacity: .24;
  filter: blur(18px);
  z-index: 0;
}
.brand-logo--spotlight::before { opacity: .62; }
.brand-logo img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: min(100%, 190px);
  height: auto;
  max-height: 52px;
  object-fit: contain;
}
.brand-logo-crop {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
}
.brand-logo-crop--sber {
  width: 180px;
  height: 52px;
}
.brand-logo-crop--sber img {
  width: 311px;
  max-width: none;
  height: 52px;
  max-height: none;
}
.brand-logo--mos img { max-height: 72px; }
.brand-logo--rzd img { max-height: 76px; max-width: min(100%, 210px); }
.brand-logo--lemana img { max-height: 74px; }
.brand-logo--nokia img { max-height: 48px; max-width: min(100%, 220px); }
.brand-logo--t2 img,
.brand-logo--vk img { max-height: 72px; max-width: min(100%, 92px); }
.brand-logo--mts img { max-height: 68px; }
.brand-logo--pwc img { max-height: 62px; }
.brand-logo--hh img { max-height: 70px; max-width: min(100%, 70px); }
.case-grid {
  grid-template-columns: repeat(3, minmax(0,1fr));
  align-items: start;
}
.case-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.068), rgba(255,255,255,.028)),
    #0c1017;
  box-shadow: 0 16px 42px rgba(0,0,0,.20);
  transform: translateY(0);
  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    background .22s ease;
}
.case-card:hover,
.case-card:focus-within {
  border-color: rgba(0,176,255,.24);
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(0,0,0,.30);
}
.case-card:has(.video-poster:active) {
  transform: translateY(-1px) scale(.992);
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
}
.case-card.large {
  grid-column: span 2;
  grid-row: span 2;
}
.case-media {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(91,227,64,.16), rgba(0,176,255,.16)), #0d121a;
  color: rgba(255,255,255,.72);
  text-align: center;
  padding: 0;
  overflow: hidden;
}
.case-card.large .case-media {
  aspect-ratio: 1680 / 885;
}
.case-media.has-embed,
.example-media.has-embed {
  padding: 0;
  overflow: hidden;
}
.case-media.has-poster,
.example-media.has-poster {
  padding: 0;
  overflow: hidden;
}
.case-media.has-poster .embed-note {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  margin: 0;
  z-index: 2;
}
.case-media.has-embed .video-embed,
.example-media.has-embed .video-embed {
  min-height: inherit;
  align-self: stretch;
}
.case-media.small { min-height: 0; }
.case-media .video-poster {
  height: 100%;
  min-height: 0;
  transition: transform .22s ease;
}
.case-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: brightness(.78);
  position: absolute;
  inset: 0;
  transform: scale(1);
  transition: transform .45s ease, filter .28s ease;
}
.case-media .video-poster::after {
  opacity: .95;
  transition: opacity .28s ease, background .28s ease;
}
.case-card:hover .case-media img,
.case-card:focus-within .case-media img {
  filter: brightness(.86);
  transform: scale(1.045);
}
.case-card:hover .case-media .video-poster::after,
.case-card:focus-within .case-media .video-poster::after {
  opacity: 1;
  background:
    linear-gradient(to top, rgba(0,0,0,.48), rgba(0,0,0,.04) 48%),
    linear-gradient(135deg, rgba(91,227,64,.18), rgba(0,176,255,.2));
}
.case-media .video-poster:active {
  transform: scale(.985);
}
.case-media.small .video-poster__play {
  width: 56px;
  height: 56px;
  box-shadow: 0 14px 36px rgba(0,0,0,.30);
}
.case-media.small .video-poster__triangle {
  border-top-width: 9px;
  border-bottom-width: 9px;
  border-left-width: 14px;
  margin-left: 3px;
}
.embed-note {
  position: relative;
  z-index: 1;
  max-width: 320px;
  padding: 16px;
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(0,0,0,.28);
  line-height: 1.55;
}
.case-body { padding: 20px; }
.case-card.large .case-body { padding: 24px; }
.case-card:not(.large) .case-body { padding: 17px 17px 18px; }
.case-card:not(.large) h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.12;
}
.case-card:not(.large) p {
  font-size: 14px;
  line-height: 1.48;
}
.case-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 18px;
}
.case-highlights div {
  min-width: 0;
  padding: 13px 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.case-card:hover .case-highlights div,
.case-card:focus-within .case-highlights div {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.065);
}
.case-card:hover .case-highlights div:nth-child(1),
.case-card:focus-within .case-highlights div:nth-child(1) {
  transform: translateY(-2px);
}
.case-card:hover .case-highlights div:nth-child(2),
.case-card:focus-within .case-highlights div:nth-child(2) {
  transform: translateY(-1px);
}
.case-highlights strong {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}
.case-highlights span {
  display: block;
  margin-top: 7px;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.25;
}
.case-media .video-poster__caption {
  left: 14px;
  right: auto;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(0,0,0,.46);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.case-card:hover .video-poster__caption,
.case-card:focus-within .video-poster__caption {
  border-color: rgba(255,255,255,.28);
  background: rgba(0,0,0,.56);
  transform: translateY(-2px);
}
.case-media .video-poster__label {
  color: #fff;
  font-size: 10px;
  letter-spacing: .06em;
}
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.tags span {
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  color: #dce2ed;
  background: rgba(255,255,255,.045);
  font-size: 11px;
  line-height: 1.2;
}
.case-stats { display: grid; gap: 12px; margin: 22px 0 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.10); }
.case-stats div { display: grid; grid-template-columns: 96px 1fr; gap: 14px; }
.case-stats dt { color: var(--muted-2); font-size: 13px; }
.case-stats dd { margin: 0; color: #dce2ed; font-size: 14px; line-height: 1.45; }
.case-meta {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.09);
}
.case-meta div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
}
.case-meta dt {
  color: var(--muted-2);
  font-size: 12px;
}
.case-meta dd {
  margin: 0;
  color: #dce2ed;
  font-size: 13px;
  line-height: 1.35;
}

.gallery-grid { grid-template-columns: 1.15fr .85fr .85fr; }
.gallery-item {
  min-height: 250px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: rgba(255,255,255,.72);
  text-align: center;
  background: linear-gradient(135deg, rgba(91,227,64,.13), rgba(0,176,255,.14)), #0d121a;
  overflow: hidden;
}
.gallery-item.large { min-height: 520px; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; min-height: inherit; filter: brightness(.78); }
.gallery-item--photo {
  position: relative;
  margin: 0;
  padding: 0;
  align-items: stretch;
}
.gallery-item--photo img { filter: brightness(.84); }
.page-studio .hero-media-card {
  overflow: hidden;
  min-height: 500px;
  border-color: rgba(255,255,255,.18);
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.02)),
    url("../assets/studio-hero-premium.jpg") center 58% / cover no-repeat,
    #0b0f15;
}
.page-studio .hero {
  padding-top: 40px;
  padding-bottom: 64px;
}
.page-studio h1 {
  max-width: 660px;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1.02;
}
.page-studio .hero-media-card img {
  position: absolute;
  inset: 0;
  min-height: 0;
  display: block;
  border-radius: inherit;
  object-position: 50% 58%;
  filter: saturate(1.04) contrast(1.04) brightness(.86);
}
.page-studio .hero-media-card::after {
  z-index: 1;
  border-radius: inherit;
  background:
    linear-gradient(to top, rgba(0,0,0,.54), rgba(0,0,0,.08) 52%),
    linear-gradient(135deg, rgba(91,227,64,.04), rgba(0,176,255,.08));
}
.page-studio .floating-card {
  --floating-card-opacity: .72;
  left: 24px;
  bottom: 24px;
  z-index: 2;
}
.page-studio .gallery-grid {
  align-items: stretch;
}
.page-studio .gallery-item--photo {
  isolation: isolate;
  border-color: rgba(255,255,255,.16);
  background: #090d12 var(--photo) var(--focus-x, 50%) var(--focus-y, 50%) / cover no-repeat;
}
.page-studio .gallery-item--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0,0,0,.56), transparent 46%),
    linear-gradient(135deg, rgba(91,227,64,.04), rgba(0,176,255,.07));
  pointer-events: none;
}
.page-studio .gallery-item--photo img {
  position: absolute;
  inset: 0;
  min-height: 0;
  object-position: var(--focus-x, 50%) var(--focus-y, 50%);
  filter: saturate(1.03) contrast(1.04) brightness(.88);
}
.page-studio .gallery-item__caption {
  z-index: 2;
  border-color: rgba(255,255,255,.16);
  background: rgba(5,8,12,.66);
}
.gallery-item__caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(8,12,18,.72);
  backdrop-filter: blur(14px);
  color: #f5f7fb;
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
}
.gallery-item--note {
  place-items: start;
  align-content: end;
  text-align: left;
  background:
    radial-gradient(circle at 14% 16%, rgba(91,227,64,.16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
}
.gallery-item--note h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 22px;
  letter-spacing: 0;
}
.gallery-item--note p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.studio-zone-section {
  padding-top: 78px;
  padding-bottom: 78px;
}
.studio-zone-card {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255,179,107,.12), rgba(51,198,184,.10)),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
  box-shadow: 0 22px 64px rgba(0,0,0,.24);
}
.studio-zone-copy h2 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}
.studio-zone-copy p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.studio-zone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.studio-zone-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #f5f7fb;
  background: rgba(255,255,255,.055);
  font-size: 13px;
}
.studio-zone-carousel {
  min-width: 0;
}
.studio-zone-carousel__viewport {
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: #090d12;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  box-shadow: 0 18px 48px rgba(0,0,0,.24);
}
.studio-zone-carousel__viewport::-webkit-scrollbar {
  display: none;
}
.studio-zone-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
}
.studio-zone-slide {
  position: relative;
  min-height: 0;
  margin: 0;
  aspect-ratio: 16 / 8.2;
  overflow: hidden;
  scroll-snap-align: start;
}
.studio-zone-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.18), transparent 46%);
  pointer-events: none;
}
.studio-zone-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03) brightness(.9);
}
.studio-zone-carousel__controls {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}
.studio-zone-carousel__button,
.studio-zone-carousel__dots button {
  border: 1px solid rgba(255,255,255,.14);
  color: #f5f7fb;
  background: rgba(255,255,255,.07);
  cursor: pointer;
}
.studio-zone-carousel__button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
}
.studio-zone-carousel__button:hover,
.studio-zone-carousel__dots button:hover,
.studio-zone-carousel__dots button.is-active {
  border-color: rgba(255,179,107,.62);
  background: rgba(255,179,107,.2);
}
.studio-zone-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.studio-zone-carousel__dots button {
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 50%;
}
.example-card {
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.068), rgba(255,255,255,.028)),
    #0c1017;
  box-shadow: 0 16px 42px rgba(0,0,0,.20);
}
.example-media {
  min-height: 0;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  padding: 0;
  color: rgba(255,255,255,.72);
  text-align: center;
  background: linear-gradient(135deg, rgba(91,227,64,.16), rgba(0,176,255,.16)), #0d121a;
}
.example-media--poster { padding: 0; overflow: hidden; }
.example-media .video-poster {
  height: 100%;
  min-height: 0;
}
.example-media img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; display: block; filter: brightness(.82); }
.example-media .video-poster__play {
  width: 58px;
  height: 58px;
  box-shadow: 0 14px 36px rgba(0,0,0,.30);
}
.example-media .video-poster__triangle {
  border-top-width: 9px;
  border-bottom-width: 9px;
  border-left-width: 14px;
  margin-left: 3px;
}
.example-body { padding: 18px 18px 20px; }
.example-card h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.12;
}
.example-card p {
  font-size: 14px;
  line-height: 1.48;
}

.contact-panel {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
}
.contact-panel h2 { margin: 0 0 18px; font-size: 30px; line-height: 1.05; letter-spacing: 0; }
.contact-list { display: grid; gap: 12px; margin: 0 0 24px; padding: 0; list-style: none; }
.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  background: rgba(255,255,255,.045);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.065);
}
.contact-link strong { display: block; margin-bottom: 4px; font-size: 15px; color: #fff; }
.contact-link span span { color: var(--muted); font-size: 14px; }
.arrow { flex: 0 0 auto; color: #8fd8ff; font-weight: 900; }
.info-label {
  display: inline-flex;
  margin-bottom: 22px;
  color: rgba(255,255,255,.40);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.contact-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.contact-shortcuts a {
  color: #dce2ed;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
}
.contact-shortcuts a:hover { color: #fff; }
.contact-shortcuts + .trust-row { margin-top: 24px; }
.site-footer {
  padding: 46px 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: #050608;
  color: var(--muted-2);
  font-size: 13px;
}
.footer-row { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-links a {
  color: #dce2ed;
}
.footer-links a:hover { color: var(--text); }
.footer-separator { color: rgba(255,255,255,.22); }
.dev-note { margin-top: 14px; color: var(--muted-2); font-size: 13px; line-height: 1.55; }
.dev-note a { color: #8fd8ff; }
.dev-note a:hover { color: #fff; }

.legal-hero {
  position: relative;
  padding: 86px 20px 56px;
  background:
    radial-gradient(circle at 16% 12%, rgba(91,227,64,.14), transparent 30%),
    radial-gradient(circle at 84% 16%, rgba(0,176,255,.17), transparent 34%);
}
.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.86), transparent 80%);
  pointer-events: none;
}
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}
.legal-meta span {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: #dce2ed;
  font-size: 14px;
}
.legal-intro {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.legal-section {
  padding: 0 20px 108px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 300px minmax(0,1fr);
  gap: 18px;
  align-items: start;
}
.legal-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}
.legal-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 18px 54px rgba(0,0,0,.22);
}
.legal-card.compact { padding: 24px; }
.legal-card h2 {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0;
}
.legal-card.compact h2 { font-size: 24px; }
.legal-card h3 {
  margin: 22px 0 12px;
  font-size: 22px;
  letter-spacing: 0;
}
.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}
.legal-card strong { color: #fff; }
.legal-card a { color: #8fd8ff; }
.legal-card a:hover { color: #fff; }
.legal-card p { margin: 0; }
.legal-card p + p { margin-top: 14px; }
.legal-list,
.legal-numbered,
.legal-toc {
  margin: 0;
}
.legal-list,
.legal-numbered {
  padding-left: 22px;
}
.legal-list li + li,
.legal-numbered li + li {
  margin-top: 12px;
}
.legal-toc {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.legal-toc a {
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  color: #dce2ed;
  font-size: 14px;
  line-height: 1.4;
}
.legal-toc a:hover {
  color: #fff;
  border-color: rgba(0,176,255,.26);
}
.legal-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.back-to-top {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(16,20,28,.88);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.34);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity .2s ease,
    visibility .2s ease,
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top.is-visible:hover {
  transform: translateY(-2px);
  border-color: rgba(0,176,255,.32);
  box-shadow: 0 24px 56px rgba(0,0,0,.42);
}
.back-to-top__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--logo-blue), var(--logo-blue-deep));
  box-shadow: 0 10px 24px rgba(0,176,255,.3);
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}
.back-to-top__label {
  white-space: nowrap;
}

@keyframes luxuryGridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 48px 48px, 48px 48px; }
}

@keyframes luxurySheen {
  from { transform: translateX(-135%); }
  to { transform: translateX(135%); }
}

@keyframes luxuryMediaBreath {
  from { transform: scale(1); }
  to { transform: scale(1.025); }
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }

  body.page-ready main,
  body.page-ready .site-footer,
  body.page-ready .mobile-cta {
    animation: pageEnter .36s cubic-bezier(.2,.8,.2,1) both;
  }

  body.page-leaving main,
  body.page-leaving .site-footer,
  body.page-leaving .mobile-cta {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
    transition:
      opacity .16s ease,
      transform .16s ease;
    pointer-events: none;
  }

  body.motion-enhanced .hero::before {
    animation: luxuryGridDrift 24s linear infinite;
  }

  body.motion-enhanced .lux-reveal {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(.985);
    filter: blur(2px);
    transition:
      opacity .82s cubic-bezier(.2,.8,.2,1),
      transform .82s cubic-bezier(.2,.8,.2,1),
      filter .82s cubic-bezier(.2,.8,.2,1);
    transition-delay: var(--lux-delay, 0ms);
    will-change: opacity, transform, filter;
  }

  body.motion-enhanced .lux-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }

  body.motion-enhanced .hero-media-card.is-visible img,
  body.motion-enhanced .media-card.is-visible img,
  body.motion-enhanced .gallery-item.is-visible img {
    animation: luxuryMediaBreath 9s ease-in-out .7s infinite alternate;
    transform-origin: center;
  }

  .btn:hover::after,
  .btn:focus-visible::after {
    animation: luxurySheen .82s cubic-bezier(.2,.8,.2,1);
  }

  .card,
  .package-card,
  .info-card,
  .faq-item,
  .gallery-item,
  .example-card,
  .pricing-addon,
  .metric-card,
  .brand-logo,
  .contact-link,
  .studio-zone-card {
    transition:
      transform .28s cubic-bezier(.2,.8,.2,1),
      border-color .28s ease,
      box-shadow .28s ease,
      background .28s ease,
      filter .28s ease;
  }

  @media (hover: hover) {
    .card:hover,
    .package-card:hover,
    .info-card:hover,
    .faq-item:hover,
    .gallery-item:hover,
    .example-card:hover,
    .pricing-addon:hover,
    .metric-card:hover,
    .brand-logo:hover,
    .contact-link:hover,
    .studio-zone-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255,255,255,.20);
      box-shadow: 0 26px 70px rgba(0,0,0,.32);
    }

    .page-studio .card:hover,
    .page-studio .package-card:hover,
    .page-studio .info-card:hover,
    .page-studio .faq-item:hover,
    .page-studio .gallery-item:hover,
    .page-studio .example-card:hover,
    .page-studio .pricing-addon:hover,
    .page-studio .studio-zone-card:hover {
      border-color: rgba(255,179,107,.28);
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn,
  .messenger-badge,
  .contact-link,
  .case-card,
  .case-media img,
  .case-media .video-poster,
  .case-media .video-poster::after,
  .case-highlights div,
  .case-media .video-poster__caption,
  .video-poster__play,
  .back-to-top,
  body.page-ready main,
  body.page-ready .site-footer,
  body.page-ready .mobile-cta,
  body.page-leaving main,
  body.page-leaving .site-footer,
  body.page-leaving .mobile-cta,
  .lux-reveal {
    transition: none;
    animation: none;
  }
  .btn:hover,
  .messenger-badge:hover,
  .contact-link:hover,
  .contact-link:focus-visible,
  .case-card:hover,
  .case-card:focus-within,
  .case-media .video-poster:active,
  .case-card:hover .case-highlights div,
  .case-card:focus-within .case-highlights div,
  .case-card:hover .video-poster__caption,
  .case-card:focus-within .video-poster__caption,
  .back-to-top.is-visible:hover {
    transform: none;
  }
  .case-card:hover .case-media img,
  .case-card:focus-within .case-media img {
    transform: none;
  }
  .case-card:has(.video-poster:active) {
    transform: none;
  }
  .video-poster:hover .video-poster__play {
    transform: translate(-50%, -50%);
  }
  .lux-reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 1180px) {
  .logo-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .header-inner { gap: 12px; }
  .logo {
    --logo-width: 180px;
  }
  .nav {
    padding: 4px;
    font-size: 13px;
  }
  .nav a {
    min-height: 36px;
    padding: 0 10px;
  }
  .nav-label-full {
    display: none;
  }
  .nav-label-short {
    display: inline;
  }
  .lang-switch {
    min-height: 30px;
  }
  .lang-switch__button {
    min-width: 31px;
    min-height: 24px;
    padding: 0 7px;
  }
  .header-actions {
    gap: 8px;
  }
  .header-phone {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }
  .messenger-badge {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 980px) {
  :root { --anchor-offset: 190px; }
  .page-home main,
  .page-studio main {
    padding-top: 158px;
  }
  .header-inner {
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
    flex-wrap: wrap;
  }
  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 4px;
    overflow-x: auto;
    padding: 5px;
    scrollbar-width: none;
  }
  .nav a {
    min-height: 40px;
    padding: 0 15px;
    white-space: nowrap;
  }
  .anchor-nav__inner {
    gap: 16px;
    min-height: 44px;
  }
  .anchor-nav__links {
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .anchor-nav__links::-webkit-scrollbar { display: none; }
  .anchor-nav__links a { min-height: 44px; }
  .header-actions { margin-left: auto; }
  .lang-switch { margin-left: auto; }
  .hero-grid,
  .split-grid { grid-template-columns: 1fr; }
  #advantages .split-grid {
    grid-template-columns: 1fr;
  }
  #advantages .section-copy {
    margin-bottom: 28px;
  }
  .contact-route--single .split-grid {
    grid-template-columns: 1fr;
  }
  .grid-4,
  .grid-3,
  .process-grid,
  .examples-grid,
  .testimonial-grid,
  .estimate-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .faq-accordion { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .case-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .case-card.large {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-row: auto; min-height: 360px; }
  .studio-zone-card { grid-template-columns: 1fr; }
  .logo-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
  .floating-card { left: 18px; }
  .hero-media-card,
  .media-card { min-height: 460px; }
  .hero-video-card {
    width: min(100%, 320px);
    min-height: clamp(340px, 48vh, 480px);
  }
}
@media (max-width: 620px) {
  :root { --anchor-offset: 104px; }
  .page-home main,
  .page-studio main {
    padding-top: 96px;
  }
  .header-inner,
  .hero,
  .section,
  .site-footer,
  .legal-hero,
  .legal-section { padding-left: 16px; padding-right: 16px; }
  .hero > .container,
  .section > .container,
  .site-footer > .container,
  .legal-hero > .container,
  .legal-section > .container {
    width: min(100%, calc(100vw - 32px));
    max-width: 100%;
  }
  .page-studio .hero > .container,
  .page-studio .section > .container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  @media (max-width: 520px) {
    .page-studio .hero > .container,
    .page-studio .section > .container {
      width: min(100%, 358px);
      max-width: 358px;
      margin-right: auto;
      margin-left: auto;
    }
  }
  .header-actions .btn-secondary { display: none; }
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 6px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .header-actions {
    display: none;
  }
  .lang-switch {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-height: 30px;
    margin-left: 0;
  }
  .lang-switch__button {
    min-width: 31px;
    min-height: 24px;
    padding: 0 7px;
    font-size: 10px;
  }
  .page-studio .header-actions {
    display: none;
  }
  .header-phone {
    min-height: 32px;
    width: 32px;
    min-width: 32px;
    padding: 0;
    font-size: 0;
  }
  .header-phone::before {
    content: "";
    width: 13px;
    height: 13px;
    border: 2px solid currentColor;
    border-top: 0;
    border-right: 0;
    border-radius: 0 0 0 7px;
    transform: rotate(-45deg);
  }
  .messenger-badge {
    width: 32px;
    height: 32px;
  }
  .messenger-badge svg,
  .messenger-badge__icon {
    width: 16px;
    height: 16px;
  }
  .messenger-badge__icon--telegram,
  .messenger-badge__icon--max {
    width: 26px;
    height: 26px;
  }
  .messenger-badge__text { font-size: 16px; }
  .hero {
    padding-top: 14px;
    padding-bottom: 34px;
  }
  .page-studio .hero,
  .page-studio .section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-studio .hero > .container,
  .page-studio .section > .container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 32px;
    box-sizing: border-box;
  }
  .section-compact {
    padding-top: 68px;
    padding-bottom: 68px;
  }
  .hero-grid { gap: 16px; }
  .page-home .hero-grid > div:first-child {
    max-width: 358px;
  }
  .eyebrow {
    margin-bottom: 14px;
    padding: 7px 11px;
    font-size: 12px;
  }
  .logo {
    --logo-width: 132px;
    min-width: 0;
    padding-top: 4px;
    padding-bottom: 0;
  }
  .logo span { font-size: 8px; }
  .nav {
    grid-column: 1 / -1;
    font-size: 12px;
  }
  .nav a {
    min-height: 44px;
    padding: 0 8px;
  }
  .page-contacts .nav,
  .page-home .nav,
  .page-studio .nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    min-width: 0;
    width: 100%;
    overflow: visible;
  }
  .page-contacts .nav a,
  .page-home .nav a,
  .page-studio .nav a {
    justify-content: center;
    justify-self: stretch;
    min-width: 0;
    padding: 0 6px;
    width: 100%;
  }
  .page-contacts .nav a.active,
  .page-home .nav a.active {
    background:
      linear-gradient(135deg, rgba(255,179,107,.28), rgba(51,198,184,.18)),
      rgba(255,255,255,.10);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.18),
      0 12px 30px rgba(255,122,24,.15);
  }
  .nav-label-full {
    display: none;
  }
  .nav-label-short {
    display: inline;
  }
  .anchor-nav__inner {
    padding: 0 16px;
  }
  .anchor-nav__label { display: none; }
  .page-home .anchor-nav,
  .page-studio .anchor-nav {
    display: block;
  }
  .anchor-nav__links {
    gap: 16px;
    font-size: 12px;
  }
  h1 {
    margin-bottom: 14px;
    max-width: 100%;
    font-size: 26px;
    line-height: 1.12;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .lead {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.42;
  }
  .sublead {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.55;
  }
  .actions { margin-bottom: 10px; }
  .page-studio .actions {
    margin-bottom: 0;
  }
  .page-studio .actions .btn {
    min-height: 48px;
  }
  .page-studio .actions .btn-secondary {
    display: none;
  }
  .page-home .hero .actions .btn-secondary { display: none; }
  .page-home .hero .actions .btn {
    min-height: 48px;
  }
  .page-home .hero > .container,
  .page-home .section > .container {
    width: min(100%, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    box-sizing: border-box;
  }
  .hero .contact-shortcuts { display: none; }
  .page-home .hero-video-card {
    width: min(100%, 300px);
    min-height: 0;
    aspect-ratio: 16 / 9;
    margin-top: 2px;
  }
  .page-studio .hero-media-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .page-studio .hero-media-card::before {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 16 / 8.5;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 24px;
    background:
      linear-gradient(to top, rgba(0,0,0,.18), rgba(0,0,0,0) 48%),
      url("../assets/studio-hero-premium.jpg") center 62% / cover no-repeat,
      #0b0f15;
  }
  .page-studio .hero-media-card img {
    display: none;
  }
  .page-studio .hero-media-card::after {
    display: none;
  }
  .page-studio h1 {
    max-width: 100%;
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .page-studio .section-copy,
  .page-studio .hero-grid > div:first-child {
    max-width: calc(100vw - 32px);
  }
  #equipment > .container {
    padding-right: 16px;
  }
  .page-studio .section-copy h2,
  .page-studio .contact-card h2 {
    width: 100%;
    max-width: 100%;
    font-size: 21px;
    line-height: 1.14;
    overflow-wrap: break-word;
  }
  .page-studio .lead {
    font-size: 16px;
    line-height: 1.38;
  }
  .page-studio .trust-row {
    display: none;
  }
  .page-studio .floating-card {
    display: none;
  }
  .page-studio .pill {
    white-space: normal;
  }
  .brand-logo {
    min-height: 80px;
    padding: 14px 10px;
  }
  .brand-logo img { max-height: 44px; }
  .brand-logo-crop--sber {
    width: 152px;
    height: 44px;
  }
  .brand-logo-crop--sber img {
    width: 263px;
    height: 44px;
  }
  .brand-logo--mos img { max-height: 60px; }
  .brand-logo--rzd img { max-height: 62px; max-width: min(100%, 172px); }
  .brand-logo--lemana img { max-height: 60px; }
  .brand-logo--nokia img { max-height: 42px; max-width: min(100%, 176px); }
.brand-logo--t2 img,
.brand-logo--vk img { max-height: 58px; max-width: min(100%, 72px); }
.brand-logo--mts img { max-height: 56px; }
.brand-logo--pwc img { max-height: 50px; }
.brand-logo--hh img { max-height: 58px; max-width: min(100%, 58px); }
  .actions .btn,
  .contact-actions .btn { width: 100%; }
  .contact-card {
    padding: 24px 22px 26px;
  }
  .contact-card::before {
    inset: 12px;
    border-radius: 18px;
  }
  .contact-card::after {
    top: 12px;
    right: 12px;
    bottom: 12px;
  }
  .trust-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
  .trust-row .pill {
    width: auto;
    min-height: 36px;
    padding: 7px 9px;
    text-align: center;
    font-size: 13px;
    white-space: normal;
  }
  .trust-row .pill:last-child { grid-column: 1 / -1; }
  .grid-4,
  .grid-3,
  .grid-2,
  .case-grid,
  .pricing-addons,
  .process-grid,
  .examples-grid,
  .logo-wall,
  .proof-grid,
  .testimonial-grid,
  .estimate-grid { grid-template-columns: 1fr; }
  .page-home .section-copy,
  .page-home .hero-grid > div:first-child {
    width: 100%;
    max-width: 100%;
  }
  .page-home h1 {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .page-home .section-copy h2,
  .page-home .contact-card h2 {
    width: 100%;
    max-width: 100%;
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }
  .page-home .section-copy p,
  .page-home .contact-card p {
    font-size: 16px;
    line-height: 1.55;
  }
  #audience .logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px;
    border-radius: 22px;
  }
  #audience .logo-wall-title {
    grid-column: 1 / -1;
    margin-bottom: 2px;
    font-size: 11px;
    line-height: 1.35;
  }
  .card,
  .package-card,
  .info-card { min-height: auto; }
  #advantages .grid-4 {
    width: 100%;
    max-width: 100%;
    gap: 12px;
  }
  #advantages .section-copy,
  #advantages .card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  #advantages .section-copy p,
  #advantages .card h3,
  #advantages .card p {
    overflow-wrap: anywhere;
  }
  #advantages .card {
    min-height: auto;
    padding: 22px 18px 24px;
  }
  #advantages .card-number {
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
  }
  #advantages .card h3 {
    font-size: 20px;
  }
  #advantages .card p {
    font-size: 13px;
    line-height: 1.5;
  }
  .faq-accordion summary {
    min-height: 66px;
    padding: 18px 58px 18px 20px;
    font-size: 18px;
  }
  .faq-accordion summary::after {
    right: 18px;
    width: 30px;
    height: 30px;
  }
  .faq-answer {
    padding: 0 20px 20px;
  }
  .faq-answer p {
    font-size: 15px;
    line-height: 1.6;
  }
  .floating-card { position: relative; left: auto; bottom: auto; width: 100%; margin-top: -72px; }
  .page-studio .floating-card {
    left: auto;
    bottom: auto;
    margin-top: 14px;
  }
  .case-media,
  .case-media.small,
  .gallery-item,
  .gallery-item.large,
  .example-media { min-height: 220px; }
  .case-media,
  .case-media.small { min-height: 0; }
  .case-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-highlights strong {
    font-size: 22px;
  }
  .case-meta div {
    grid-template-columns: 88px 1fr;
  }
  .studio-zone-card {
    padding: 20px;
    border-radius: 22px;
  }
  .studio-zone-copy h2 {
    font-size: 30px;
    line-height: 1.08;
  }
  .studio-zone-copy p {
    font-size: 15px;
    line-height: 1.6;
  }
  .studio-zone-slide {
    aspect-ratio: 4 / 3;
  }
  .example-media { min-height: 0; }
  .case-stats div { grid-template-columns: 1fr; gap: 4px; }
  .contact-panel { padding: 24px; }
  .contact-route--single {
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 18px;
  }
  .contact-route--single .split-grid {
    gap: 16px;
  }
  .contact-route--single .contact-panel {
    padding: 14px;
  }
  .contact-route--single .contact-panel .eyebrow {
    display: none;
  }
  .contact-route--single .contact-panel h1 {
    margin-bottom: 12px;
    font-size: 30px;
  }
  .contact-route--single .contact-list {
    gap: 8px;
    margin-bottom: 14px;
  }
  .contact-route--single .contact-link {
    min-height: 44px;
    padding: 10px 12px;
  }
  .contact-route--single .contact-link span span {
    display: none;
  }
  .contact-route--single .media-card {
    min-height: 190px;
    height: auto;
  }
  .map-embed__stage,
  .map-embed iframe { min-height: 360px; }
  .contact-route--single .map-embed__stage,
  .contact-route--single .map-embed iframe {
    min-height: 130px;
  }
  .contact-route--single .map-embed__footer {
    padding: 12px 16px;
    gap: 10px;
  }
  .contact-route--single .map-embed__footer .inline-link {
    display: none;
  }
  .map-embed__activate {
    left: 24px;
    right: 24px;
    top: 24px;
    transform: none;
    width: auto;
    max-width: calc(100% - 48px);
  }
  .map-embed__pin-label,
  .map-embed__activate-note {
    white-space: normal;
    line-height: 1.25;
  }
  .map-embed__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .map-embed__footer .inline-link { white-space: normal; }
  .legal-card { padding: 24px; }
  .legal-layout,
  .legal-sidebar,
  .legal-copy,
  .legal-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .legal-meta span { width: 100%; }
  .footer-row { display: grid; gap: 12px; }
  .footer-links {
    display: grid;
    gap: 6px;
    margin-top: 0;
  }
  .footer-links a,
  .footer-links span:not(.footer-separator) {
    min-height: 32px;
    display: flex;
    align-items: center;
  }
  .footer-separator { display: none; }
  body.has-mobile-cta {
    padding-bottom: 88px;
  }
  .mobile-cta {
    position: fixed;
    left: 16px;
    right: auto;
    width: min(342px, calc(100vw - 64px));
    max-width: min(342px, calc(100vw - 64px));
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 45;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    background: rgba(10,14,20,.92);
    box-shadow: 0 18px 40px rgba(0,0,0,.34);
    backdrop-filter: blur(20px);
  }
  .mobile-cta__link {
    min-width: 0;
    padding: 0 12px;
    white-space: nowrap;
  }
  body.has-mobile-cta .back-to-top {
    bottom: calc(max(16px, env(safe-area-inset-bottom)) + 86px);
  }
  .back-to-top {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 52px;
    min-height: 52px;
    padding: 0;
    justify-content: center;
  }
  .back-to-top__label { display: none; }
  .video-modal {
    z-index: 140;
    padding:
      max(8px, env(safe-area-inset-top))
      max(8px, env(safe-area-inset-right))
      max(8px, env(safe-area-inset-bottom))
      max(8px, env(safe-area-inset-left));
  }
  .video-modal-open .page,
  .video-modal-open .mobile-cta,
  .video-modal-open .back-to-top {
    filter: blur(14px);
  }
  .video-modal__backdrop {
    background: rgba(5,7,11,.74);
    -webkit-backdrop-filter: blur(18px) saturate(1.08);
    backdrop-filter: blur(18px) saturate(1.08);
  }
  .hero-video-modal .video-modal__dialog {
    width: min(calc(100vw - 16px), calc((100dvh - 16px) * 9 / 16));
    max-height: calc(100dvh - 16px);
    border-radius: 16px;
  }
  .hero-video-modal__frame {
    max-height: calc(100dvh - 16px);
  }
  .video-modal__close {
    top: 10px;
    right: 10px;
    width: 46px;
    height: 46px;
    font-size: 34px;
    background: rgba(5,7,11,.82);
  }
}
