:root {
  --black: #080808;
  --graphite: #151515;
  --white: #ffffff;
  --paper: #f5f7fb;
  --line: #dde3ea;
  --muted: #5d6677;
  --cyan: #ff7a00;
  --blue: #ff5a00;
  --lime: #16a34a;
  --coral: #ff3d00;
  --orange: var(--cyan);
  --orange-dark: var(--blue);
  --orange-light: var(--lime);
  --radius: 8px;
  --container: 1180px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.skip-link {
  position: fixed; left: 16px; top: 16px; z-index: 1000;
  padding: 10px 14px; border-radius: 999px; background: var(--orange); color: var(--black);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255,255,255,0.9);
  border-top: 4px solid var(--black);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.site-header__inner {
  width: min(100% - 32px, var(--container)); min-height: 76px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand__mark {
  width: 46px; height: 46px; border-radius: var(--radius); display: grid; place-items: center;
  background: var(--black); color: var(--orange); font-size: .92rem; font-weight: 950;
  transform: rotate(-4deg);
  box-shadow: none;
}
.brand:hover .brand__mark { transform: rotate(0deg); }
.brand__text { display: grid; gap: 1px; min-width: 0; }
.brand__text span, .brand__text small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.brand__text span { font-weight: 900; }
.brand__text small { color: var(--muted); font-size: .78rem; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  min-height: 42px; display: inline-flex; align-items: center; padding: 0 13px;
  border-radius: 999px; color: #303030; font-weight: 700; font-size: .94rem;
  white-space: nowrap;
}
.site-nav a:hover { background: #f1f1f1; color: var(--orange-dark); }
.header-telegram {
  min-height: 42px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 16px; border-radius: 999px; background: var(--orange); color: var(--black); font-weight: 900;
}
.nav-toggle { display: none; align-items: center; gap: 7px; min-height: 42px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); padding: 0 12px; }
.nav-toggle span { width: 18px; height: 2px; background: var(--black); display: block; }
.nav-toggle b { font-size: .9rem; }
.nav-toggle { text-decoration: none; }
.nav-toggle::-webkit-details-marker { display: none; }
.nav-check { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.mobile-menu__close { display: none; }
.site-nav > .mobile-menu__close { display: none !important; }
.mobile-menu-panel { display: none; }
.mobile-menu-details { display: none; }
.mobile-menu-details > summary { list-style: none; }
.mobile-menu-details > summary::-webkit-details-marker { display: none; }

.mobile-menu-panel:target {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483647 !important;
  display: grid !important;
  align-content: start !important;
  gap: 0 !important;
  width: 100vw !important;
  min-height: 100dvh !important;
  max-height: 100dvh !important;
  overflow: auto !important;
  overscroll-behavior: contain !important;
  padding: 78px 28px 30px !important;
  background: #ffffff !important;
  color: #050505 !important;
}

.mobile-menu-panel:target > a:not(.mobile-menu__close) {
  min-height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eef1f4;
  color: #050505;
  font-size: clamp(1.45rem, 6.6vw, 2.35rem);
  line-height: 1;
  font-weight: 950;
}

.mobile-menu-panel:target > .mobile-menu__close {
  position: fixed !important;
  top: 16px !important;
  right: 18px !important;
  z-index: 2147483647 !important;
  width: 46px;
  min-height: 46px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f2f5f9;
  color: #050505;
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 500;
}

.mobile-menu-details[open] > .mobile-menu-panel,
.mobile-menu-details.is-open > .mobile-menu-panel {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483647 !important;
  display: grid !important;
  align-content: start !important;
  gap: 0 !important;
  width: 100vw !important;
  min-height: 100dvh !important;
  max-height: 100dvh !important;
  overflow: auto !important;
  overscroll-behavior: contain !important;
  padding: 78px 28px 30px !important;
  background: #ffffff !important;
  color: #050505 !important;
}

.mobile-menu-details[open] > .mobile-menu-panel > a,
.mobile-menu-details.is-open > .mobile-menu-panel > a {
  min-height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eef1f4;
  color: #050505;
  font-size: clamp(1.45rem, 6.6vw, 2.35rem);
  line-height: 1;
  font-weight: 950;
}

.hero {
  position: relative; min-height: calc(100svh - 76px); overflow: hidden; isolation: isolate;
  background: var(--black); color: var(--white); display: grid; align-items: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,8,.98) 0%, rgba(8,8,8,.9) 42%, rgba(8,8,8,.58) 100%),
    repeating-linear-gradient(135deg, rgba(255,122,0,.2) 0 2px, transparent 2px 18px),
    linear-gradient(135deg, #080808, #181818 48%, #0c0c0c);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -18vw;
  top: 9%;
  width: 52vw;
  height: 78%;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange), var(--orange-light));
  clip-path: polygon(28% 0, 100% 0, 72% 100%, 0 100%);
  opacity: .78;
  transform: skewX(-8deg);
  animation: bladePulse 5.5s ease-in-out infinite;
}
.hero__grid { position: absolute; inset: 0; opacity: .23; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 54px 54px; }
.hero__inner { position: relative; z-index: 3; width: min(100% - 32px, var(--container)); margin: 0 auto; padding: 86px 0 98px; }
.eyebrow { margin: 0 0 16px; color: var(--orange); font-weight: 950; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0; line-height: .98; font-weight: 950; }
h1 { max-width: 900px; font-size: 3rem; letter-spacing: 0; }
h2 { font-size: 2.25rem; letter-spacing: 0; }
h3 { font-size: 1.35rem; letter-spacing: 0; }
[id] { scroll-margin-top: 92px; }
.hero__lead { max-width: 720px; margin: 28px 0 0; color: rgba(255,255,255,.76); font-size: 1.16rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border-radius: 999px; border: 1px solid transparent; font-weight: 950; text-align: center; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--orange); color: var(--black); border-color: rgba(0,0,0,.88); box-shadow: none; }
.button--telegram { background: transparent; color: var(--white); border-color: rgba(255,255,255,.24); }
.button--outline { background: var(--black); color: var(--white); }
.hero__facts { max-width: 880px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1px; margin-top: 58px; background: rgba(255,255,255,.18); border-radius: var(--radius); overflow: hidden; }
.hero__facts div { padding: 22px; background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.hero__facts span { color: var(--orange); font-weight: 950; font-size: 1.25rem; }
.hero__facts p { margin: 8px 0 0; color: rgba(255,255,255,.68); }

.hero-stage { position: absolute; right: max(20px, calc((100vw - var(--container))/2)); top: 132px; width: min(40vw, 520px); height: 520px; z-index: 2; pointer-events: none; perspective: 1000px; }
.hero-stage__canvas, .hero-stage__frame { position: absolute; inset: 0; }
.hero-stage__canvas { opacity: .75; mix-blend-mode: screen; }
.hero-stage__frame { overflow: hidden; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.16); background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,122,0,.08)); box-shadow: none; transform: rotateX(5deg) rotateY(-12deg); animation: deckFloat 9s ease-in-out infinite; }
.hero-stage__grid { position: absolute; inset: -40px; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 42px 42px; transform: rotate(-10deg); animation: gridDrift 14s linear infinite; }
.hero-stage__scan { position: absolute; left: 0; right: 0; top: -20%; height: 140px; background: linear-gradient(180deg, transparent, rgba(255,122,0,.28), transparent); animation: scanMove 5.6s ease-in-out infinite; }
.hero-panel, .hero-console { position: absolute; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(0,0,0,.5); backdrop-filter: blur(12px); padding: 16px; }
.hero-panel { width: 160px; min-height: 112px; display: grid; align-content: space-between; }
.hero-panel span { color: rgba(255,255,255,.58); font-weight: 900; font-size: .76rem; }
.hero-panel strong { color: var(--white); font-size: 1.4rem; }
.hero-panel i { height: 4px; border-radius: 999px; background: rgba(255,255,255,.14); overflow: hidden; }
.hero-panel i::before { content: ""; display: block; width: 60%; height: 100%; background: var(--orange); animation: barPulse 3.2s ease-in-out infinite; }
.hero-panel--one { left: 9%; top: 13%; animation: cardFloatA 7s ease-in-out infinite; }
.hero-panel--two { right: 8%; top: 42%; animation: cardFloatB 8s ease-in-out infinite; }
.hero-panel--three { left: 15%; bottom: 13%; animation: cardFloatC 7.5s ease-in-out infinite; }
.hero-panel--four { right: 8%; top: 13%; animation: cardFloatC 7.8s ease-in-out infinite; }
.hero-console { right: 8%; bottom: 9%; width: 150px; display: grid; gap: 8px; }
.hero-console div { height: 5px; border-radius: 999px; background: rgba(255,122,0,.55); animation: consoleLine 3.8s ease-in-out infinite; }
.hero-console div:nth-child(2){ width: 65%; animation-delay: .2s; } .hero-console div:nth-child(3){ width: 82%; animation-delay: .4s; } .hero-console div:nth-child(4){ width: 48%; animation-delay: .6s; }

.ticker { overflow: hidden; background: var(--orange); color: var(--black); border-bottom: 4px solid var(--black); }
.ticker__track { display: flex; width: max-content; animation: ticker 24s linear infinite; }
.ticker span { padding: 16px 28px; font-weight: 950; text-transform: uppercase; }

.section { padding: 92px 0; }
.section__inner { width: min(100% - 32px, var(--container)); margin: 0 auto; }
.section__head { margin-bottom: 38px; max-width: 920px; }
.section__head--row { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.intro-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(320px,.7fr); gap: 64px; align-items: start; }
.intro-copy { display: grid; gap: 18px; color: var(--muted); font-size: 1.08rem; }
.intro-copy p { margin: 0; }

.section--intro { border-bottom: 1px solid var(--line); }
.section--services { background: linear-gradient(180deg, var(--white), #f7f7f7); border-top: 4px solid var(--black); }
.section--offer { padding: 0; background: var(--white); }
.offer-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  transform: translateY(-28px);
  box-shadow: none;
}
.offer-band h2 { font-size: 2.25rem; }
.offer-band p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.72); }
.offer-band ul { display: grid; grid-template-columns: repeat(3, minmax(120px,1fr)); gap: 1px; margin: 0; padding: 0; list-style: none; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); overflow: hidden; }
.offer-band li { min-height: 100px; padding: 16px; background: rgba(255,255,255,.07); }
.offer-band li span { color: var(--orange); font-weight: 950; }
.offer-band li b { display: block; margin-top: 12px; line-height: 1.12; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.service-card { position: relative; min-height: 290px; display: grid; align-content: start; gap: 18px; padding: 30px 26px 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: none; overflow: hidden; }
.service-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 6px; background: var(--orange); }
.service-card:hover { transform: translateY(-4px); box-shadow: none; }
.service-card span { color: var(--orange); font-weight: 950; }
.service-card p { margin: 0; color: var(--muted); }
.service-card strong { align-self: end; color: var(--orange-dark); font-size: 1.35rem; }
.service-card--dark { background: var(--black); color: var(--white); border-color: var(--black); }
.service-card--dark p { color: rgba(255,255,255,.66); }
.service-card--orange { background: var(--orange); color: var(--black); border-color: var(--orange); }
.service-card--orange span, .service-card--orange strong { color: var(--black); }
.service-card--orange p { color: rgba(0,0,0,.72); }

.section--cases { position: relative; background: var(--black); color: var(--white); border-top: 4px solid var(--orange); }
.case-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.case-grid article { min-height: 260px; padding: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: #111; display: grid; align-content: space-between; gap: 22px; }
.case-grid span { display: inline-flex; width: fit-content; padding: 8px 12px; border-radius: 999px; background: rgba(255,122,0,.14); color: var(--orange); font-weight: 950; }
.case-grid b { display: block; margin-top: 14px; font-size: 1.6rem; }
.case-grid p { margin: 0; color: rgba(255,255,255,.7); }
.case-grid strong { color: var(--orange); font-size: 1.45rem; }

.section--cases .case-grid {
  grid-template-columns: 1fr;
  gap: 22px;
}
.section--cases .case-card {
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  grid-template-rows: auto auto auto;
  column-gap: 28px;
  align-items: center;
  padding: 22px;
}
.section--cases .case-card:nth-child(even) {
  grid-template-columns: minmax(300px, .65fr) minmax(0, 1.35fr);
}
.section--cases .case-card > img {
  grid-row: 1 / 4;
  min-height: 430px;
  object-fit: cover;
  object-position: center top;
}
.section--cases .case-card:nth-child(even) > img { grid-column: 2; }
.section--cases .case-card:nth-child(even) > div,
.section--cases .case-card:nth-child(even) > p,
.section--cases .case-card:nth-child(even) > strong { grid-column: 1; }

.section--cms { background: var(--paper); }
.cms-layout { display: grid; grid-template-columns: minmax(0,.62fr) minmax(0,1fr); gap: 48px; align-items: start; }
.cms-layout > div:first-child p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.cms-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.cms-grid article { min-height: 160px; padding: 22px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.cms-grid span { font-size: 1.2rem; font-weight: 950; }
.cms-grid p { color: var(--muted); }
.stack-panel { margin-top: 18px; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 24px; align-items: center; padding: 32px; border-radius: var(--radius); background: var(--black); color: var(--white); }
.stack-panel h3 { font-size: 2rem; }
.stack-panel p:not(.eyebrow) { color: rgba(255,255,255,.7); max-width: 680px; }
.stack-panel ul { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; justify-content: flex-end; }
.stack-panel li { padding: 12px 16px; border-radius: 999px; background: var(--orange); color: var(--black); font-weight: 950; }

.section--process { background: var(--white); }
.process-list { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1px; background: var(--black); border: 1px solid var(--black); border-radius: var(--radius); overflow: hidden; }
.process-list article { min-height: 260px; padding: 24px; background: var(--white); }
.process-list span { color: var(--orange-dark); font-weight: 950; }
.process-list h3 { margin-top: 38px; }
.process-list p { color: var(--muted); }

.section--contact { background: var(--orange); padding-bottom: 560px; }
.contact-layout { display: grid; grid-template-columns: minmax(0,.72fr) minmax(360px,.78fr); gap: 56px; align-items: start; }
.contact-copy p { color: rgba(0,0,0,.74); font-size: 1.08rem; }
.contact-lines { display: grid; gap: 10px; margin-top: 28px; font-weight: 950; }
.lead-form { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; padding: 26px; border-radius: var(--radius); background: var(--white); box-shadow: none; }
.lead-form label { display: grid; gap: 8px; }
.lead-form span { font-weight: 950; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; min-height: 50px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 12px 14px; color: var(--black); }
.lead-form textarea { min-height: 120px; resize: vertical; }
.lead-form__full, .lead-form__submit, .lead-form__status { grid-column: 1 / -1; }
.lead-form__trap { position: absolute; left: -10000px; width: 1px; height: 1px; opacity: 0; }
.lead-form__status { min-height: 24px; margin: 0; color: var(--muted); }
.lead-form[data-state="success"] .lead-form__status { color: #087a33; }
.lead-form[data-state="error"] .lead-form__status { color: #b00020; }

body[data-modal-open="true"] { overflow: hidden; }

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lead-modal[data-open="true"] { display: flex; }
.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(10px);
}
.lead-modal__dialog {
  position: relative;
  width: min(100%, 860px);
  display: grid;
  grid-template-columns: minmax(0,.8fr) minmax(360px,1fr);
  gap: 24px;
  align-items: start;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--black);
  outline: 4px solid var(--orange);
  box-shadow: none;
}
.lead-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 1.5rem;
  line-height: 1;
}
.lead-modal__copy h2 { font-size: 2.4rem; }
.lead-modal__copy p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.lead-form--modal { padding: 0; box-shadow: none; }

.site-footer { background: var(--black); color: var(--white); }
.site-footer__inner { width: min(100% - 32px, var(--container)); min-height: 150px; margin: 0 auto; display: grid; grid-template-columns: auto minmax(0,1fr) auto; gap: 28px; align-items: center; }
.site-footer p { color: rgba(255,255,255,.68); }
.site-footer .brand__mark { background: var(--orange); color: var(--black); }
.site-footer .brand__text small { color: rgba(255,255,255,.55); }
.site-footer a:last-child { color: var(--orange); font-weight: 950; }

@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes bladePulse { 0%,100% { transform: skewX(-8deg) translateX(0); opacity: .7; } 50% { transform: skewX(-8deg) translateX(-18px); opacity: .9; } }
@keyframes deckFloat { 0%,100%{transform:rotateX(5deg) rotateY(-12deg) translate3d(0,0,0)} 50%{transform:rotateX(2deg) rotateY(-8deg) translate3d(-8px,10px,0)} }
@keyframes gridDrift { to { background-position: 84px 84px, 84px 84px; } }
@keyframes scanMove { 0%,100%{transform:translateY(-40%);opacity:0} 15%,72%{opacity:1} 88%{transform:translateY(560%);opacity:0} }
@keyframes barPulse { 0%,100%{transform:translateX(-15%) scaleX(.6)} 50%{transform:translateX(55%) scaleX(.95)} }
@keyframes consoleLine { 0%,100%{transform:scaleX(.55)} 50%{transform:scaleX(1)} }
@keyframes cardFloatA { 50%{transform:translate3d(10px,-12px,0)} } @keyframes cardFloatB { 50%{transform:translate3d(-12px,10px,0)} } @keyframes cardFloatC { 50%{transform:translate3d(8px,12px,0)} }

@media (min-width: 860px) {
  h1 { font-size: 4.55rem; }
  h2 { font-size: 3.15rem; }
  .stack-panel h3 { font-size: 2.55rem; }
}

@media (min-width: 1180px) {
  h1 { font-size: 5.7rem; }
  h2 { font-size: 4rem; }
}

@media (max-width: 1040px) {
  .header-telegram { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-nav { position: absolute; left: 16px; right: 16px; top: calc(100% + 8px); display: none; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: none; }
  .site-nav[data-open="true"] { display: grid; }
  .site-nav a { width: 100%; min-height: 46px; }
  .hero-stage { opacity: .38; right: -70px; width: 390px; height: 390px; }
  .intro-grid, .cms-layout, .contact-layout { grid-template-columns: 1fr; }
  .service-grid, .process-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stack-panel { grid-template-columns: 1fr; }
  .stack-panel ul { justify-content: flex-start; }
}
@media (max-width: 720px) {
  .site-header__inner, .hero__inner, .section__inner, .site-footer__inner { width: min(100% - 24px, var(--container)); }
  .hero { min-height: auto; }
  .hero__inner { padding: 72px 0 76px; }
  .hero-stage { display: none; }
  .hero__facts, .service-grid, .case-grid, .cms-grid, .process-list, .lead-form, .site-footer__inner { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .section__head--row { align-items: flex-start; flex-direction: column; }
  .button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { scroll-behavior: auto; animation-duration: .01ms; animation-iteration-count: 1; transition-duration: .01ms; } .hero-stage__canvas { display: none; } }

/* Ticker, case previews, and hero service labels */
.ticker {
  overflow: hidden;
  white-space: nowrap;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: tickerLoop 24s linear infinite;
  will-change: transform;
}

.ticker__group {
  display: flex;
  flex: 0 0 auto;
}

.ticker__group span {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 0 28px;
  font-weight: 950;
  text-transform: uppercase;
}

.ticker__group span::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 28px;
  border-radius: 50%;
  background: var(--black);
}

@keyframes tickerLoop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.case-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: #0f0f0f;
  box-shadow: none;
}

@media (min-width: 980px) {
  .case-grid { grid-template-columns: 1fr; gap: 22px; }
  .case-card {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    grid-template-rows: auto auto auto;
    column-gap: 28px;
    align-items: center;
    padding: 22px;
  }
  .case-card:nth-child(even) { grid-template-columns: minmax(320px, .65fr) minmax(0, 1.35fr); }
  .case-card > img {
    grid-row: 1 / 4;
    min-height: 430px;
    object-fit: cover;
    object-position: center top;
    backface-visibility: hidden;
    transform: translateZ(0);
  }
  .case-card:nth-child(even) > img { grid-column: 2; }
  .case-card:nth-child(even) > div,
  .case-card:nth-child(even) > p,
  .case-card:nth-child(even) > strong { grid-column: 1; }
}

.case-grid article {
  min-height: 0;
  align-content: start;
}

.case-grid article > div {
  margin-top: 8px;
}

.hero-panel {
  width: 190px;
  min-height: 124px;
}

.hero-panel strong {
  font-size: 1.1rem;
  line-height: 1.12;
}

.hero-console {
  width: 190px;
  gap: 9px;
}

.hero-console div {
  min-height: 36px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 10px;
  transform-origin: left;
}

.hero-console div span {
  color: var(--white);
  font-size: .78rem;
  font-weight: 950;
  line-height: 1.08;
  white-space: normal;
}

.hero-console div:nth-child(1),
.hero-console div:nth-child(2) {
  background: rgba(255,122,0,.68);
}

@media (max-width: 720px) {
  .ticker__group span {
    min-height: 48px;
    padding: 0 20px;
  }
}

/* Realistic case previews */
.case-card { overflow: hidden; }
.case-card > .case-preview { margin-top: 0; }
.case-preview {
  min-height: 328px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: #f4f4f4;
  color: #111;
  box-shadow: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
.case-preview b,
.case-preview strong,
.case-preview p,
.case-preview span,
.case-preview small,
.case-preview i,
.case-preview em,
.case-preview button,
.case-preview nav {
  all: unset;
  box-sizing: border-box;
}
.case-preview button { cursor: default; }
.case-browser {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: #101010;
  color: rgba(255,255,255,.62);
  font-size: .72rem;
  font-weight: 800;
}
.case-browser i { width: 7px; height: 7px; border-radius: 50%; background: #ff7a00; }
.case-browser i:nth-child(2) { background: rgba(255,255,255,.55); }
.case-browser i:nth-child(3) { background: rgba(255,255,255,.28); }
.case-browser em { margin-left: 10px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.shop-head,
.landing-nav {
  height: 52px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
  background: #fff;
}
.shop-head b,
.landing-nav b { font-size: 1.05rem; font-weight: 950; }
.shop-head nav,
.landing-nav nav { color: #606060; font-size: .72rem; font-weight: 800; white-space: nowrap; }
.shop-head button,
.landing-nav button,
.shop-hero button,
.landing-hero button,
.app-site button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 13px;
  border-radius: 999px;
  background: #ff7a00;
  color: #0a0a0a;
  font-size: .72rem;
  font-weight: 950;
  white-space: nowrap;
}
.shop-hero {
  margin: 0 16px;
  min-height: 116px;
  display: grid;
  grid-template-columns: 1fr 164px;
  gap: 16px;
  align-items: center;
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(120deg, #0a0a0a, #191919 62%, #ff7a00);
  color: #fff;
}
.shop-hero small,
.app-site small,
.landing-hero small { display: block; color: #ff7a00; font-size: .68rem; font-weight: 950; text-transform: uppercase; }
.shop-hero strong,
.app-site strong,
.landing-hero strong { display: block; max-width: 360px; margin-top: 7px; font-size: 1.55rem; line-height: 1.02; font-weight: 950; }
.shop-hero p,
.app-site p,
.landing-hero p { display: block; margin-top: 8px; color: rgba(255,255,255,.72); font-size: .82rem; font-weight: 700; }
.shop-photo { height: 84px; border-radius: 8px; background: rgba(255,255,255,.22); display: grid; place-items: center; }
.shop-photo i { width: 84px; height: 52px; border-radius: 8px; background: linear-gradient(135deg, #fff, #16a34a 48%, #ff7a00); box-shadow: none; }
.shop-layout { display: grid; grid-template-columns: 112px 1fr; gap: 12px; padding: 14px 16px 16px; }
.shop-layout aside,
.shop-layout section div { background: #fff; border: 1px solid #e3e3e3; border-radius: 8px; }
.shop-layout aside { display: grid; gap: 10px; align-content: start; padding: 14px; }
.shop-layout aside b,
.shop-layout section b { display: block; color: #111; font-size: .75rem; font-weight: 950; }
.shop-layout aside i { height: 8px; border-radius: 999px; background: #dadada; }
.shop-layout aside i:first-of-type { background: #ff7a00; }
.shop-layout section { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.shop-layout section div { min-height: 118px; padding: 12px; }
.shop-layout section div i { display: block; height: 48px; margin-bottom: 10px; border-radius: 8px; background: linear-gradient(135deg, #efefef, #ff7a00); }
.shop-layout section div:nth-child(2) i { background: linear-gradient(135deg, #efefef, #111); }
.shop-layout section strong { display: block; margin-top: 6px; color: #ff7a00; font-size: .92rem; font-weight: 950; }

.case-preview--app { background: linear-gradient(135deg, #fff, #eef3f8); }
.app-site { display: grid; grid-template-columns: minmax(0,1fr) 104px 94px; gap: 14px; align-items: center; min-height: 220px; padding: 24px 22px 12px; }
.app-site > div:first-child { color: #111827; }
.app-site strong { max-width: 270px; color: #111827; }
.app-site p { color: #627083; }
.app-site button { margin-top: 14px; margin-right: 6px; }
.app-site button + button { background: #111827; color: #fff; }
.phone { min-height: 196px; padding: 18px 14px; border-radius: 26px; background: #fff; border: 8px solid #111827; box-shadow: none; }
.phone--side { min-height: 166px; border-width: 6px; opacity: .92; }
.phone b { display: block; color: #111827; font-size: .9rem; font-weight: 950; }
.phone i { display: block; margin-top: 14px; padding: 13px 10px; border-radius: 8px; background: #eef3f8; color: #111827; font-size: .72rem; font-weight: 900; }
.phone i:first-of-type { background: #ff7a00; color: #111; }
.phone span { display: block; width: 50px; height: 8px; margin-top: 15px; border-radius: 999px; background: #d3dbe5; }
.app-metrics { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; padding: 0 22px 18px; }
.app-metrics p { display: grid; gap: 2px; margin: 0; padding: 13px; border-radius: 8px; background: #fff; border: 1px solid #dfe5ec; color: #6a7685; font-size: .72rem; font-weight: 800; }
.app-metrics b { color: #ff7a00; font-size: 1.25rem; font-weight: 950; }

.case-preview--landing { background: #f6f6f6; }
.landing-hero { margin: 0 16px; min-height: 138px; display: grid; grid-template-columns: 1fr 170px; gap: 16px; align-items: center; padding: 22px; border-radius: 8px; color: #fff; background: linear-gradient(120deg, #0b0b0b, #242424 56%, #ff7a00); }
.landing-hero button { margin-top: 16px; }
.industrial-photo { height: 96px; position: relative; overflow: hidden; border-radius: 8px; background: linear-gradient(135deg, #4a4a4a, #111 55%, #ff7a00); }
.industrial-photo i { position: absolute; left: 18px; bottom: 20px; width: 54px; height: 54px; border-radius: 6px; background: rgba(255,255,255,.8); transform: rotate(45deg); }
.industrial-photo i:nth-child(2) { left: 74px; width: 70px; height: 70px; opacity: .62; }
.industrial-photo i:nth-child(3) { left: 126px; width: 38px; height: 38px; background: #ff7a00; }
.landing-bottom { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; padding: 14px 16px 16px; }
.landing-bottom div { min-height: 88px; padding: 14px; border-radius: 8px; background: #fff; border: 1px solid #dedede; }
.landing-bottom b { display: block; color: #111; font-size: .82rem; font-weight: 950; }
.landing-bottom i { display: block; height: 10px; margin-top: 12px; border-radius: 999px; background: #e1e1e1; }
.landing-bottom i:first-of-type { background: #ff7a00; }
.landing-bottom strong { display: block; margin-top: 16px; color: #ff7a00; font-size: 1.35rem; font-weight: 950; }
.landing-bottom svg { width: 100%; height: 42px; margin-top: 8px; }
.landing-bottom path { fill: none; stroke: #ff7a00; stroke-width: 8; stroke-linecap: round; }

.case-preview--bot { background: linear-gradient(135deg, #fff, #ededed); }
.bot-layout { display: grid; grid-template-columns: .76fr 1.24fr; gap: 16px; padding: 18px; }
.chat { min-height: 262px; padding: 20px; border-radius: 8px; background: #111; color: #fff; }
.chat b { display: block; font-size: 1.35rem; font-weight: 950; }
.chat p { display: block; width: fit-content; max-width: 100%; margin-top: 18px; padding: 12px 14px; border-radius: 8px; background: rgba(255,255,255,.12); color: #fff; font-size: .82rem; font-weight: 900; }
.chat p:nth-of-type(2) { margin-left: auto; background: #ff7a00; color: #111; }
.crm { min-height: 262px; padding: 20px; border-radius: 8px; background: #fff; border: 1px solid #ddd; }
.crm > b { display: block; color: #111; font-size: 1.25rem; font-weight: 950; }
.crm-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 8px; margin-top: 16px; }
.crm-stats i { display: grid; gap: 4px; padding: 12px; border-radius: 8px; background: #ff7a00; color: #111; font-size: 1.35rem; font-weight: 950; }
.crm-stats i:nth-child(2) { background: #111; color: #ff7a00; }
.crm-stats i:nth-child(3) { background: #f0f0f0; }
.crm-stats small { color: inherit; font-size: .63rem; font-weight: 900; opacity: .72; }
.crm ul { display: grid; gap: 8px; margin: 14px 0 0; padding: 0; list-style: none; }
.crm li { padding: 10px 12px; border-radius: 8px; background: #f4f4f4; color: #111; font-size: .75rem; font-weight: 900; }
.crm svg { width: 100%; height: 48px; margin-top: 10px; }
.crm path { fill: none; stroke: #ff7a00; stroke-width: 8; stroke-linecap: round; }

@media (max-width: 720px) {
  .case-preview { min-height: 360px; }
  .shop-hero, .landing-hero, .app-site, .bot-layout { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-layout section, .landing-bottom, .app-metrics { grid-template-columns: 1fr; }
  .phone--side, .shop-photo, .industrial-photo { display: none; }
  .shop-head nav, .landing-nav nav { display: none; }
  .hero::after { right: -46vw; width: 90vw; opacity: .44; }
  .offer-band { grid-template-columns: 1fr; box-shadow: none; }
  .offer-band ul { grid-template-columns: 1fr; }
  .section--cases .case-card,
  .section--cases .case-card:nth-child(even) { grid-template-columns: 1fr; }
  .section--cases .case-card > img,
  .section--cases .case-card:nth-child(even) > img { grid-column: auto; grid-row: auto; min-height: 240px; }
  .lead-modal { align-items: flex-start; overflow-y: auto; }
  .lead-modal__dialog { grid-template-columns: 1fr; margin: 18px 0; padding: 22px; }
  .lead-modal__copy h2 { font-size: 2rem; }
}

/* New sales structure */
.hero__inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .56fr);
  gap: 54px;
  align-items: center;
}

.hero-copy { max-width: 820px; }

.hero-brief {
  position: relative;
  z-index: 4;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  box-shadow: none;
}

.hero-brief__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.hero-brief__top span,
.quick-services span {
  color: rgba(255,255,255,.62);
  font-weight: 850;
}

.hero-brief__top strong {
  color: var(--orange);
  font-size: 2.05rem;
  line-height: 1;
}

.quick-services {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.quick-services a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(0,0,0,.42);
}

.quick-services a:hover { border-color: var(--orange); background: rgba(255,122,0,.12); }
.quick-services b { color: var(--white); }
.hero-brief p { margin: 18px 0 0; color: rgba(255,255,255,.7); }

.section-note {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.section--audit {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.audit-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: 42px;
  align-items: stretch;
}

.audit-copy {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  box-shadow: none;
}

.audit-copy p:not(.eyebrow) { color: rgba(255,255,255,.72); font-size: 1.08rem; }
.audit-copy .button { margin-top: 22px; background: var(--white); color: var(--black); }

.audit-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
}

.audit-board article {
  min-height: 310px;
  padding: 24px;
  background: var(--white);
  display: grid;
  align-content: space-between;
}

.audit-board span,
.package-card span,
.platform-board span,
.flow-list span {
  color: var(--orange-dark);
  font-weight: 950;
}

.audit-board b {
  display: block;
  margin-top: 52px;
  font-size: 1.45rem;
  line-height: 1.05;
}

.audit-board p { margin: 0; color: var(--muted); }

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.package-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  display: grid;
  align-content: start;
  gap: 16px;
  box-shadow: none;
}

.package-card h3 { font-size: 1.55rem; }
.package-card p { margin: 0; color: var(--muted); }
.package-card strong { align-self: end; color: var(--orange-dark); font-size: 1.45rem; }

.package-card--featured {
  grid-column: span 2;
  min-height: 356px;
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  box-shadow: none;
}

.package-card--featured p,
.package-card--black p { color: rgba(255,255,255,.7); }

.package-card--featured h3 { font-size: 2.35rem; }
.package-card--featured strong,
.package-card--black strong,
.package-card--orange strong { color: inherit; }

.package-card--black {
  grid-column: span 2;
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.package-card--orange {
  background: var(--orange);
  color: var(--black);
  border-color: var(--black);
}

.package-card--orange span,
.package-card--orange p { color: rgba(0,0,0,.72); }

.section--platforms {
  background: var(--white);
}

.platform-layout {
  display: grid;
  grid-template-columns: minmax(0, .68fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.platform-copy {
  position: sticky;
  top: 108px;
}

.platform-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.platform-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.platform-board article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.platform-board b {
  display: block;
  margin-top: 12px;
  font-size: 1.45rem;
}

.platform-board p { color: var(--muted); margin-bottom: 0; }
.platform-board__wide { grid-column: 1 / -1; background: var(--black) !important; color: var(--white); }
.platform-board__wide p { color: rgba(255,255,255,.72); }

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 4px solid var(--black);
}

.flow-list article {
  min-height: 280px;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f7f7f7);
}

.flow-list article:last-child { border-right: 0; background: var(--orange); }
.flow-list h3 { margin-top: 54px; }
.flow-list p { color: var(--muted); }
.flow-list article:last-child p,
.flow-list article:last-child span { color: rgba(0,0,0,.72); }

@media (max-width: 1040px) {
  .hero__inner--split,
  .audit-layout,
  .platform-layout { grid-template-columns: 1fr; }
  .platform-copy { position: static; }
  .package-grid,
  .flow-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .hero__inner--split { gap: 30px; }
  .hero-brief { box-shadow: none; }
  .quick-services a { grid-template-columns: 1fr; }
  .audit-board,
  .package-grid,
  .platform-board,
  .flow-list { grid-template-columns: 1fr; }
  .package-card--featured,
  .package-card--black,
  .platform-board__wide { grid-column: auto; }
  .audit-board article,
  .flow-list article { min-height: 220px; }
  .flow-list article { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* Multicolor premium palette */
:root {
  --black: #090b12;
  --graphite: #171b24;
  --white: #ffffff;
  --paper: #f3f6fb;
  --line: #dce3ee;
  --muted: #596477;
  --cyan: #ff7a00;
  --blue: #ff5a00;
  --lime: #16a34a;
  --coral: #ff3d00;
  --violet: #6f5aa6;
  --mint: #5f8d74;
  --amber: #ff4a1f;
  --orange: var(--cyan);
  --orange-dark: var(--blue);
  --orange-light: var(--lime);
}

body {
  background:
    linear-gradient(180deg, rgba(255,122,0,.05), transparent 420px),
    var(--white);
}

.site-header {
  border-top-color: var(--blue);
  background: rgba(255,255,255,.93);
}

.brand__mark {
  background: linear-gradient(135deg, var(--black), #202838);
  color: var(--lime);
  box-shadow: none;
}

.site-nav a:hover {
  background: rgba(255,122,0,.1);
  color: var(--blue);
}

.header-telegram,
.button--primary {
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  color: var(--black);
}

.button--primary {
  box-shadow: none;
}

.hero {
  background: #080a11;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(8,10,17,.98) 0%, rgba(8,10,17,.9) 42%, rgba(8,10,17,.58) 100%),
    radial-gradient(circle at 16% 24%, rgba(255,122,0,.22), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(255,74,31,.18), transparent 24%),
    radial-gradient(circle at 78% 76%, rgba(201,79,53,.14), transparent 28%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #080a11, #141a27 52%, #0b1118);
}

.hero::after {
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--lime), var(--coral));
}

.hero .eyebrow,
.section--cases .eyebrow,
.site-footer a:last-child {
  color: var(--lime);
}

.eyebrow {
  color: var(--blue);
}

.hero-brief {
  border-color: rgba(255,255,255,.2);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  box-shadow: none;
}

.hero-brief__top strong {
  color: var(--lime);
}

.quick-services a:hover {
  border-color: var(--lime);
  background: rgba(255,74,31,.12);
}

.ticker {
  background: var(--lime);
  color: var(--black);
}

.offer-band {
  box-shadow: none;
}

.offer-band li:nth-child(2) span,
.service-card:nth-child(3n) span,
.platform-board article:nth-child(2) span {
  color: var(--coral);
}

.offer-band li:nth-child(3) span,
.service-card:nth-child(4n) span,
.platform-board article:nth-child(3) span {
  color: var(--mint);
}

.service-card::before {
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--lime));
}

.service-card--orange,
.package-card--orange {
  background: linear-gradient(145deg, var(--coral), #d7774d);
  color: var(--white);
  border-color: var(--coral);
}

.service-card--orange span,
.service-card--orange strong,
.package-card--orange strong {
  color: var(--white);
}

.service-card--orange p,
.package-card--orange span,
.package-card--orange p {
  color: rgba(255,255,255,.78);
}

.section--cases {
  background:
    radial-gradient(circle at 9% 10%, rgba(255,122,0,.2), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(255,74,31,.14), transparent 26%),
    #090b12;
  border-top-color: var(--cyan);
}

.case-grid span {
  background: rgba(255,74,31,.12);
  color: var(--lime);
}

.case-grid strong {
  color: var(--lime);
}

.audit-copy,
.package-card--featured,
.package-card--black,
.platform-board__wide {
  background: linear-gradient(145deg, #090b12, #151b27);
}

.audit-copy {
  box-shadow: none;
}

.audit-board article:nth-child(2),
.platform-board article:nth-child(2n),
.flow-list article:nth-child(2) {
  background: #eef9ff;
}

.audit-board article:nth-child(3),
.platform-board article:nth-child(3n),
.flow-list article:nth-child(3) {
  background: #f4ffe9;
}

.audit-board span,
.package-card span,
.platform-board span,
.flow-list span,
.package-card strong,
.process-list span {
  color: var(--blue);
}

.package-card--featured {
  box-shadow: none;
}

.stack-panel li:nth-child(3n + 1) {
  background: var(--blue);
  color: var(--white);
}

.stack-panel li:nth-child(3n + 2) {
  background: var(--lime);
  color: var(--black);
}

.stack-panel li:nth-child(3n) {
  background: var(--coral);
  color: var(--white);
}

.flow-list article:last-child {
  background: linear-gradient(145deg, var(--blue), var(--violet));
  color: var(--white);
}

.flow-list article:last-child p,
.flow-list article:last-child span {
  color: rgba(255,255,255,.78);
}

.section--contact {
  background:
    radial-gradient(circle at 14% 18%, rgba(201,79,53,.22), transparent 24%),
    linear-gradient(135deg, var(--lime) 0%, var(--cyan) 46%, #ffffff 100%);
}

.lead-modal__dialog {
  outline-color: var(--cyan);
}

.site-footer .brand__mark {
  background: var(--lime);
  color: var(--black);
}

@media (max-width: 720px) {
  .hero-brief {
    box-shadow: none;
  }

  .offer-band {
    box-shadow: none;
  }
}

/* Pleasant memorable direction */
:root {
  --black: #111111;
  --graphite: #24262c;
  --white: #ffffff;
  --paper: #f6f7f9;
  --line: #dde3eb;
  --muted: #687386;
  --cyan: #ff7a00;
  --blue: #ff5a00;
  --lime: #16a34a;
  --coral: #ff3d00;
  --violet: #6f5aa6;
  --mint: #5f8d74;
  --amber: #ff4a1f;
  --orange: var(--coral);
  --orange-dark: var(--blue);
  --orange-light: var(--amber);
  --shadow: 0 26px 70px rgba(17, 17, 17, .12);
}

body {
  background:
    linear-gradient(180deg, #ffffff 0, #f7f8fa 48%, #ffffff 100%);
  color: var(--black);
}

.site-header {
  border-top-color: var(--black);
  background: rgba(255,255,255,.95);
}

.brand__mark {
  background: var(--black);
  color: var(--amber);
  box-shadow: none;
}

.site-nav a:hover {
  background: rgba(201,79,53,.08);
  color: var(--coral);
}

.header-telegram {
  background: var(--black);
  color: var(--white);
}

.button--primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--black);
  box-shadow: none;
}

.button--telegram {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.26);
}

.hero {
  background: #111111;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(17,17,17,.98) 0%, rgba(17,17,17,.9) 44%, rgba(17,17,17,.66) 100%),
    radial-gradient(circle at 16% 20%, rgba(255,122,0,.24), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(255,74,31,.18), transparent 26%),
    radial-gradient(circle at 76% 78%, rgba(201,79,53,.2), transparent 30%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.07) 0 1px, transparent 1px 22px),
    linear-gradient(135deg, #111111, #202329 54%, #15171d);
}

.hero::after {
  background: linear-gradient(115deg, var(--blue), var(--coral) 55%, var(--amber));
  opacity: .58;
}

.hero-stage__frame {
  background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,122,0,.12));
  box-shadow: none;
}

.hero-stage__scan {
  background: linear-gradient(180deg, transparent, rgba(255,74,31,.24), transparent);
}

.hero-panel i::before,
.hero-console div {
  background: var(--amber);
}

.hero .eyebrow {
  color: var(--amber);
}

.eyebrow {
  color: var(--coral);
}

.hero__lead {
  color: rgba(255,255,255,.78);
}

.hero-signal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-signal span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  font-weight: 850;
}

.hero-signal span:nth-child(2) { border-color: rgba(255,74,31,.42); }
.hero-signal span:nth-child(3) { border-color: rgba(95,141,116,.48); }
.hero-signal span:nth-child(4) { border-color: rgba(201,79,53,.5); }

.hero-brief {
  background: rgba(255,255,255,.1);
  box-shadow: none;
}

.hero-brief__top strong {
  color: var(--amber);
}

.quick-services a:hover {
  border-color: var(--amber);
  background: rgba(255,74,31,.12);
}

.ticker {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom-color: var(--coral);
}

.ticker__group span::after {
  background: var(--amber);
}

.proof-rack {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.proof-rack__inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 30px 0;
  background: var(--black);
}

.proof-rack article {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
  border-top: 6px solid var(--coral);
}

.proof-rack article:nth-child(2) { border-top-color: var(--blue); }
.proof-rack article:nth-child(3) { border-top-color: var(--mint); }

.proof-rack span {
  color: var(--coral);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .06em;
}

.proof-rack article:nth-child(2) span { color: var(--blue); }
.proof-rack article:nth-child(3) span { color: var(--mint); }

.proof-rack b {
  display: block;
  max-width: 340px;
  margin-top: 18px;
  font-size: 1.35rem;
  line-height: 1.08;
  font-weight: 950;
}

.proof-rack p {
  margin: 18px 0 0;
  color: var(--muted);
}

.section--services {
  background: linear-gradient(180deg, #ffffff, var(--paper));
}

.audit-copy,
.package-card--featured,
.package-card--black,
.platform-board__wide {
  background: linear-gradient(145deg, #111111, #262931);
}

.audit-copy {
  box-shadow: none;
}

.audit-board article:nth-child(2),
.platform-board article:nth-child(2n),
.flow-list article:nth-child(2) {
  background: #f0f4fb;
}

.audit-board article:nth-child(3),
.platform-board article:nth-child(3n),
.flow-list article:nth-child(3) {
  background: #f1f6f2;
}

.audit-board span,
.package-card span,
.platform-board span,
.flow-list span,
.package-card strong,
.process-list span {
  color: var(--blue);
}

.package-card {
  box-shadow: none;
}

.package-card--featured {
  box-shadow: none;
}

.package-card--orange {
  background: var(--amber);
  color: var(--black);
  border-color: var(--black);
}

.package-card--orange span,
.package-card--orange p,
.package-card--orange strong {
  color: rgba(17,17,17,.78);
}

.section--cases {
  background:
    radial-gradient(circle at 10% 8%, rgba(255,122,0,.18), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(201,79,53,.17), transparent 24%),
    #111111;
  border-top-color: var(--coral);
}

.section--cases .eyebrow,
.case-grid span,
.case-grid strong {
  color: var(--amber);
}

.case-grid span {
  background: rgba(255,74,31,.12);
}

.case-grid img {
  box-shadow: none;
}

.platform-board article {
  background: var(--white);
  box-shadow: none;
}

.flow-list article:last-child {
  background: var(--blue);
  color: var(--white);
}

.flow-list article:last-child p,
.flow-list article:last-child span {
  color: rgba(255,255,255,.78);
}

.section--contact {
  background:
    radial-gradient(circle at 16% 18%, rgba(255,74,31,.22), transparent 24%),
    linear-gradient(135deg, #16191f 0%, var(--blue) 58%, var(--coral) 100%);
}

.section--contact .eyebrow,
.contact-copy h2,
.contact-copy p,
.contact-lines a {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255,255,255,.78);
}

.lead-form {
  box-shadow: none;
}

.lead-modal__dialog {
  outline-color: var(--coral);
}

.site-footer .brand__mark {
  background: var(--amber);
  color: var(--black);
}

.site-footer a:last-child {
  color: var(--amber);
}

@media (max-width: 1040px) {
  .proof-rack__inner {
    grid-template-columns: 1fr;
    width: min(100% - 24px, var(--container));
  }
}

@media (max-width: 720px) {
  .hero-brief {
    box-shadow: none;
  }

  .proof-rack__inner {
    padding: 22px 0;
  }
}

/* Modern minimal readable system */
:root {
  --black: #111318;
  --graphite: #20242c;
  --white: #ffffff;
  --paper: #f7f8fa;
  --line: #e2e7ee;
  --muted: #606b7c;
  --cyan: #ff7a00;
  --blue: #ff5a00;
  --lime: #16a34a;
  --coral: #ff4a1f;
  --violet: #7c3aed;
  --mint: #0f9f6e;
  --amber: #ff4a1f;
  --orange: var(--coral);
  --orange-dark: var(--blue);
  --orange-light: var(--mint);
  --shadow: none;
}

*,
*::before,
*::after {
  box-shadow: none;
  text-shadow: none;
}

body {
  background: var(--white);
  color: var(--black);
}

.site-header {
  border-top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
}

.brand__mark {
  background: var(--black);
  color: var(--white);
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover {
  background: var(--paper);
  color: var(--black);
}

.header-telegram,
.button--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.button--telegram {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.34);
}

.button--outline {
  background: var(--white);
  color: var(--black);
  border-color: var(--line);
}

h1 {
  max-width: 920px;
  font-size: clamp(2.45rem, 7vw, 4.85rem);
  line-height: .98;
}

h2 {
  font-size: clamp(2rem, 4.7vw, 3.8rem);
  line-height: 1;
}

h3 {
  line-height: 1.08;
}

.hero {
  min-height: calc(100svh - 76px);
  background: var(--black);
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(17,19,24,.98) 0%, rgba(17,19,24,.93) 54%, rgba(17,19,24,.7) 100%),
    linear-gradient(135deg, rgba(255,90,0,.18), transparent 38%),
    linear-gradient(225deg, rgba(255,74,31,.16), transparent 34%),
    #111318;
}

.hero::after {
  right: -22vw;
  top: 11%;
  width: 48vw;
  height: 72%;
  background: linear-gradient(135deg, var(--blue), var(--coral));
  opacity: .48;
}

.hero__grid {
  opacity: .1;
}

.hero-stage {
  opacity: .58;
}

.hero-stage__frame {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}

.hero-stage__scan,
.hero-console div,
.hero-panel i::before {
  background: var(--coral);
}

.hero .eyebrow,
.section--cases .eyebrow {
  color: var(--coral);
}

.eyebrow {
  color: var(--blue);
}

.hero__lead {
  max-width: 760px;
  color: rgba(255,255,255,.78);
}

.hero-signal span,
.quick-services a {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}

.hero-signal span:nth-child(n) {
  border-color: rgba(255,255,255,.22);
}

.hero-brief {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}

.hero-brief__top strong {
  color: var(--white);
}

.quick-services a:hover {
  border-color: var(--coral);
  background: rgba(255,74,31,.1);
}

.ticker {
  background: var(--white);
  color: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ticker__group span {
  min-height: 50px;
}

.ticker__group span::after {
  background: var(--blue);
}

.proof-rack {
  background: var(--paper);
}

.proof-rack__inner {
  background: transparent;
  gap: 14px;
}

.proof-rack article {
  min-height: 190px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  background: var(--white);
}

.proof-rack article:nth-child(2) { border-top-color: var(--coral); }
.proof-rack article:nth-child(3) { border-top-color: var(--mint); }

.proof-rack span,
.proof-rack article:nth-child(2) span,
.proof-rack article:nth-child(3) span {
  color: var(--blue);
}

.proof-rack article:nth-child(2) span { color: var(--coral); }
.proof-rack article:nth-child(3) span { color: var(--mint); }

.section--services,
.section--platforms,
.section--process,
.section--blog {
  background: var(--white);
}

.section--audit {
  background: var(--paper);
}

.audit-copy,
.package-card--featured,
.package-card--black,
.platform-board__wide {
  background: var(--black);
}

.audit-copy {
  border: 1px solid var(--black);
}

.audit-board {
  background: var(--line);
  border-color: var(--line);
}

.audit-board article,
.audit-board article:nth-child(2),
.audit-board article:nth-child(3),
.package-card,
.platform-board article,
.flow-list article {
  background: var(--white);
  border-color: var(--line);
}

.audit-board span,
.package-card span,
.platform-board span,
.flow-list span,
.package-card strong,
.process-list span {
  color: var(--blue);
}

.package-card--featured {
  border-color: var(--black);
}

.package-card--orange {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.package-card--orange span,
.package-card--orange p,
.package-card--orange strong {
  color: rgba(255,255,255,.86);
}

.section--cases {
  background: var(--black);
  color: var(--white);
  border-top: 0;
}

.case-showcase {
  display: grid;
  gap: 22px;
}

.case-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
  gap: 24px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
}

.case-hero-card__media img,
.case-story img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: #1b1f27;
}

.case-hero-card__body {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 18px;
}

.case-hero-card__body > span,
.case-story span,
.blog-card span,
.case-decision span {
  color: var(--coral);
  font-size: .8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.case-hero-card h3 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.case-hero-card p,
.case-story p {
  color: rgba(255,255,255,.72);
  margin: 0;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  overflow: hidden;
}

.case-metrics b {
  display: grid;
  gap: 6px;
  padding: 16px;
  background: rgba(255,255,255,.06);
}

.case-metrics strong {
  color: var(--white);
  font-size: 1.6rem;
}

.case-metrics small {
  color: rgba(255,255,255,.6);
  font-weight: 800;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-tags li {
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  font-size: .82rem;
  font-weight: 850;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.case-story {
  display: grid;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
}

.case-story img {
  min-height: 240px;
  aspect-ratio: 16 / 10;
}

.case-story h3 {
  margin-top: 8px;
  font-size: 1.6rem;
}

.case-story dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 18px 0 0;
  border: 1px solid rgba(255,255,255,.14);
}

.case-story dl div {
  padding: 12px;
  background: rgba(255,255,255,.05);
}

.case-story dt {
  color: rgba(255,255,255,.56);
  font-size: .72rem;
  font-weight: 900;
}

.case-story dd {
  margin: 4px 0 0;
  color: var(--white);
  font-weight: 950;
}

.case-decision {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  overflow: hidden;
}

.case-decision article {
  padding: 22px;
  background: rgba(255,255,255,.05);
}

.case-decision p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.7);
}

.section--blog {
  border-top: 1px solid var(--line);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.blog-card {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.blog-card--lead {
  grid-column: span 2;
  background: var(--paper);
  border-color: var(--black);
}

.blog-card h3 {
  font-size: 1.55rem;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
}

.blog-card a {
  width: fit-content;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-weight: 950;
}

.flow-list {
  border-top-color: var(--line);
}

.flow-list article:last-child {
  background: var(--blue);
  color: var(--white);
}

.section--contact {
  background: var(--black);
}

.section--contact .eyebrow {
  color: var(--coral);
}

.contact-copy h2,
.contact-copy p,
.contact-lines a {
  color: var(--white);
}

.lead-form {
  border: 1px solid var(--line);
}

.lead-modal__dialog {
  outline: 0;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,.12);
}

.site-footer .brand__mark {
  background: var(--white);
  color: var(--black);
}

.site-footer a:last-child {
  color: var(--coral);
}

@media (max-width: 1040px) {
  .case-hero-card,
  .case-list,
  .case-decision,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card--lead {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  h1 { font-size: 2.45rem; }
  h2 { font-size: 2rem; }

  .case-hero-card,
  .case-story,
  .blog-card {
    padding: 14px;
  }

  .case-hero-card__body {
    padding: 0;
  }

  .case-metrics,
  .case-story dl {
    grid-template-columns: 1fr;
  }
}

/* Animated e-commerce background */
.package-card--featured {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255,90,0,.22), transparent 42%),
    var(--black);
}

.package-card--featured::before,
.package-card--featured::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.package-card--featured::before {
  opacity: .42;
  background:
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.1) 1px, transparent 1px),
    radial-gradient(circle at 22% 30%, rgba(255,74,31,.34), transparent 18%),
    radial-gradient(circle at 82% 72%, rgba(22,163,74,.28), transparent 20%);
  background-size: 54px 54px, 54px 54px, 100% 100%, 100% 100%;
  animation: shopGridDrift 16s linear infinite;
}

.package-card--featured::after {
  right: 22px;
  left: auto;
  top: 28px;
  width: min(42%, 250px);
  height: calc(100% - 56px);
  opacity: .78;
  background:
    linear-gradient(var(--coral), var(--coral)) 0 8% / 58% 8px no-repeat,
    linear-gradient(rgba(255,255,255,.88), rgba(255,255,255,.88)) 0 20% / 78% 8px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 0 32% / 48% 8px no-repeat,
    linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.18)) 0 52% / 100% 64px no-repeat,
    linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.18)) 0 76% / 100% 64px no-repeat,
    linear-gradient(135deg, rgba(255,90,0,.5), rgba(255,74,31,.34));
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  clip-path: polygon(0 0, 100% 8%, 88% 100%, 0 92%);
  animation: shopPanelFloat 7s ease-in-out infinite;
}

.package-card--featured > * {
  position: relative;
  z-index: 1;
  max-width: 62%;
}

@keyframes shopGridDrift {
  from { background-position: 0 0, 0 0, 0 0, 0 0; }
  to { background-position: 108px 54px, 54px 108px, 0 0, 0 0; }
}

@keyframes shopPanelFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-10px, 8px, 0); }
}

@media (max-width: 720px) {
  .package-card--featured::after {
    inset: auto 16px 16px 16px;
    width: auto;
    height: 126px;
    opacity: .48;
  }

  .package-card--featured > * {
    max-width: none;
  }
}

/* Final polish: cleaner modal, color brand, compact footer */
.brand__mark,
.site-footer .brand__mark {
  background: linear-gradient(135deg, var(--blue) 0%, var(--coral) 52%, var(--mint) 100%);
  color: var(--white);
}

.brand__text span,
.hero .eyebrow {
  width: fit-content;
  background: linear-gradient(90deg, var(--blue), var(--coral), var(--mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-footer .brand__text span {
  background: linear-gradient(90deg, #ffffff, var(--coral), var(--mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.button--case {
  gap: 10px;
  padding-right: 16px;
  background: var(--white);
  color: var(--black);
  border-color: rgba(255,255,255,.18);
}

.button--case::after {
  content: ">";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  line-height: 1;
}

.section--contact {
  padding: 76px 0;
}

.contact-layout {
  align-items: center;
}

.lead-modal__dialog {
  border: 0;
  outline: 0;
  background: var(--white);
}

.lead-modal__close {
  border: 0;
  background: var(--paper);
}

.lead-form--modal {
  border: 0;
  background: transparent;
  padding: 0;
}

.lead-form--modal input,
.lead-form--modal select,
.lead-form--modal textarea {
  border: 0;
  background: var(--paper);
}

.lead-form--modal input:focus,
.lead-form--modal select:focus,
.lead-form--modal textarea:focus {
  outline: 2px solid rgba(255,90,0,.28);
  outline-offset: 0;
}

.site-footer__inner {
  min-height: 104px;
  grid-template-columns: auto minmax(0, 1fr);
}

.site-footer p {
  margin: 0;
  text-align: right;
}

@media (max-width: 720px) {
  .section--contact {
    padding: 64px 0;
  }

  .site-footer p {
    text-align: left;
  }
}

/* Header contact buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.header-actions__link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: .9rem;
  font-weight: 900;
  white-space: nowrap;
}

.header-actions__link--telegram {
  border-color: rgba(255,90,0,.28);
  color: var(--blue);
}

.header-actions__link--phone {
  border-color: rgba(255,74,31,.28);
  background: var(--coral);
  color: var(--white);
}

.header-actions__link:hover {
  background: var(--paper);
}

.header-actions__link--phone:hover {
  background: #e93d17;
}

@media (max-width: 1180px) {
  .header-actions__link {
    min-height: 38px;
    padding: 0 10px;
    font-size: .82rem;
  }
}

@media (max-width: 720px) {
  .site-header__inner {
    gap: 10px;
    flex-wrap: wrap;
  }

  .header-actions {
    order: 3;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: 10px;
  }

  .header-actions__link {
    min-height: 40px;
    padding: 0 8px;
  }
}

/* SEO-ready light version, live cases and call block */
.section--cases {
  background: var(--paper);
  color: var(--black);
}

.section--cases .eyebrow,
.case-hero-card__body > span,
.case-story span,
.case-decision span {
  color: var(--blue);
}

.case-hero-card,
.case-story,
.case-decision article {
  border-color: var(--line);
  background: var(--white);
}

.case-hero-card__media img,
.case-story img {
  border-color: var(--line);
  background: var(--paper);
}

.case-hero-card p,
.case-story p,
.case-decision p {
  color: var(--muted);
}

.case-metrics {
  border-color: var(--line);
}

.case-metrics b,
.case-story dl div {
  background: var(--paper);
}

.case-metrics strong,
.case-story dd {
  color: var(--black);
}

.case-metrics small,
.case-story dt {
  color: var(--muted);
}

.case-story dl,
.case-tags li,
.case-decision {
  border-color: var(--line);
}

.case-tags li {
  color: var(--black);
  background: var(--paper);
}

.button--case {
  border-color: var(--line);
}

.live-cases {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.live-cases__head {
  max-width: 760px;
}

.live-cases__head h3 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.live-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.live-case {
  position: relative;
  min-height: 270px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.live-case::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--blue);
}

.live-case span {
  color: var(--blue);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.live-case h4 {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.06;
}

.live-case p {
  margin: 0;
  color: var(--muted);
}

.live-case a {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-weight: 950;
}

.live-case--fashion::before { background: var(--coral); }
.live-case--furniture::before { background: var(--mint); }
.live-case--doors::before { background: var(--blue); }
.live-case--software::before { background: var(--violet); }
.live-case--build::before { background: #0f766e; }
.live-case--edu::before { background: #ea580c; }

.live-case--fashion span { color: var(--coral); }
.live-case--furniture span { color: var(--mint); }
.live-case--doors span { color: var(--blue); }
.live-case--software span { color: var(--violet); }
.live-case--build span { color: #0f766e; }
.live-case--edu span { color: #ea580c; }

.section-note--action {
  display: grid;
  gap: 14px;
}

.section-note--action p {
  margin: 0;
}

.section--call {
  padding: 0;
  background: var(--white);
}

.call-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
  gap: 40px;
  align-items: start;
  padding: clamp(30px, 6vw, 64px);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 0%, rgba(255,255,255,.2), transparent 30%),
    linear-gradient(135deg, var(--blue), #ff5a00 58%, #c92e00);
  color: var(--white);
  overflow: hidden;
}

.call-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -28% 12%;
  height: 56%;
  border-radius: 50% 50% 0 0;
  background: rgba(255,255,255,.08);
  pointer-events: none;
}

.call-copy,
.call-form,
.call-badge {
  position: relative;
  z-index: 1;
}

.call-copy .eyebrow {
  color: rgba(255,255,255,.78);
}

.call-copy h2 {
  max-width: 660px;
}

.call-copy p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255,255,255,.76);
  font-size: 1.08rem;
}

.call-badge {
  position: absolute;
  top: -44px;
  right: 58px;
  width: 158px;
  height: 158px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
}

.call-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 9px solid var(--white);
  outline: 1px solid rgba(17,19,24,.08);
  clip-path: polygon(50% 0, 61% 9%, 75% 5%, 82% 18%, 95% 25%, 91% 39%, 100% 50%, 91% 61%, 95% 75%, 82% 82%, 75% 95%, 61% 91%, 50% 100%, 39% 91%, 25% 95%, 18% 82%, 5% 75%, 9% 61%, 0 50%, 9% 39%, 5% 25%, 18% 18%, 25% 5%, 39% 9%);
}

.call-badge span {
  position: absolute;
  inset: 13px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #404756;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .18em;
  text-align: center;
  text-transform: uppercase;
  animation: rotateBadge 12s linear infinite;
}

.call-badge__text {
  position: absolute;
  inset: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  overflow: visible;
  animation: rotateBadge 12s linear infinite;
}

.call-badge__text text {
  fill: #2b313b;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
}

.call-badge b {
  position: relative;
  z-index: 2;
  color: var(--orange);
  font-size: 3.2rem;
  line-height: 1;
}

.call-form {
  display: grid;
  gap: 18px;
  padding-top: 76px;
}

.call-form__line {
  display: grid;
  grid-template-columns: minmax(140px, .55fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.call-form__line span {
  color: rgba(255,255,255,.88);
  font-size: 1.18rem;
  font-weight: 850;
}

.call-form input,
.call-form select,
.call-form textarea {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255,255,255,.16);
  color: var(--white);
  padding: 14px 16px;
}

.call-form textarea {
  min-height: 96px;
  resize: vertical;
}

.call-form input::placeholder,
.call-form textarea::placeholder {
  color: rgba(255,255,255,.56);
}

.call-form select {
  color-scheme: dark;
}

.call-form__button {
  min-height: 68px;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 950;
}

.call-form__button span {
  margin-left: 8px;
}

.call-form__status {
  min-height: 24px;
  margin: 0;
  color: rgba(255,255,255,.78);
}

@keyframes rotateBadge {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.section--contact {
  background: var(--paper);
}

.section--contact .eyebrow {
  color: var(--blue);
}

.contact-copy h2,
.contact-copy p,
.contact-lines a {
  color: var(--black);
}

.contact-copy p {
  color: var(--muted);
}

.site-footer {
  background: var(--white);
  color: var(--black);
  border-top: 1px solid var(--line);
}

.site-footer__inner--wide {
  width: min(100% - 32px, var(--container));
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(180px, .8fr) minmax(190px, .7fr);
  gap: 28px;
  align-items: start;
  padding: 42px 0;
}

.footer-main {
  display: grid;
  gap: 18px;
}

.footer-main p,
.footer-legal,
.site-footer p {
  margin: 0;
  color: var(--muted);
  text-align: left;
}

.site-footer .brand__text span {
  background: linear-gradient(90deg, var(--blue), var(--coral), var(--mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-footer .brand__text small {
  color: var(--muted);
}

.footer-links,
.footer-contacts {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contacts a {
  color: var(--black);
  font-weight: 850;
}

.footer-contacts {
  font-style: normal;
}

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: .9rem;
}

@media (max-width: 1040px) {
  .live-cases__grid,
  .call-card,
  .site-footer__inner--wide {
    grid-template-columns: 1fr;
  }

  .call-form {
    padding-top: 58px;
  }

  .call-badge {
    right: 28px;
  }
}

@media (max-width: 720px) {
  .live-case {
    min-height: 230px;
  }

  .call-card {
    gap: 20px;
    padding: 28px 18px;
  }

  .call-badge {
    position: relative;
    top: auto;
    right: auto;
    width: 126px;
    height: 126px;
    margin-left: auto;
  }

  .call-form {
    padding-top: 0;
  }

  .call-form__line {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Light hero requested */
.hero {
  background: var(--white);
  color: var(--black);
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 48%, rgba(247,248,250,.82) 100%),
    radial-gradient(circle at 16% 18%, rgba(255,90,0,.14), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(255,74,31,.13), transparent 25%),
    repeating-linear-gradient(135deg, rgba(17,19,24,.055) 0 1px, transparent 1px 22px),
    var(--white);
}

.hero::after {
  background: linear-gradient(135deg, rgba(255,90,0,.18), rgba(255,74,31,.2));
  opacity: .72;
}

.hero__grid {
  opacity: .18;
  background-image:
    linear-gradient(rgba(17,19,24,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,19,24,.06) 1px, transparent 1px);
}

.hero .eyebrow,
.hero__lead {
  color: var(--muted);
}

.hero .eyebrow {
  color: transparent;
}

.button--telegram {
  color: var(--black);
  border-color: var(--line);
  background: var(--white);
}

.hero-signal span,
.quick-services a {
  color: var(--black);
  border-color: var(--line);
  background: rgba(255,255,255,.76);
}

.hero-signal span {
  color: var(--muted);
}

.hero-brief {
  background: rgba(255,255,255,.88);
  border-color: var(--line);
}

.hero-brief__top {
  border-bottom-color: var(--line);
}

.hero-brief__top span,
.quick-services span,
.hero-brief p {
  color: var(--muted);
}

.hero-brief__top strong,
.quick-services b {
  color: var(--black);
}

.quick-services a:hover {
  background: var(--paper);
}

.hero-stage {
  opacity: .76;
}

.hero-stage__frame {
  border-color: var(--line);
  background: rgba(255,255,255,.72);
}

.hero-stage__grid {
  background-image:
    linear-gradient(rgba(17,19,24,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,19,24,.08) 1px, transparent 1px);
}

.hero-stage__canvas {
  opacity: .42;
  mix-blend-mode: multiply;
}

.hero-panel,
.hero-console {
  border-color: var(--line);
  background: rgba(255,255,255,.86);
}

.hero-panel span {
  color: var(--muted);
}

.hero-panel strong,
.hero-console div span {
  color: var(--black);
}

.hero-panel i {
  background: rgba(17,19,24,.08);
}

.hero-console div {
  background: rgba(255,90,0,.12);
}

.hero-console div:nth-child(1),
.hero-console div:nth-child(2) {
  background: rgba(255,74,31,.12);
}

/* Bright orange accent instead of blue */
:root {
  --blue: #ff5a00;
  --cyan: #ff7a00;
  --coral: #ff3d00;
  --amber: #ff7a00;
  --orange: #ff5a00;
  --orange-dark: #d93600;
  --orange-light: #ff8a1f;
}

.brand__mark,
.site-footer .brand__mark {
  background: linear-gradient(135deg, #111318 0%, var(--coral) 58%, var(--amber) 100%);
}

.brand__text span,
.hero .eyebrow,
.site-footer .brand__text span {
  background: linear-gradient(90deg, var(--coral), var(--amber), var(--mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.button--primary,
.header-actions__link--phone,
.blog-card a,
.live-case a {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

.button--primary:hover,
.header-actions__link--phone:hover,
.blog-card a:hover,
.live-case a:hover {
  background: #e73600;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 48%, rgba(247,248,250,.82) 100%),
    radial-gradient(circle at 16% 18%, rgba(255,90,0,.16), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(255,61,0,.14), transparent 25%),
    repeating-linear-gradient(135deg, rgba(17,19,24,.055) 0 1px, transparent 1px 22px),
    var(--white);
}

.hero::after {
  background: linear-gradient(135deg, rgba(255,90,0,.2), rgba(255,122,0,.22));
}

.call-card {
  background:
    radial-gradient(circle at 78% 0%, rgba(255,255,255,.24), transparent 30%),
    linear-gradient(135deg, #ff5a00, #ff3d00 58%, #c92e00);
}

.call-badge b,
.call-form__button {
  color: var(--coral);
}

.call-form input,
.call-form select,
.call-form textarea {
  background: rgba(255,255,255,.18);
}

.ticker__group span::after,
.hero-stage__scan,
.hero-panel i::before,
.hero-console div {
  background: var(--coral);
}

.quick-services a:hover,
.hero-console div:nth-child(1),
.hero-console div:nth-child(2) {
  background: rgba(255,90,0,.12);
}

.blog-page-hero {
  padding: 92px 0 64px;
  background:
    radial-gradient(circle at 84% 10%, rgba(255,90,0,.16), transparent 28%),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.blog-page-hero h1,
.text-page h1 {
  max-width: 980px;
  color: var(--black);
}

.blog-page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.blog-article-list {
  background: var(--paper);
}

.blog-article-list .section__inner {
  display: grid;
  gap: 16px;
}

.article-card,
.text-page__content,
.sitemap-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.article-card span {
  color: var(--coral);
  font-size: .8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.article-card h2,
.text-page__content h2,
.sitemap-grid h2 {
  margin-top: 12px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.article-card p,
.text-page__content p {
  max-width: 900px;
  color: var(--muted);
}

.text-page {
  padding: 92px 0;
  background: var(--paper);
}

.text-page__content {
  margin-top: 28px;
}

.text-page__content a {
  color: var(--coral);
  font-weight: 950;
}

.text-page__note {
  padding: 16px;
  border-radius: var(--radius);
  background: #fff3ed;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.sitemap-grid article {
  display: grid;
  gap: 10px;
}

.sitemap-grid a {
  color: var(--black);
  font-weight: 850;
}

.sitemap-grid a:hover {
  color: var(--coral);
}

@media (max-width: 900px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
}

/* Clean orange logo and minimal live case visuals */
.brand__mark,
.site-footer .brand__mark {
  background: var(--orange);
  color: var(--white);
}

.brand__text span,
.hero .eyebrow,
.site-footer .brand__text span {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--black);
}

.hero .eyebrow {
  color: var(--orange);
}

.site-footer .brand__text span {
  color: var(--black);
}

.live-case {
  min-height: 350px;
}

.live-case__visual {
  position: relative;
  height: 132px;
  margin: -6px -6px 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}

.live-case__visual::before,
.live-case__visual::after,
.live-case__visual span,
.live-case__visual i,
.live-case__visual b {
  content: "";
  position: absolute;
  display: block;
}

.live-case__visual::before {
  inset: 14px 14px auto;
  height: 12px;
  border-radius: 999px;
  background: rgba(17,19,24,.08);
}

.live-case__visual::after {
  right: 16px;
  bottom: 16px;
  width: 68px;
  height: 20px;
  border-radius: 999px;
  background: var(--orange);
}

.live-case--fashion .live-case__visual {
  background: linear-gradient(135deg, #fff, #fff3ec);
}

.live-case--fashion .live-case__visual span {
  left: 32px;
  top: 54px;
  width: 118px;
  height: 42px;
  border-radius: 44px 76px 22px 18px;
  background: #111318;
  transform: rotate(-8deg);
}

.live-case--fashion .live-case__visual i {
  left: 62px;
  top: 40px;
  width: 52px;
  height: 28px;
  border: 10px solid var(--orange);
  border-bottom: 0;
  border-radius: 40px 40px 0 0;
  transform: rotate(-8deg);
}

.live-case--fashion .live-case__visual b {
  left: 42px;
  top: 90px;
  width: 132px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  transform: rotate(-8deg);
}

.live-case--furniture .live-case__visual {
  background: linear-gradient(135deg, #fff, #f4f7f1);
}

.live-case--furniture .live-case__visual span {
  left: 28px;
  top: 62px;
  width: 130px;
  height: 42px;
  border-radius: 8px 8px 18px 18px;
  background: var(--orange);
}

.live-case--furniture .live-case__visual i {
  left: 40px;
  top: 40px;
  width: 106px;
  height: 42px;
  border-radius: 22px 22px 8px 8px;
  background: #111318;
}

.live-case--furniture .live-case__visual b {
  left: 40px;
  top: 104px;
  width: 106px;
  height: 14px;
  border-left: 10px solid #111318;
  border-right: 10px solid #111318;
}

.live-case--doors .live-case__visual {
  background: linear-gradient(135deg, #fff, #fff7f2);
}

.live-case--doors .live-case__visual span {
  left: 56px;
  top: 38px;
  width: 72px;
  height: 82px;
  border: 8px solid #111318;
  border-radius: 6px;
}

.live-case--doors .live-case__visual i {
  left: 82px;
  top: 48px;
  width: 34px;
  height: 64px;
  border-radius: 4px;
  background: var(--orange);
}

.live-case--doors .live-case__visual b {
  left: 106px;
  top: 79px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
}

.live-case--software .live-case__visual {
  background: linear-gradient(135deg, #111318, #2a2d35);
}

.live-case--software .live-case__visual::before {
  background: rgba(255,255,255,.12);
}

.live-case--software .live-case__visual span {
  left: 28px;
  top: 44px;
  width: 116px;
  height: 72px;
  border-radius: 10px;
  background: var(--white);
}

.live-case--software .live-case__visual i {
  left: 42px;
  top: 62px;
  width: 88px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
}

.live-case--software .live-case__visual b {
  left: 42px;
  top: 84px;
  width: 54px;
  height: 10px;
  border-radius: 999px;
  background: #111318;
}

.live-case--build .live-case__visual {
  background: linear-gradient(135deg, #fff, #f5f6f8);
}

.live-case--build .live-case__visual span {
  left: 38px;
  top: 70px;
  width: 118px;
  height: 48px;
  border-radius: 6px;
  background: #111318;
}

.live-case--build .live-case__visual i {
  left: 32px;
  top: 38px;
  width: 132px;
  height: 64px;
  clip-path: polygon(50% 0, 100% 55%, 90% 55%, 90% 100%, 10% 100%, 10% 55%, 0 55%);
  background: var(--orange);
}

.live-case--build .live-case__visual b {
  left: 78px;
  top: 82px;
  width: 28px;
  height: 36px;
  border-radius: 4px 4px 0 0;
  background: var(--white);
}

.live-case--edu .live-case__visual {
  background: linear-gradient(135deg, #fff, #fff3ec);
}

.live-case--edu .live-case__visual span {
  left: 36px;
  top: 46px;
  width: 92px;
  height: 64px;
  border-radius: 8px;
  background: var(--orange);
  transform: skewY(-4deg);
}

.live-case--edu .live-case__visual i {
  left: 88px;
  top: 46px;
  width: 92px;
  height: 64px;
  border-radius: 8px;
  background: #111318;
  transform: skewY(4deg);
}

.live-case--edu .live-case__visual b {
  left: 50px;
  top: 68px;
  width: 116px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
}

.article-card__link {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-weight: 950;
}

.article-page .text-page__content {
  display: grid;
  gap: 12px;
}

.article-page .text-page__content h2 {
  margin-top: 18px;
}

.header-actions__link--telegram,
.footer-contacts [data-telegram-link] {
  border-color: #0088cc;
  background: #0088cc;
  color: var(--white);
}

.footer-contacts [data-telegram-link] {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
}

.site-assembly {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 360px;
  height: 300px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 20%, rgba(255,61,0,.22), transparent 28%),
    rgba(255,255,255,.92);
  overflow: hidden;
}

.site-assembly--shop::before {
  content: "";
  position: absolute;
  inset: -40%;
  background-image:
    linear-gradient(rgba(17,19,24,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,19,24,.08) 1px, transparent 1px);
  background-size: 28px 28px;
  transform: rotate(-8deg);
  animation: shopBlueprintMove 12s linear infinite;
}

.shop-build {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(17,19,24,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  overflow: hidden;
}

.shop-build__chrome {
  position: absolute;
  inset: 0 0 auto;
  height: 28px;
  display: flex;
  gap: 6px;
  align-items: center;
  padding-left: 12px;
  background: #111318;
}

.shop-build__chrome i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.shop-build__chrome i:nth-child(2) {
  background: rgba(255,255,255,.55);
}

.shop-build__chrome i:nth-child(3) {
  background: rgba(255,255,255,.28);
}

.shop-build__piece,
.shop-build__wire,
.shop-build__cursor,
.shop-build__status {
  position: absolute;
  z-index: 1;
}

.shop-build__piece {
  display: block;
  border: 1px solid rgba(17,19,24,.13);
  border-radius: 10px;
  background: #ffffff;
  color: #111318;
  opacity: 0;
  transform: translate3d(var(--from-x, 0), var(--from-y, 26px), 0) scale(.94);
  animation: shopAssemble 6.4s ease-in-out infinite;
}

.shop-build__piece b,
.shop-build__piece strong,
.shop-build__piece small {
  display: block;
  font-style: normal;
}

.shop-build__nav {
  left: 14px;
  right: 14px;
  top: 40px;
  height: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  --from-y: -34px;
}

.shop-build__nav b {
  color: var(--orange);
  font-size: .75rem;
  font-weight: 950;
}

.shop-build__nav i {
  width: 52px;
  height: 7px;
  border-radius: 999px;
  background: rgba(17,19,24,.14);
}

.shop-build__nav em {
  margin-left: auto;
  width: 54px;
  height: 18px;
  border-radius: 999px;
  background: var(--orange);
}

.shop-build__hero {
  left: 14px;
  right: 14px;
  top: 84px;
  height: 72px;
  padding: 14px 92px 12px 14px;
  background: linear-gradient(135deg, #111318, #232630 58%, var(--orange));
  color: #ffffff;
  animation-delay: .45s;
  --from-x: -60px;
}

.shop-build__hero strong {
  font-size: 1rem;
  line-height: 1;
  font-weight: 950;
}

.shop-build__hero small {
  margin-top: 7px;
  color: rgba(255,255,255,.72);
  font-size: .63rem;
  font-weight: 850;
}

.shop-build__hero button {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 62px;
  height: 20px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
}

.shop-build__filter {
  left: 14px;
  top: 170px;
  width: 70px;
  height: 92px;
  padding: 12px;
  animation-delay: .9s;
  --from-x: -40px;
}

.shop-build__filter b {
  color: #111318;
  font-size: .62rem;
  font-weight: 950;
}

.shop-build__filter i {
  display: block;
  height: 7px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(17,19,24,.14);
}

.shop-build__filter i:first-of-type {
  background: var(--orange);
}

.shop-build__product {
  top: 170px;
  width: 58px;
  height: 92px;
  padding: 8px;
}

.shop-build__product--one { left: 98px; animation-delay: 1.25s; --from-y: 42px; }
.shop-build__product--two { left: 166px; animation-delay: 1.55s; --from-y: 42px; }
.shop-build__product--three { left: 234px; animation-delay: 1.85s; --from-y: 42px; }

.shop-build__product i {
  display: block;
  height: 35px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f0f2f5, var(--orange));
}

.shop-build__product b {
  margin-top: 7px;
  color: #111318;
  font-size: .57rem;
  font-weight: 900;
}

.shop-build__product strong {
  margin-top: 5px;
  color: var(--orange);
  font-size: .64rem;
  font-weight: 950;
}

.shop-build__cart {
  right: 14px;
  top: 170px;
  width: 72px;
  height: 92px;
  padding: 10px;
  border-color: rgba(255,61,0,.4);
  animation-delay: 2.2s;
  --from-x: 46px;
}

.shop-build__cart b {
  color: #111318;
  font-size: .64rem;
  font-weight: 950;
}

.shop-build__cart i {
  display: block;
  height: 7px;
  margin-top: 9px;
  border-radius: 999px;
  background: rgba(17,19,24,.16);
}

.shop-build__cart strong {
  margin-top: 12px;
  padding: 6px 8px;
  border-radius: 999px;
  background: var(--orange);
  color: #ffffff;
  font-size: .56rem;
  font-weight: 950;
  text-align: center;
}

.shop-build__wire {
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  animation: wirePulse 6.4s ease-in-out infinite;
}

.shop-build__wire--one {
  left: 84px;
  top: 216px;
  width: 146px;
  animation-delay: 1.1s;
}

.shop-build__wire--two {
  left: 286px;
  top: 216px;
  width: 42px;
  animation-delay: 2.1s;
}

.shop-build__cursor {
  width: 22px;
  height: 22px;
  left: 38px;
  top: 248px;
  border-radius: 7px 7px 7px 1px;
  background: var(--orange);
  opacity: 0;
  transform: rotate(-12deg);
  animation: cursorBuild 6.4s ease-in-out infinite;
}

.shop-build__status {
  left: 22px;
  bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #111318;
  color: #ffffff;
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .02em;
}

@keyframes shopAssemble {
  0%, 7% { opacity: 0; transform: translate3d(var(--from-x, 0), var(--from-y, 26px), 0) scale(.94); }
  18%, 76% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
  94%, 100% { opacity: 0; transform: translate3d(0, -16px, 0) scale(.98); }
}

@keyframes wirePulse {
  0%, 25%, 88%, 100% { opacity: 0; transform: scaleX(.2); }
  36%, 70% { opacity: 1; transform: scaleX(1); }
}

@keyframes cursorBuild {
  0%, 20% { opacity: 0; transform: translate3d(0, 0, 0) rotate(-12deg); }
  34% { opacity: 1; transform: translate3d(104px, -76px, 0) rotate(-12deg); }
  48% { opacity: 1; transform: translate3d(178px, -44px, 0) rotate(-12deg); }
  64% { opacity: 1; transform: translate3d(238px, -44px, 0) rotate(-12deg); }
  78%, 100% { opacity: 0; transform: translate3d(252px, -88px, 0) rotate(-12deg); }
}

@keyframes shopBlueprintMove {
  from { background-position: 0 0, 0 0; }
  to { background-position: 56px 56px, 56px 56px; }
}

@media (max-width: 720px) {
  .site-assembly {
    display: none;
  }
}

.not-found-page {
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  padding: 72px 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,90,0,.16), transparent 30%),
    linear-gradient(180deg, var(--white), var(--paper));
}

.not-found-card {
  display: grid;
  gap: 22px;
}

.not-found-card h1 {
  max-width: 900px;
}

.not-found-card > p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.12rem;
}

.not-found-actions,
.not-found-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.not-found-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-weight: 850;
}

/* Final case/photo and typography refinement */
body {
  color: #050505;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

h1,
h2,
h3,
h4,
.brand__text span {
  color: #050505;
}

.hero__lead,
.section-note,
.package-card p,
.platform-copy p:not(.eyebrow),
.blog-card p,
.live-case p,
.footer-main p,
.footer-legal {
  color: #252a33;
}

.live-cases {
  margin-top: 0;
}

.live-cases__grid {
  align-items: stretch;
}

.live-case {
  min-height: 0;
  gap: 12px;
  padding: 16px;
}

.live-case__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background-color: var(--paper);
}

.live-case__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 300%;
  height: 200%;
  max-width: none;
  display: block;
  object-fit: fill;
  transform: translate(var(--case-x, 0), var(--case-y, 0));
}

.live-case h4 {
  margin-top: 2px;
}

body .button--telegram,
body .button--telegram:visited,
body .button--telegram:active,
body .header-actions__link--telegram,
body .header-actions__link--telegram:visited,
body .header-actions__link--telegram:active,
body .site-footer .footer-contacts [data-telegram-link],
body .site-footer .footer-contacts [data-telegram-link]:visited,
body .site-footer .footer-contacts [data-telegram-link]:active {
  background: #229ed9 !important;
  border-color: #229ed9 !important;
  color: #ffffff !important;
}

body .button--telegram:hover,
body .button--telegram:focus-visible,
body .header-actions__link--telegram:hover,
body .header-actions__link--telegram:focus-visible,
body .site-footer .footer-contacts [data-telegram-link]:hover,
body .site-footer .footer-contacts [data-telegram-link]:focus-visible {
  background: #168acd !important;
  border-color: #168acd !important;
  color: #ffffff !important;
}

.audit-copy h2,
.audit-copy p:not(.eyebrow),
.package-card--featured h3,
.package-card--featured p,
.package-card--black h3,
.package-card--black p {
  color: #ffffff;
}

.audit-copy .eyebrow,
.package-card--featured span,
.package-card--featured strong,
.package-card--black span,
.package-card--black strong {
  color: var(--orange);
}

.audit-copy .button {
  background: #ffffff;
  color: #050505;
}

.call-badge b {
  display: inline-block;
  transform: rotate(-45deg);
  transform-origin: center;
}

.platform-board__intro b,
.platform-board__intro span,
.platform-board__intro p {
  color: #ffffff;
}

.platform-board__custom {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.platform-board__custom::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), #229ed9);
}

.platform-board__custom span {
  color: var(--orange);
}

.audit-board {
  gap: 12px;
  border: 0;
  background: transparent;
  overflow: visible;
}

.audit-board article,
.audit-board article:nth-child(2),
.audit-board article:nth-child(3) {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid #111318;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, #111318, #252a34);
  color: #ffffff;
}

.audit-board article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--orange);
}

.audit-board article::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -34px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,61,0,.26), transparent 62%);
}

.audit-board span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--orange);
  color: #ffffff;
  font-size: .82rem;
  line-height: 1;
}

.audit-board b {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.audit-board p {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.72);
}

.telegram-page {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 72px 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(34,158,217,.16), transparent 30%),
    radial-gradient(circle at 16% 82%, rgba(255,61,0,.18), transparent 32%),
    linear-gradient(180deg, #ffffff, var(--paper));
}

.telegram-card {
  display: grid;
  gap: 20px;
}

.telegram-card h1 {
  max-width: 820px;
}

.telegram-card > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.12rem;
}

.telegram-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.telegram-note {
  color: var(--muted);
  font-weight: 850;
}

.telegram-note strong {
  color: var(--orange);
}

/* Mobile polish and compact header */
html[data-modal-open="true"],
body[data-modal-open="true"] {
  overflow: hidden;
  overscroll-behavior: none;
}

.lead-modal {
  overflow: hidden;
  overscroll-behavior: contain;
  touch-action: auto;
  background: rgba(8, 8, 8, .62);
}

.lead-modal__backdrop {
  position: fixed;
  inset: 0;
  touch-action: none;
}

.lead-modal__dialog {
  max-height: calc(100svh - 32px);
  overflow: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.site-header__inner {
  position: relative;
  min-height: 64px;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: nowrap;
}

.brand {
  flex: 0 1 auto;
  max-width: min(42vw, 280px);
  gap: 8px;
}

.brand__mark,
.site-footer .brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  font-size: .72rem;
  transform: none;
}

.brand__text span {
  font-size: .96rem;
  line-height: 1.05;
}

.brand__text small {
  font-size: .68rem;
  line-height: 1.05;
}

.header-actions {
  order: 2;
  width: auto;
  margin-left: 2px;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 6px;
  padding: 0;
}

.header-actions__link {
  position: relative;
  width: 38px;
  min-width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border-radius: 50%;
  font-size: 0;
}

.header-actions__link::before {
  content: "";
  display: block;
}

.header-actions__link--telegram::before {
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.8 4.3 18.5 20c-.2 1-.8 1.2-1.6.8l-4.7-3.5-2.3 2.2c-.3.3-.5.5-1 .5l.4-4.9L18.1 7c.4-.4-.1-.6-.6-.2L6.6 13.6 2 12.2c-1-.3-1-1 0-1.4L20.3 3.7c.8-.3 1.6.2 1.5.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.8 4.3 18.5 20c-.2 1-.8 1.2-1.6.8l-4.7-3.5-2.3 2.2c-.3.3-.5.5-1 .5l.4-4.9L18.1 7c.4-.4-.1-.6-.6-.2L6.6 13.6 2 12.2c-1-.3-1-1 0-1.4L20.3 3.7c.8-.3 1.6.2 1.5.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.header-actions__link--phone::before {
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6 10.8a15.1 15.1 0 0 0 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.1.4 2.3.6 3.5.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.5.1.4 0 .8-.3 1.1l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6 10.8a15.1 15.1 0 0 0 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.1.4 2.3.6 3.5.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.5.1.4 0 .8-.3 1.1l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-toggle {
  order: 4;
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  margin-left: auto;
  padding: 0;
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 50%;
}

.nav-toggle span,
.nav-toggle::after {
  content: "";
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: #050505;
}

.nav-toggle b {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-nav {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  width: min(320px, calc(100vw - 24px));
  display: none;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.site-nav[data-open="true"] {
  display: grid;
}

.site-nav a {
  width: 100%;
  min-height: 44px;
}

.article-page .article-card__link {
  border: 1px solid #050505;
  background: #ffffff;
  color: #050505;
}

.article-page .article-card__link:hover,
.article-page .article-card__link:focus-visible {
  background: #050505;
  color: #ffffff;
}

.hero-panel--four span,
.package-card--app span {
  color: var(--orange);
}

.package-card--app p,
.package-card--app h3 {
  color: #ffffff;
}

.package-card--app {
  min-height: 180px;
  align-content: space-between;
}

.package-card strong,
.quick-services span,
.hero-brief__top strong {
  white-space: nowrap;
}

.package-card--orange {
  background: #fff4ec;
  border-color: rgba(255, 90, 0, .34);
}

.package-card--orange h3,
.package-card--orange strong {
  color: #050505;
}

.package-card--orange span,
.package-card--orange p {
  color: #252a33;
}

.call-copy .eyebrow,
.call-copy p:not(.eyebrow),
.call-form__line span {
  color: #ffffff;
  font-weight: 950;
}

.call-form input,
.call-form select,
.call-form textarea {
  border: 1px solid rgba(5, 5, 5, .16);
  background: rgba(255,255,255,.96);
  color: #050505;
}

.call-form input::placeholder,
.call-form textarea::placeholder {
  color: #59606c;
}

.call-form select {
  color-scheme: light;
}

@media (max-width: 720px) {
  .site-header__inner {
    width: min(100% - 20px, var(--container));
    min-height: 58px;
    gap: 6px;
  }

  .brand {
    max-width: calc(100vw - 150px);
  }

  .brand__mark,
  .site-footer .brand__mark {
    width: 30px;
    height: 30px;
    font-size: .66rem;
  }

  .brand__text span {
    font-size: .88rem;
  }

  .brand__text small {
    display: block;
    font-size: .56rem;
  }

  .header-actions__link {
    width: 34px;
    min-width: 34px;
    height: 34px;
    min-height: 34px;
  }

  .nav-toggle {
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
  }

  .site-nav {
    left: 10px;
    right: 10px;
    width: auto;
  }

  .hero {
    min-height: auto;
    display: block;
  }

  .hero-stage {
    display: block !important;
    top: 72px;
    left: 50%;
    right: auto;
    width: min(92vw, 360px);
    height: 310px;
    opacity: 1;
    transform: translateX(-50%);
    z-index: 2;
    perspective: none;
  }

  .hero-stage__frame {
    transform: none;
    border-color: rgba(17,19,24,.14);
    background: rgba(255,255,255,.9);
  }

  .hero-panel,
  .hero-console {
    display: none;
  }

  .site-assembly {
    display: block !important;
    width: min(86vw, 320px);
    height: 260px;
  }

  .shop-build {
    inset: 12px;
  }

  .hero__inner {
    padding-top: 398px;
  }

  .hero__inner--split {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(2.05rem, 10.5vw, 2.8rem);
  }

  .hero-brief__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .hero-brief__top strong {
    font-size: clamp(1.2rem, 5.5vw, 1.45rem);
  }

  .package-card--orange {
    background: #ffffff;
    border-color: rgba(255, 90, 0, .36);
  }

  .call-card {
    background:
      radial-gradient(circle at 80% 0%, rgba(255,255,255,.24), transparent 30%),
      linear-gradient(135deg, #ff5a00, #ef4500 62%, #cc3200);
  }

  .call-form__line span {
    font-size: 1rem;
  }

  .lead-modal {
    align-items: center;
    padding: 12px;
  }

  .lead-modal__dialog {
    width: 100%;
    max-height: calc(100svh - 24px);
    margin: 0;
  }
}

/* Round contact icons and mobile menu like a clean agency app */
.header-actions__link--telegram {
  background: #2aabee !important;
  border-color: #2aabee !important;
  color: #ffffff !important;
}

.header-actions__link--phone {
  background: #2455d6 !important;
  border-color: #2455d6 !important;
  color: #ffffff !important;
}

.header-actions__link--telegram:hover,
.header-actions__link--telegram:focus-visible {
  background: #1d98dc !important;
  border-color: #1d98dc !important;
}

.header-actions__link--phone:hover,
.header-actions__link--phone:focus-visible {
  background: #1f49bf !important;
  border-color: #1f49bf !important;
}

.header-actions__link::before {
  width: 19px;
  height: 19px;
}

.header-actions__link--phone::before {
  width: 20px;
  height: 20px;
}

html[data-menu-open="true"],
body[data-menu-open="true"] {
  overflow: hidden;
  overscroll-behavior: none;
}

.mobile-menu__divider,
.mobile-menu__secondary,
.mobile-menu__contacts {
  display: none;
}

@media (max-width: 1040px) {
  .site-header {
    z-index: 180;
  }

  .site-nav {
    position: fixed;
    inset: 64px 0 0 0;
    z-index: 170;
    width: auto;
    max-height: calc(100svh - 64px);
    overflow: auto;
    overscroll-behavior: contain;
    display: none;
    align-content: start;
    gap: 0;
    padding: 34px 28px 0;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: #ffffff;
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav > a {
    min-height: 66px;
    justify-content: flex-start;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #070707;
    font-size: clamp(1.55rem, 6.8vw, 2.55rem);
    line-height: 1;
    font-weight: 950;
  }

  .site-nav > .mobile-menu__close {
    position: absolute;
    top: 16px;
    right: 22px;
    width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f2f5f9;
    color: #050505;
    font-size: 2rem;
    line-height: 1;
    font-weight: 500;
  }

  .site-nav > a:hover {
    background: transparent;
    color: var(--orange);
  }

  .site-nav > a:nth-of-type(n+5) {
    min-height: 42px;
    color: #626b78;
    font-size: clamp(1.05rem, 4.8vw, 1.45rem);
    font-weight: 750;
  }

  .mobile-menu__divider {
    display: block;
    height: 1px;
    margin: 24px 0;
    background: var(--line);
  }

  .mobile-menu__secondary {
    display: grid;
    gap: 16px;
    padding-bottom: 26px;
  }

  .mobile-menu__secondary a {
    color: #626b78;
    font-size: clamp(1.15rem, 5vw, 1.55rem);
    font-weight: 750;
  }

  .mobile-menu__contacts {
    display: grid;
    gap: 16px;
    margin: 0 -28px;
    padding: 28px;
    background: #f2f5f9;
  }

  .mobile-menu__contacts span {
    color: #687386;
    font-size: 1.05rem;
    font-weight: 750;
  }

  .mobile-menu__contacts > a {
    width: fit-content;
    color: #050505;
    font-size: clamp(1.45rem, 7vw, 2.2rem);
    line-height: 1.05;
    font-weight: 950;
  }

  .mobile-menu__contacts .mobile-menu__email {
    color: #2455d6;
    font-size: clamp(1.15rem, 5.4vw, 1.65rem);
    text-decoration: underline;
    text-underline-offset: 7px;
  }

  .mobile-menu__messengers {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 4px;
  }

  .mobile-menu__messengers a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 950;
  }

  .mobile-menu__messengers [data-telegram-link] {
    background: #2aabee;
  }

  .mobile-menu__messengers [data-phone-link] {
    background: #2455d6;
  }

  .nav-toggle {
    position: relative;
    z-index: 190;
    background: #ffffff;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .nav-toggle[aria-expanded="true"]::after {
    opacity: 0;
  }
}

/* Separate service pages */
.service-hero {
  padding: 96px 0 72px;
  background:
    radial-gradient(circle at 78% 14%, rgba(255,90,0,.16), transparent 28%),
    linear-gradient(180deg, #ffffff, #f7f8fb);
  border-bottom: 1px solid var(--line);
}

.service-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .45fr);
  gap: 42px;
  align-items: end;
}

.service-hero h1 {
  max-width: 920px;
}

.service-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.15rem;
}

.service-price-card {
  padding: 26px;
  border: 1px solid #050505;
  border-radius: var(--radius);
  background: #050505;
  color: #ffffff;
}

.service-price-card span {
  color: rgba(255,255,255,.68);
  font-weight: 850;
}

.service-price-card strong {
  display: block;
  margin-top: 10px;
  color: var(--orange);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.service-price-card p {
  margin-bottom: 0;
  color: rgba(255,255,255,.72);
}

.service-price-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.service-price-list__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.16);
  color: #ffffff;
  font-weight: 850;
}

.service-price-list__row b {
  color: var(--orange);
  white-space: nowrap;
}

.service-section {
  padding: 82px 0;
}

.service-grid,
.growth-grid,
.about-grid,
.contact-info-grid {
  display: grid;
  gap: 14px;
}

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

.service-tile,
.growth-card,
.about-card,
.contact-info-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.service-tile span,
.growth-card span,
.about-card span,
.contact-info-card span {
  color: var(--orange);
  font-size: .8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.service-tile h2,
.growth-card h2,
.about-card h2,
.contact-info-card h2 {
  margin-top: 12px;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.service-tile p,
.growth-card p,
.about-card p,
.contact-info-card p {
  color: var(--muted);
}

.growth-band {
  padding: 82px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.growth-card strong {
  display: block;
  margin-top: 18px;
  color: var(--orange);
  font-size: 1.35rem;
}

.about-hero {
  padding: 96px 0 66px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.about-hero p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.15rem;
}

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

.contact-info-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-info-card a {
  color: #050505;
  font-size: 1.2rem;
  font-weight: 950;
}

.contact-info-card a[href*="t.me"],
.contact-info-card a[href*="telegram"] {
  color: #2455d6;
}

@media (max-width: 900px) {
  .service-hero__grid,
  .service-grid,
  .growth-grid,
  .about-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Service page button refresh */
.service-hero .hero__actions {
  gap: 10px;
}

.service-hero .hero__actions .button {
  position: relative;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 8px;
  gap: 10px;
}

.service-hero .hero__actions .button::after {
  content: "";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  font-size: .92rem;
  line-height: 1;
  font-weight: 950;
}

.service-hero .hero__actions .button--primary {
  background: #101114;
  border-color: #101114;
  color: #ffffff;
}

.service-hero .hero__actions .button--primary::after {
  content: "↗";
  background: var(--orange);
  color: #ffffff;
}

.service-hero .hero__actions .button--telegram {
  background: #ffffff !important;
  border-color: rgba(34, 158, 217, .28) !important;
  color: #111318 !important;
}

.service-hero .hero__actions .button--telegram::after {
  content: "";
  background-color: #2aabee;
  background-image: none;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.8 4.3 18.5 20c-.2 1-.8 1.2-1.6.8l-4.7-3.5-2.3 2.2c-.3.3-.5.5-1 .5l.4-4.9L18.1 7c.4-.4-.1-.6-.6-.2L6.6 13.6 2 12.2c-1-.3-1-1 0-1.4L20.3 3.7c.8-.3 1.6.2 1.5.6Z'/%3E%3C/svg%3E") center / 17px 17px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.8 4.3 18.5 20c-.2 1-.8 1.2-1.6.8l-4.7-3.5-2.3 2.2c-.3.3-.5.5-1 .5l.4-4.9L18.1 7c.4-.4-.1-.6-.6-.2L6.6 13.6 2 12.2c-1-.3-1-1 0-1.4L20.3 3.7c.8-.3 1.6.2 1.5.6Z'/%3E%3C/svg%3E") center / 17px 17px no-repeat;
}

.service-hero .hero__actions .button:hover {
  transform: translateY(-1px);
}

/* Smaller header icons */
body .header-actions {
  gap: 5px;
}

body .header-actions__link {
  width: 34px;
  min-width: 34px;
  height: 34px;
  min-height: 34px;
}

body .header-actions__link::before {
  width: 17px;
  height: 17px;
}

body .header-actions__link--phone,
body .header-actions__link--phone:visited,
body .header-actions__link--phone:active {
  background: #20bf55 !important;
  border-color: #20bf55 !important;
  color: #ffffff !important;
}

body .header-actions__link--phone:hover,
body .header-actions__link--phone:focus-visible {
  background: #16a34a !important;
  border-color: #16a34a !important;
}

@media (max-width: 720px) {
  body .header-actions__link {
    width: 31px;
    min-width: 31px;
    height: 31px;
    min-height: 31px;
  }

  body .header-actions__link::before {
    width: 16px;
    height: 16px;
  }
}

/* Final header split: compact controls only on tablet/mobile, calmer desktop header */
@media (min-width: 1041px) {
  body .site-header__inner {
    min-height: 74px;
    justify-content: space-between;
    gap: 22px;
  }

  body .site-header .brand {
    order: 1;
    max-width: none;
    gap: 11px;
  }

  body .site-header .brand__mark {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: .82rem;
  }

  body .site-header .brand__text span {
    font-size: 1.06rem;
  }

  body .site-header .brand__text small {
    font-size: .72rem;
  }

  body .nav-toggle {
    display: none !important;
  }

  body .site-nav {
    position: static;
    order: 2;
    width: auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  body .site-nav > a {
    width: auto;
    min-height: 40px;
    padding: 0 11px;
    border-radius: 999px;
    color: #17191f;
    font-size: .9rem;
    line-height: 1;
    font-weight: 850;
  }

  body .site-nav > a:hover,
  body .site-nav > a:focus-visible {
    background: #f4f6f8;
    color: #050505;
  }

  body .mobile-menu__divider,
  body .mobile-menu__secondary,
  body .mobile-menu__contacts {
    display: none !important;
  }

  body .header-actions {
    order: 3;
    margin-left: auto;
    gap: 8px;
  }

  body .header-actions__link {
    width: auto;
    min-width: 0;
    height: 42px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 950;
  }

  body .header-actions__link::before {
    display: none;
  }
}

@media (max-width: 1040px) {
  body .site-header__inner {
    min-height: 64px;
    justify-content: flex-start;
    gap: 9px;
  }

  body .site-header .brand {
    order: 1;
    max-width: calc(100vw - 190px);
    gap: 9px;
  }

  body .site-header .brand__mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: .76rem;
  }

  body .site-header .brand__text span {
    font-size: 1rem;
  }

  body .site-header .brand__text small {
    font-size: .66rem;
  }

  body .nav-toggle {
    order: 3;
    width: 32px;
    min-width: 32px;
    height: 38px;
    min-height: 38px;
    margin-left: 0;
    padding: 0;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
    gap: 5px;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
  }

  body .mobile-menu-details {
    display: block;
    order: 3;
    margin-left: 0;
    z-index: 10001;
  }

  body .mobile-menu-details > .nav-toggle {
    display: inline-flex !important;
  }

  body .nav-toggle span,
  body .nav-toggle::after {
    width: 24px;
    height: 2px;
    background: #050505;
  }

  body .header-actions {
    order: 2;
    margin-left: auto;
    gap: 7px;
  }

  body .header-actions__link {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
  }
}

@media (max-width: 720px) {
  body .site-header__inner {
    gap: 6px;
  }

  body .site-header .brand {
    max-width: calc(100vw - 166px);
  }

  body .site-header .brand__mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  body .site-header .brand__text span {
    font-size: .9rem;
  }

  body .site-header .brand__text small {
    font-size: .56rem;
  }

  body .header-actions {
    gap: 5px;
  }

  body .header-actions__link {
    width: 33px;
    min-width: 33px;
    height: 33px;
    min-height: 33px;
  }

  body .nav-toggle {
    width: 28px;
    min-width: 28px;
  }

  body .nav-toggle span,
  body .nav-toggle::after {
    width: 22px;
  }
}

/* Mobile hero: animation works as a background, not as a separate block above text */
@media (max-width: 720px) {
  body .hero {
    min-height: auto;
    display: block;
  }

  body .hero::before {
    background:
      linear-gradient(180deg, rgba(8,8,8,.94) 0%, rgba(8,8,8,.8) 46%, rgba(8,8,8,.95) 100%),
      repeating-linear-gradient(135deg, rgba(255,122,0,.16) 0 2px, transparent 2px 18px),
      linear-gradient(135deg, #080808, #181818 48%, #0c0c0c);
  }

  body .hero::after {
    z-index: 0;
    top: 4%;
    right: -58vw;
    width: 118vw;
    height: 66%;
    opacity: .26;
  }

  body .hero-stage {
    display: block !important;
    top: 34px;
    left: 50%;
    right: auto;
    width: min(118vw, 470px);
    height: 430px;
    z-index: 1;
    opacity: .42;
    transform: translateX(-43%) scale(1.04);
    perspective: none;
    filter: saturate(1.08);
  }

  body .hero-stage__canvas {
    opacity: .42;
  }

  body .hero-stage__frame {
    transform: rotate(-2deg);
    border-color: rgba(255,255,255,.16);
    background: rgba(255,255,255,.62);
  }

  body .site-assembly {
    display: block !important;
    width: min(104vw, 390px);
    height: 306px;
    opacity: .92;
  }

  body .shop-build {
    inset: 12px;
  }

  body .hero__inner {
    z-index: 4;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  body .hero-copy,
  body .hero-brief {
    position: relative;
    z-index: 5;
  }

  body .hero-copy h1 {
    max-width: 100%;
  }

  body .hero__lead {
    color: rgba(255,255,255,.84);
  }
}

@media (max-width: 420px) {
  body .hero-stage {
    top: 48px;
    left: 56%;
    width: 132vw;
    height: 390px;
    opacity: .36;
    transform: translateX(-50%) scale(1.02);
  }

  body .site-assembly {
    width: min(118vw, 376px);
    height: 292px;
  }

  body .hero__inner {
    padding-top: 64px;
  }
}

/* Final mobile fixes: readable hero copy and visible menu above every layer */
@media (max-width: 1040px) {
  body .site-nav {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  body .site-header {
    z-index: 10000 !important;
  }

  html[data-menu-open="true"] body .site-header,
  body[data-menu-open="true"] .site-header,
  html.menu-is-open body .site-header,
  body.menu-is-open .site-header {
    z-index: 10000 !important;
  }

  html[data-menu-open="true"] body .site-nav,
  body[data-menu-open="true"] .site-nav,
  body .site-nav:target,
  body .nav-check:checked ~ .site-nav,
  body .site-nav[data-open="true"],
  body .site-nav.is-open,
  html.menu-is-open body .site-nav,
  body.menu-is-open .site-nav {
    position: fixed !important;
    inset: 64px 0 0 0 !important;
    z-index: 9999 !important;
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    background: #ffffff !important;
  }

  body .site-nav:target > .mobile-menu__close {
    display: inline-flex !important;
  }

  body .nav-check:checked + .nav-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  body .nav-check:checked + .nav-toggle span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }

  body .nav-check:checked + .nav-toggle::after {
    opacity: 0;
  }
}

@media (max-width: 720px) {
  body .hero-stage {
    opacity: .24;
  }

  body .hero-stage__canvas {
    opacity: .26;
  }

  body .hero-stage__frame {
    background: rgba(255,255,255,.36);
  }

  body .site-assembly {
    opacity: .68;
  }

  body .hero-copy {
    padding: 18px 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(5,5,5,.82), rgba(5,5,5,.58));
    backdrop-filter: blur(4px);
  }

  body .hero-copy .eyebrow,
  body .hero-copy h1,
  body .hero__lead {
    text-shadow: 0 2px 18px rgba(0,0,0,.42);
  }

  body .hero-signal span {
    background: rgba(255,255,255,.12);
  }
}

/* Hard readability fix for mobile hero without hiding the animation */
@media (max-width: 720px) {
  body .hero::before {
    background:
      linear-gradient(90deg, rgba(5,5,5,.94) 0%, rgba(5,5,5,.82) 48%, rgba(5,5,5,.42) 100%),
      repeating-linear-gradient(135deg, rgba(255,122,0,.16) 0 2px, transparent 2px 18px),
      linear-gradient(135deg, #080808, #181818 48%, #0c0c0c);
  }

  body .hero-stage {
    z-index: 0 !important;
    opacity: .32 !important;
  }

  body .hero-stage__canvas {
    opacity: .3 !important;
  }

  body .site-assembly {
    opacity: .72 !important;
  }

  body .hero__inner {
    z-index: 6 !important;
  }

  body .hero-copy {
    z-index: 8 !important;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    color: #ffffff !important;
    backdrop-filter: none;
  }

  body .hero-copy .eyebrow {
    color: var(--orange) !important;
    text-shadow: 0 2px 14px rgba(0,0,0,.75) !important;
  }

  body .hero-copy h1 {
    color: #ffffff !important;
    text-shadow: 0 3px 18px rgba(0,0,0,.86), 0 1px 2px rgba(0,0,0,.95) !important;
  }

  body .hero-copy .hero__lead {
    color: rgba(255,255,255,.9) !important;
    text-shadow: 0 2px 14px rgba(0,0,0,.78) !important;
  }

  body .hero-copy .button--telegram {
    border-color: #0088cc !important;
    background: #0088cc !important;
    color: #ffffff !important;
  }

  body .hero-signal span {
    border-color: rgba(255,255,255,.2);
    background: rgba(0,0,0,.28);
    color: #ffffff;
  }

  body .package-card--app {
    min-height: 160px;
  }
}

/* Mobile menu in the clean white style from the reference */
html.details-menu-is-open,
body.details-menu-is-open {
  overflow: hidden !important;
  overscroll-behavior: none !important;
}

.mobile-menu-details[open],
.mobile-menu-details.is-open {
  position: relative;
  z-index: 2147483647;
}

.mobile-menu-details[open] > .mobile-menu-panel,
.mobile-menu-details.is-open > .mobile-menu-panel {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483647 !important;
  display: grid !important;
  grid-template-rows: auto minmax(0, 1fr) auto !important;
  align-content: stretch !important;
  gap: 0 !important;
  width: 100vw !important;
  min-height: 100vh !important;
  min-height: 100dvh !important;
  max-height: 100dvh !important;
  overflow: hidden !important;
  overscroll-behavior: contain !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  color: #050505 !important;
}

.mobile-menu-panel__top {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px 12px;
  border-bottom: 1px solid #eef1f4;
  background: #ffffff;
}

.mobile-menu-logo {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #050505;
  text-decoration: none;
  font-size: clamp(.94rem, 4.2vw, 1.16rem);
  line-height: .98;
  font-weight: 950;
  letter-spacing: 0;
}

.mobile-menu-logo__mark {
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #ff7a00;
  color: #050505;
  font-size: .56rem;
  line-height: 1;
  font-weight: 950;
  transform: rotate(-7deg);
}

.mobile-menu-panel__close {
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: grid;
  place-items: center;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #050505;
  box-shadow: none;
  font: inherit;
  font-size: 1.82rem;
  line-height: 1;
  font-weight: 400;
  cursor: pointer;
}

.mobile-menu-panel__body {
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  background: #ffffff;
}

.mobile-menu-panel__primary {
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 18px 20px 16px;
}

.mobile-menu-panel__primary a {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #070707;
  text-decoration: none;
  font-size: clamp(.86rem, 3.75vw, 1.02rem);
  line-height: 1.15;
  font-weight: 820;
  letter-spacing: 0;
  border-bottom: 1px solid #f0f2f5;
}

.mobile-menu-panel__primary a::before {
  content: "";
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: #ff7a00;
}

.mobile-menu-panel__primary a::after {
  content: "→";
  margin-left: auto;
  color: #a8b0bc;
  font-size: .95em;
  font-weight: 700;
}

.mobile-menu-panel__secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 0 20px;
  padding: 14px 0 18px;
  border-top: 1px solid #eef1f4;
}

.mobile-menu-panel__secondary a {
  color: #626b78;
  text-decoration: none;
  font-size: clamp(.74rem, 3.25vw, .86rem);
  line-height: 1.2;
  font-weight: 780;
}

.mobile-menu-panel__contacts {
  display: grid;
  gap: 10px;
  padding: 16px 20px max(16px, env(safe-area-inset-bottom));
  background: #f2f5f9;
}

.mobile-menu-panel__contacts span {
  color: #687386;
  font-size: .78rem;
  line-height: 1.2;
  font-weight: 750;
}

.mobile-menu-panel__phone {
  width: fit-content;
  color: #050505;
  text-decoration: none;
  font-size: clamp(.94rem, 4.1vw, 1.14rem);
  line-height: 1.05;
  font-weight: 950;
}

.mobile-menu-panel__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-top: 2px;
}

.mobile-menu-panel__messenger {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #050505;
  text-decoration: none;
  font-size: .8rem;
  line-height: 1;
  font-weight: 900;
}

.mobile-menu-panel__icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.mobile-menu-panel__icon::before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background: #ffffff;
}

.mobile-menu-panel__messenger--telegram .mobile-menu-panel__icon {
  background: #2aabee;
}

.mobile-menu-panel__messenger--telegram .mobile-menu-panel__icon::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.8 4.3 18.5 20c-.2 1-.8 1.2-1.6.8l-4.7-3.5-2.3 2.2c-.3.3-.5.5-1 .5l.4-4.9L18.1 7c.4-.4-.1-.6-.6-.2L6.6 13.6 2 12.2c-1-.3-1-1 0-1.4L20.3 3.7c.8-.3 1.6.2 1.5.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.8 4.3 18.5 20c-.2 1-.8 1.2-1.6.8l-4.7-3.5-2.3 2.2c-.3.3-.5.5-1 .5l.4-4.9L18.1 7c.4-.4-.1-.6-.6-.2L6.6 13.6 2 12.2c-1-.3-1-1 0-1.4L20.3 3.7c.8-.3 1.6.2 1.5.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.mobile-menu-panel__messenger--phone .mobile-menu-panel__icon {
  background: #20bf55;
}

.mobile-menu-panel__messenger--phone .mobile-menu-panel__icon::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6 10.8a15.1 15.1 0 0 0 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.1.4 2.3.6 3.5.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.5.1.4 0 .8-.3 1.1l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6 10.8a15.1 15.1 0 0 0 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.1.4 2.3.6 3.5.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.5.1.4 0 .8-.3 1.1l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (max-width: 420px) {
  .mobile-menu-panel__top {
    min-height: 62px;
    padding: 12px 16px 10px;
  }

  .mobile-menu-logo {
    gap: 9px;
    font-size: clamp(.88rem, 4.2vw, 1.05rem);
  }

  .mobile-menu-logo__mark {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }

  .mobile-menu-panel__primary {
    gap: 3px;
    padding: 16px 16px 14px;
  }

  .mobile-menu-panel__secondary {
    margin: 0 16px;
  }

  .mobile-menu-panel__contacts {
    padding-right: 16px;
    padding-left: 16px;
  }
}

/* Telegram/iOS stability: menu and modal always stay above the current screen */
html,
body {
  overscroll-behavior-y: none;
  background: #ffffff;
}

.lead-modal {
  z-index: 2147483000 !important;
  align-items: flex-start !important;
  overflow: auto !important;
  padding: max(16px, env(safe-area-inset-top)) 14px max(82px, env(safe-area-inset-bottom)) !important;
}

.lead-modal[data-open="true"] {
  display: flex !important;
}

.lead-modal__backdrop {
  z-index: 0;
}

.lead-modal__dialog {
  z-index: 1;
  margin: 0 auto !important;
  max-height: none !important;
}

.lead-modal__close {
  z-index: 3;
}

html[data-modal-open="true"] body .site-header,
body[data-modal-open="true"] .site-header {
  z-index: 1 !important;
  pointer-events: none !important;
}

@media (max-width: 1040px) {
  body .site-header {
    z-index: 3000 !important;
    background: #ffffff !important;
    transform: translateZ(0);
  }

  body .site-header::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 220px;
    background: #ffffff;
    pointer-events: none;
  }

  body::before {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: -140px;
    height: 140px;
    background: #ffffff;
    pointer-events: none;
    z-index: 2999;
  }

  body[data-modal-open="true"]::before,
  body.details-menu-is-open::before,
  body[data-modal-open="true"] .site-header::before,
  body.details-menu-is-open .site-header::before {
    display: none;
  }

  .mobile-menu-panel.is-open,
  .mobile-menu-panel[data-open="true"] {
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147483647 !important;
    display: grid !important;
    grid-template-rows: auto minmax(0, 1fr) auto !important;
    align-content: stretch !important;
    gap: 0 !important;
    width: 100vw !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    max-height: 100dvh !important;
    overflow: hidden !important;
    overscroll-behavior: contain !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    color: #050505 !important;
    transform: translateZ(0);
  }

  .mobile-menu-panel.is-open .mobile-menu-panel__body,
  .mobile-menu-panel[data-open="true"] .mobile-menu-panel__body {
    min-height: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
}

@media (max-width: 720px) {
  .lead-modal {
    padding: max(12px, env(safe-area-inset-top)) 12px max(76px, env(safe-area-inset-bottom)) !important;
  }

  .lead-modal__dialog {
    width: min(100%, 520px) !important;
    border-radius: 22px !important;
  }

  .lead-modal__close {
    top: 10px !important;
    right: 10px !important;
  }
}

/* Legal consent near lead forms */
.lead-form__consent {
  grid-column: 1 / -1;
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: #59616f;
  font-size: .82rem;
  font-weight: 650;
  line-height: 1.38;
}

.lead-form__consent input {
  flex: 0 0 18px;
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 1px;
  padding: 0;
  accent-color: var(--orange);
}

.lead-form__consent span {
  display: inline;
  font-weight: 650;
}

.lead-form__consent a {
  color: var(--black);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(247, 89, 29, .45);
  text-underline-offset: 3px;
}

.call-form .lead-form__consent {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, .82);
}

.call-form .lead-form__consent a {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, .5);
}
