:root {
  --bg: #080c10;
  --bg-soft: #10161c;
  --panel: #141b22;
  --text: #101319;
  --muted: #69727d;
  --line: #e7ebef;
  --surface: #ffffff;
  --surface-soft: #f5f7f9;
  --blue: #2477f3;
  --blue-soft: #eaf2ff;
  --green: #19b54b;
  --radius: 18px;
  --shadow: 0 14px 45px rgba(18, 28, 42, .08);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: #dfe3e7;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; }

.page-shell {
  width: min(100%, 1480px);
  margin: 0 auto;
  background: var(--surface);
  box-shadow: 0 0 80px rgba(10, 15, 20, .16);
  overflow: hidden;
}
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: rgba(7, 11, 15, .92);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 76px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 22px; font-weight: 760; letter-spacing: -.04em; white-space: nowrap; }
.brand-mark { width: 34px; height: 40px; display: grid; place-items: center; filter: drop-shadow(0 0 10px rgba(83, 181, 255, .65)); }
.brand-mark svg { width: 30px; height: 40px; fill: #fff; }
.main-nav { display: flex; justify-content: center; gap: 34px; margin-inline: auto; }
.main-nav a { color: #fff; font-size: 14px; font-weight: 600; opacity: .82; transition: opacity .2s, color .2s; }
.main-nav a:hover { opacity: 1; color: #78b8ff; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-button { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; }
.icon-button svg { width: 22px; height: 22px; fill: white; }
.icon-button.telegram { background: #2f9dea; }
.icon-button.whatsapp { background: #23bf55; }
.icon-button.maps { background: #fc3f1d; }
.icon-button.viber { background: #7360f2; }
.icon-button.youtube { background: #ff0033; }

.button {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  transition: transform .2s, border-color .2s, background .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button svg.icon-fill { fill: currentColor; stroke: none; }
.button-outline { color: #fff; border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.03); }
.button-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.button-light { color: #11161c; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,.22); }
.button-dark { color: #fff; background: #10161c; box-shadow: 0 12px 32px rgba(10, 15, 20, .18); }
.button-more {
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: #10161c;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em;
  transition: color .2s, transform .2s;
}
.button-more:hover {
  color: var(--blue);
  transform: translateY(-1px);
}

.header-call { min-height: 42px; padding-inline: 18px; font-size: 14px; border-radius: 10px; }
.menu-button { display: none; width: 43px; height: 43px; border: 0; border-radius: 10px; background: rgba(255,255,255,.08); }
.menu-button span { width: 21px; height: 2px; margin: 4px auto; display: block; background: #fff; border-radius: 3px; transition: transform .2s, opacity .2s; }

.hero { min-height: 530px; position: relative; display: grid; color: #fff; overflow: hidden; background: #090e13; }
.hero-media { position: absolute; inset: 0; left: 40%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.82) contrast(1.05); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,11,15,.98) 0%, rgba(7,11,15,.94) 37%, rgba(7,11,15,.52) 62%, rgba(7,11,15,.14) 100%), linear-gradient(0deg, rgba(7,11,15,.45), transparent 45%); }
.hero-grid { position: relative; z-index: 2; display: grid; align-items: center; padding-block: 50px; }
.hero-copy { max-width: 650px; }
.eyebrow { display: inline-flex; gap: 8px; align-items: center; font-size: 14px; font-weight: 650; opacity: .9; }
.eyebrow span { width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; background: var(--blue); font-size: 12px; }
.hero h1 { margin: 24px 0 16px; max-width: 720px; font-size: clamp(40px, 5.5vw, 68px); line-height: 1.02; letter-spacing: -.055em; }
.hero-copy > p { max-width: 570px; margin: 0; color: rgba(255,255,255,.76); font-size: 18px; line-height: 1.55; }
.trust-row { margin-top: 28px; display: flex; gap: 8px; flex-wrap: wrap; }
.trust-card { min-height: 56px; padding: 10px 13px; display: flex; align-items: center; gap: 9px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); border-radius: 12px; backdrop-filter: blur(8px); }
.trust-card b { color: #61a8ff; font-size: 19px; }
.trust-card:first-child b { color: #ffc84d; }
.trust-card span { font-size: 12px; font-weight: 650; line-height: 1.3; }
.trust-card small { display: block; color: rgba(255,255,255,.62); font-size: 10px; font-weight: 500; }
.hero-actions { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }

.section { padding: 78px 0; }
.section-light { background: var(--surface-soft); }
.section-heading { margin-bottom: 30px; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.section-heading h2 { margin: 3px 0 0; font-size: clamp(30px, 4vw, 42px); letter-spacing: -.045em; line-height: 1.05; }
.section-kicker { color: var(--blue); font-size: 13px; font-weight: 760; letter-spacing: .06em; text-transform: uppercase; }
.text-link { padding: 8px 0; border: 0; background: none; color: var(--blue); font-weight: 700; }
.text-link span { display: inline-block; transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

#services {
  background: linear-gradient(180deg, #fbfcfe 0%, #f4f7fa 100%);
}
#services .section-heading {
  margin-bottom: 22px;
  align-items: center;
}
#services .section-kicker { display: none; }
#services .section-heading h2 {
  margin: 0;
  font-size: clamp(25px, 2.7vw, 32px);
  letter-spacing: -.04em;
}
#services .text-link {
  font-size: 12px;
  font-weight: 750;
}
.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.service-card {
  min-height: 192px;
  position: relative;
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(218, 225, 232, .9);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(18, 28, 42, .075);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover, .service-card:focus-within { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(18, 28, 42, .13); border-color: #d8e3f5; }
.service-card small { color: #5b6571; font-size: 14px; line-height: 1.05; }
.service-card h3 { margin: 1px 0 0; font-size: 18px; line-height: 1.05; letter-spacing: -.035em; }
.service-visual { min-height: 118px; margin-top: auto; display: grid; place-items: end center; position: relative; }
.service-visual::before { content: none; }
.device-photo {
  width: 100%;
  height: 124px;
  max-width: 154px;
  position: relative;
  z-index: 2;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 10px 14px rgba(15, 23, 42, .12));
  transform: translateY(2px);
  transition: transform .25s, filter .25s;
}
.service-card:hover .device-photo { transform: translateY(-2px) scale(1.035); filter: drop-shadow(0 16px 20px rgba(15, 23, 42, .18)); }
.device-iphone { height: 122px; max-width: 132px; }
.device-ipad { height: 124px; max-width: 136px; }
.device-macbook { height: 118px; max-width: 162px; }
.device-watch { height: 128px; max-width: 136px; }
.device-android { height: 122px; max-width: 124px; }
.device-laptop { height: 116px; max-width: 166px; }
.service-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 1;
  font-weight: 800;
  box-shadow: none;
}

.prices-section { padding-top: 18px; }
.price-heading { align-items: center; }
.search-box { width: min(360px, 100%); height: 46px; padding: 0 14px; display: flex; align-items: center; gap: 9px; border: 1px solid #dfe5ea; border-radius: 12px; background: #fff; }
.search-box svg { width: 19px; fill: none; stroke: #7a8591; stroke-width: 2; stroke-linecap: round; }
.search-box input { width: 100%; border: 0; outline: 0; background: transparent; color: #15191e; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.price-card { padding: 22px; border: 1px solid #e5eaee; border-radius: 17px; background: #fff; box-shadow: 0 10px 30px rgba(20, 31, 44, .055); transition: transform .2s, box-shadow .2s; }
.price-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(20,31,44,.1); }
.price-card .category { color: var(--blue); font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }
.price-card h3 { min-height: 48px; margin: 8px 0 18px; font-size: 18px; line-height: 1.25; }
.price-value { margin-bottom: 17px; font-size: 28px; font-weight: 800; letter-spacing: -.04em; }
.price-meta { padding-top: 14px; display: flex; justify-content: space-between; gap: 8px; border-top: 1px solid #edf0f3; color: var(--muted); font-size: 12px; }
.price-meta span { display: inline-flex; align-items: center; gap: 5px; }
.price-card.hidden { display: none; }
.empty-state { grid-column: 1/-1; padding: 38px; text-align: center; border: 1px dashed #cfd8e2; border-radius: 16px; color: var(--muted); background: rgba(255,255,255,.65); }
.center-action { margin-top: 26px; display: flex; justify-content: center; }

.filter-chips {
  margin: -8px 0 18px;
  padding-bottom: 4px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.filter-chip {
  min-height: 36px;
  padding: 0 13px;
  flex: 0 0 auto;
  border: 1px solid #dfe6ee;
  border-radius: 999px;
  background: #fff;
  color: #5f6b78;
  font-size: 12px;
  font-weight: 750;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.filter-chip:hover { transform: translateY(-1px); border-color: #bdd4f7; color: var(--blue); }
.filter-chip.is-active { border-color: var(--blue); background: var(--blue); color: #fff; }
.list-status { margin: 0 0 14px; color: #7a8591; font-size: 13px; font-weight: 650; }
.actions-row { gap: 12px; flex-wrap: wrap; }
.price-card h3 { min-height: 54px; }
.price-meta { align-items: center; }

.benefits {
  padding: 0;
  color: #fff;
  background: radial-gradient(circle at 20% 0%, rgba(72, 96, 120, .18), transparent 28%), linear-gradient(120deg, #070d11, #101820 58%, #080d12);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.benefits-grid {
  min-height: 104px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}
.benefits article {
  position: relative;
  min-height: 104px;
  padding: 20px 34px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.benefits article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 0;
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,.22);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  color: #fff;
  filter: drop-shadow(0 0 10px rgba(255,255,255,.12));
  transform-origin: center;
}
.benefit-icon svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefits b {
  display: block;
  max-width: 155px;
  font-size: 17px;
  line-height: 1.16;
  letter-spacing: -.025em;
}
.benefits small {
  margin-top: 2px;
  display: block;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.16;
}

.reviews-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0 18px;
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.reviews-grid {
  width: max-content;
  display: flex;
  gap: 16px;
  animation: reviews-tape 190s linear infinite;
  will-change: transform;
}
.reviews-marquee:hover .reviews-grid { animation-play-state: paused; }
.review-card {
  position: relative;
  width: 360px;
  min-height: 230px;
  flex: 0 0 360px;
  padding: 25px 25px 52px;
  border: 1px solid #e5eaee;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.review-card::after { content: "“"; position: absolute; right: 22px; top: 8px; color: #f0f2f4; font-family: Georgia, serif; font-size: 82px; font-weight: 800; }
.stars { position: relative; z-index: 2; color: var(--blue); letter-spacing: 2px; }
.review-card h3 { margin: 15px 0 10px; font-size: 17px; }
.review-card p { position: relative; z-index: 2; margin: 0; color: #4f5964; line-height: 1.55; }
.review-card small { position: absolute; left: 25px; right: 25px; bottom: 22px; color: #99a1aa; }
@keyframes reviews-tape {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}

.process-section { background: #fff; }
.process-section .section-heading.compact { margin-bottom: 30px; }
.process-section .section-kicker { display: none; }
.process-section .section-heading h2 { font-size: clamp(28px, 3.4vw, 38px); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}
.process-grid article {
  position: relative;
  min-height: 96px;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.process-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(100% - 2px);
  width: 26px;
  border-top: 1px dashed #9fbbe5;
}
.process-grid article:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 29px;
  left: calc(100% + 20px);
  width: 6px;
  height: 6px;
  border-top: 1px solid #8fb4ee;
  border-right: 1px solid #8fb4ee;
  transform: rotate(45deg);
}
.step-number {
  position: absolute;
  top: -8px;
  left: -7px;
  width: 25px;
  height: 25px;
  z-index: 3;
  display: grid;
  place-items: center;
  color: #fff;
  background: #10161c;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(16, 22, 28, .15);
  font-size: 12px;
  font-weight: 800;
}
.step-icon {
  width: 64px;
  height: 64px;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #f7f9fc, #edf2f6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 10px 22px rgba(15, 23, 42, .06);
}
.step-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: #151b22;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-grid h3 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -.025em;
}
.process-grid p {
  margin: 0;
  color: #4f5964;
  font-size: 13px;
  line-height: 1.45;
}

.contact-section { padding: 0 0 52px; background: #fff; }
.contact-card { padding: 18px; display: grid; grid-template-columns: 1.25fr .9fr .8fr .95fr; gap: 0; color: #fff; border-radius: 24px; background: linear-gradient(135deg, #0c1217, #121b23); box-shadow: 0 30px 70px rgba(7,12,17,.2); }
.map-card { min-height: 235px; margin-right: 22px; border-radius: 16px; overflow: hidden; background: #e6e9ed; }
.map-card iframe { width: 100%; height: 100%; min-height: 235px; border: 0; filter: grayscale(1) contrast(.9); }
.contact-column { padding: 22px; border-left: 1px solid rgba(255,255,255,.12); }
.contact-column h2 { margin: 0 0 20px; font-size: 17px; }
.contact-column a, .contact-column p, .contact-column strong { margin: 0 0 11px; display: block; color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.45; }
.contact-column a:hover { color: #fff; }
.messenger-button { padding: 10px 14px; display: flex !important; align-items: center; justify-content: center; gap: 8px; text-align: center; border-radius: 9px; color: #fff !important; font-weight: 750; }
.messenger-button svg { width: 18px; height: 18px; flex: 0 0 18px; fill: currentColor; }
.messenger-button.tg { background: #2a82f6; }
.messenger-button.wa { background: #1eb54b; }
.messenger-button.call { background: #2a82f6; }
.messenger-button.vb { background: #7360f2; }
.messenger-button.yt { background: #ff0033; }
.contact-footer { grid-column: 1/-1; margin-top: 18px; padding: 18px 8px 2px; display: flex; gap: 24px; align-items: center; border-top: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.45); font-size: 11px; }
.contact-footer a:hover { color: #fff; }

.modal { position: fixed; inset: 0; z-index: 100; display: none; padding: 20px; align-items: center; justify-content: center; }
.modal.is-open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(5,8,12,.7); backdrop-filter: blur(8px); }
.modal-dialog { position: relative; width: min(100%, 540px); max-height: calc(100vh - 40px); overflow-y: auto; padding: 36px; border-radius: 22px; background: #fff; box-shadow: 0 30px 90px rgba(0,0,0,.38); }
.modal-dialog h2 { margin: 8px 0 10px; font-size: 32px; letter-spacing: -.04em; }
.modal-dialog > p { margin: 0 0 22px; color: var(--muted); line-height: 1.55; }
.modal-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: #f0f3f5; font-size: 24px; }
.modal form { display: grid; gap: 14px; }
.modal label { display: grid; gap: 7px; font-size: 13px; font-weight: 700; }
.modal input, .modal textarea { width: 100%; padding: 13px 14px; border: 1px solid #dce2e7; border-radius: 10px; outline: 0; resize: vertical; }
.modal input:focus, .modal textarea:focus { border-color: #7db2ff; box-shadow: 0 0 0 3px rgba(36,119,243,.12); }
.modal form small { color: #8b949e; line-height: 1.4; }
.form-success { padding: 28px 0 4px; text-align: center; }
.form-success div { width: 62px; height: 62px; margin: auto; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #19b54b; font-size: 28px; }
.form-success h3 { margin: 18px 0 6px; font-size: 24px; }
.form-success p { color: var(--muted); }
body.modal-open { overflow: hidden; }

@media (max-width: 1080px) {
  .main-nav { gap: 20px; }
  .header-call { display: none; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits article { padding-inline: 22px; }
  .benefits article:nth-child(3)::after { display: none; }
  .benefits article:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .process-grid article:nth-child(2n)::after, .process-grid article:nth-child(2n)::before { display: none; }
  .contact-card { grid-template-columns: 1.35fr 1fr 1fr; }
  .messengers { grid-column: 2 / 4; border-top: 1px solid rgba(255,255,255,.12); }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .header-inner { min-height: 66px; justify-content: space-between; gap: 16px; }
  .brand { flex: 0 1 auto; }
  .header-actions { margin-left: auto; flex: 0 0 auto; }
  .main-nav { position: fixed; inset: 66px 0 auto; margin-inline: 0; padding: 22px 18px 28px; display: grid; gap: 4px; background: rgba(7,11,15,.98); border-top: 1px solid rgba(255,255,255,.08); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform .25s, opacity .25s; }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 13px 12px; border-radius: 9px; font-size: 16px; }
  .main-nav a:hover { background: rgba(255,255,255,.06); }
  .menu-button { display: block; }
  .header-actions .icon-button { display: none; }
  .hero { min-height: auto; }
  .hero-media { left: 0; opacity: .58; }
  .hero-shade { background: linear-gradient(90deg, rgba(7,11,15,.96), rgba(7,11,15,.74)), linear-gradient(0deg, rgba(7,11,15,.7), transparent 60%); }
  .hero-grid { padding-block: 70px; }
  .hero h1 { font-size: clamp(38px, 10vw, 58px); }
  .hero-copy > p { font-size: 16px; }
  .trust-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-card:last-child { grid-column: 1/-1; }
  .section { padding: 60px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .section-heading .text-link { align-self: flex-start; }
  .price-tools, .search-box { width: 100%; }
  .review-card { width: 320px; flex-basis: 320px; min-height: 220px; }
  .process-grid { grid-template-columns: 1fr; gap: 22px; }
  .process-grid article::after, .process-grid article::before { display: none !important; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits article { border-bottom: 1px solid rgba(255,255,255,.12); }
  .benefits article:nth-child(odd)::after { display: block; }
  .benefits article:nth-child(even)::after { display: none; }
  .benefits article:last-child { grid-column: 1/-1; border-bottom: 0; }
  .benefits article:last-child::after { display: none; }
  .contact-card { grid-template-columns: 1fr 1fr; }
  .map-card { grid-column: 1/-1; margin: 0 0 18px; }
  .contact-column:nth-of-type(2) { border-left: 0; }
  .messengers { grid-column: 1/-1; border-left: 0; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand { font-size: 19px; }
  .hero-grid { padding-block: 54px; }
  .hero h1 { margin-top: 18px; font-size: 38px; }
  .hero h1 br { display: none; }
  .hero h1 .type-line { display: flex; margin-top: .12em; }
  .eyebrow { font-size: 12px; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .trust-card { padding: 9px; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .button:first-child { grid-column: 1/-1; }
  .hero-actions .button { padding: 0 12px; font-size: 13px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  #services .section-heading h2 { font-size: 30px; }
  .service-card { min-height: 184px; padding: 14px 16px 18px 12px; }
  .service-card small { font-size: 12px; }
  .service-card h3 { font-size: 16px; }
  .service-visual { min-height: 100px; }
  .device-photo { height: 104px; max-width: 124px; }
  .device-iphone, .device-android { height: 104px; max-width: 108px; }
  .device-ipad, .device-watch { height: 108px; max-width: 112px; }
  .device-macbook, .device-laptop { height: 96px; max-width: 132px; }
  .service-arrow { width: 28px; height: 28px; right: 16px; bottom: 16px; }
  .filter-chips { margin-top: -2px; }
  .actions-row { display: grid; grid-template-columns: 1fr; }
  .button-more { order: 2; }
  .actions-row .button-dark { order: 1; }
  .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .price-card { min-height: 190px; padding: 14px 12px; border-radius: 15px; }
  .price-card .category { font-size: 9px; line-height: 1.25; letter-spacing: .08em; }
  .price-card h3 { min-height: 54px; margin: 7px 0 12px; font-size: 14px; line-height: 1.18; letter-spacing: -.035em; }
  .price-value { margin-bottom: 12px; font-size: 25px; }
  .price-meta { padding-top: 10px; font-size: 11px; }
  .review-card { width: 280px; flex-basis: 280px; padding: 20px 20px 50px; }
  .reviews-grid { animation-duration: 160s; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits article { min-height: 78px; padding: 14px 22px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .benefits article::after { display: none !important; }
  .benefits article:last-child { grid-column: auto; border-bottom: 0; }
  .benefits b, .benefits small { max-width: none; font-size: 15px; }
  .process-grid { grid-template-columns: 1fr; gap: 20px; }
  .process-grid article { grid-template-columns: 58px 1fr; min-height: 76px; }
  .step-icon { width: 56px; height: 56px; border-radius: 13px; }
  .step-icon svg { width: 27px; height: 27px; }
  .contact-card { grid-template-columns: 1fr; padding: 12px; }
  .contact-column, .contact-column:nth-of-type(2) { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .messengers { padding-bottom: 18px; }
  .messengers p { margin-bottom: 14px; }
  .messengers .messenger-button {
    width: 62px;
    min-height: auto;
    margin: 0 9px 10px 0;
    padding: 0;
    display: inline-grid !important;
    grid-template-rows: 50px auto;
    justify-items: center;
    align-items: center;
    vertical-align: top;
    gap: 6px;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none;
    font-size: 11px;
    color: rgba(255,255,255,.78) !important;
  }
  .messengers .messenger-button::before {
    content: "";
    width: 50px;
    height: 50px;
    grid-column: 1;
    grid-row: 1;
    display: block;
    border-radius: 50%;
    box-shadow: 0 12px 24px rgba(0,0,0,.22);
  }
  .messengers .messenger-button svg {
    width: 24px;
    height: 24px;
    padding: 0;
    grid-column: 1;
    grid-row: 1;
    border-radius: 0;
    background: transparent !important;
    fill: #fff;
    box-shadow: none;
    z-index: 1;
  }
  .messengers .messenger-button span {
    grid-column: 1;
    grid-row: 2;
  }
  .messengers .messenger-button.tg::before, .messengers .messenger-button.call::before { background: #2a82f6; }
  .messengers .messenger-button.wa::before { background: #1eb54b; }
  .messengers .messenger-button.vb::before { background: #7360f2; }
  .messengers .messenger-button.yt::before { background: #ff0033; }
  .map-card { min-height: 210px; }
  .contact-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
  .modal-dialog { padding: 28px 20px; border-radius: 18px; }
  .modal-dialog h2 { font-size: 27px; }
}

.type-line {
  min-width: min(7.6em, 100%);
  min-height: 1.05em;
  display: inline-flex;
  align-items: baseline;
  color: #fff;
}
.type-caret {
  width: .08em;
  height: .88em;
  margin-left: .08em;
  display: inline-block;
  border-radius: 2px;
  background: #78b8ff;
  transform: translateY(.08em);
  animation: caret-blink .85s steps(1) infinite;
}
@keyframes caret-blink { 50% { opacity: 0; } }

.hero .eyebrow,
.hero h1,
.hero-copy > p {
  animation: hero-rise .75s cubic-bezier(.2,.7,.2,1) both;
}
.hero h1 { animation-delay: .12s; }
.hero-copy > p { animation-delay: .24s; }
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1);
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(14px) scale(.98);
  animation: stagger-in .6s cubic-bezier(.2,.7,.2,1) forwards;
}
.reveal-stagger > *:nth-child(1) { animation-delay: .08s; }
.reveal-stagger > *:nth-child(2) { animation-delay: .16s; }
.reveal-stagger > *:nth-child(3) { animation-delay: .24s; }
.reveal-stagger > *:nth-child(4) { animation-delay: .32s; }
.reveal-stagger > *:nth-child(5) { animation-delay: .40s; }
@keyframes stagger-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.service-card,
.price-card,
.process-grid article {
  animation: card-soft-pop .55s cubic-bezier(.2,.7,.2,1) both;
  animation-timeline: view();
  animation-range: entry 0% cover 22%;
}


.js .benefits article {
  animation: none;
}
.js .benefits .benefit-icon,
.js .benefits article > div {
  opacity: 0;
}
.js .benefits article > div {
  transform: translateX(18px);
}
.js .benefits.is-visible article:nth-child(1) .benefit-icon { animation: benefit-gear-roll .82s cubic-bezier(.18,.85,.22,1) .05s both; }
.js .benefits.is-visible article:nth-child(2) .benefit-icon { animation: benefit-drop-fall .72s cubic-bezier(.18,.85,.22,1) .28s both; }
.js .benefits.is-visible article:nth-child(3) .benefit-icon { animation: benefit-lightning-shot .64s cubic-bezier(.18,.85,.22,1) .52s both; }
.js .benefits.is-visible article:nth-child(4) .benefit-icon { animation: benefit-search-pop .68s cubic-bezier(.18,.85,.22,1) .76s both; }
.js .benefits.is-visible article:nth-child(5) .benefit-icon { animation: benefit-tag-flip .7s cubic-bezier(.18,.85,.22,1) 1s both; }
.js .benefits.is-visible article:nth-child(1) > div { animation: benefit-text-in .52s cubic-bezier(.2,.7,.2,1) .28s both; }
.js .benefits.is-visible article:nth-child(2) > div { animation: benefit-text-in .52s cubic-bezier(.2,.7,.2,1) .5s both; }
.js .benefits.is-visible article:nth-child(3) > div { animation: benefit-text-in .52s cubic-bezier(.2,.7,.2,1) .72s both; }
.js .benefits.is-visible article:nth-child(4) > div { animation: benefit-text-in .52s cubic-bezier(.2,.7,.2,1) .96s both; }
.js .benefits.is-visible article:nth-child(5) > div { animation: benefit-text-in .52s cubic-bezier(.2,.7,.2,1) 1.18s both; }

@keyframes benefit-gear-roll {
  0% { opacity: 0; transform: translateX(-58px) rotate(-220deg) scale(.72); filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
  70% { opacity: 1; transform: translateX(6px) rotate(18deg) scale(1.08); }
  100% { opacity: 1; transform: translateX(0) rotate(0) scale(1); filter: drop-shadow(0 0 10px rgba(255,255,255,.12)); }
}
@keyframes benefit-drop-fall {
  0% { opacity: 0; transform: translateY(-42px) scale(.76, 1.22); }
  64% { opacity: 1; transform: translateY(5px) scale(1.06, .86); }
  82% { transform: translateY(-3px) scale(.96, 1.06); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes benefit-lightning-shot {
  0% { opacity: 0; transform: translateX(-44px) skewX(-14deg) scale(.68); filter: drop-shadow(0 0 0 rgba(120,184,255,0)); }
  58% { opacity: 1; transform: translateX(8px) skewX(-8deg) scale(1.2); filter: drop-shadow(0 0 18px rgba(120,184,255,.5)); }
  100% { opacity: 1; transform: translateX(0) skewX(0) scale(1); filter: drop-shadow(0 0 10px rgba(255,255,255,.12)); }
}
@keyframes benefit-search-pop {
  0% { opacity: 0; transform: scale(.52) rotate(-24deg); }
  68% { opacity: 1; transform: scale(1.14) rotate(7deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes benefit-tag-flip {
  0% { opacity: 0; transform: perspective(420px) rotateY(78deg) translateX(-18px) scale(.82); }
  72% { opacity: 1; transform: perspective(420px) rotateY(-10deg) translateX(3px) scale(1.06); }
  100% { opacity: 1; transform: perspective(420px) rotateY(0) translateX(0) scale(1); }
}
@keyframes benefit-text-in {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes card-soft-pop {
  from { opacity: 0; transform: translateY(22px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.button,
.icon-button,
.messenger-button,
.filter-chip {
  position: relative;
  overflow: hidden;
}
.button::after,
.messenger-button::after,
.filter-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.35) 45%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .55s;
  pointer-events: none;
}
.button:hover::after,
.messenger-button:hover::after,
.filter-chip:hover::after { transform: translateX(130%); }



.js .section-heading,
.js .price-tools,
.js .filter-chips,
.js .list-status,
.js .map-card,
.js .contact-column,
.js .center-action {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s cubic-bezier(.2,.7,.2,1), transform .72s cubic-bezier(.2,.7,.2,1);
}
.js .section-heading.is-visible,
.js .price-tools.is-visible,
.js .filter-chips.is-visible,
.js .list-status.is-visible,
.js .map-card.is-visible,
.js .contact-column.is-visible,
.js .center-action.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}
.js .map-card { transform: translateX(-28px); }
.js .contact-column { transform: translateX(24px); }
.js .center-action { transform: translateY(18px) scale(.98); }

.price-card,
.service-card,
.review-card,
.process-grid article,
.benefits article,
.trust-card {
  will-change: transform, opacity;
}

@supports (animation-timeline: view()) {
  .section-heading,
  .price-tools,
  .filter-chips,
  .list-status,
  .map-card,
  .contact-column,
  .center-action {
    animation: block-slide-in .72s cubic-bezier(.2,.7,.2,1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 24%;
  }
}

@keyframes block-slide-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .type-caret,
  .hero .eyebrow,
  .hero h1,
  .hero-copy > p,
  .js .reveal,
  .js .section-heading,
  .js .price-tools,
  .js .filter-chips,
  .js .list-status,
  .js .map-card,
  .js .contact-column,
  .js .center-action,
  .js .benefits .benefit-icon,
  .js .benefits article > div,
  .reveal-stagger > *,
  .service-card,
  .price-card,
  .process-grid article,
  .benefits article {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.mobile-contact-fab {
  display: none;
}

@media (max-width: 820px) {
  .mobile-contact-fab {
    position: fixed;
    right: max(16px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 80;
    display: grid;
    justify-items: end;
    gap: 12px;
    pointer-events: none;
  }
  .mobile-contact-toggle,
  .mobile-contact-link {
    pointer-events: auto;
  }
  .mobile-contact-toggle {
    width: 62px;
    height: 62px;
    position: relative;
    isolation: isolate;
    overflow: visible;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #2f8bff, #1164dd);
    box-shadow: 0 18px 42px rgba(23, 112, 239, .36);
    animation: fab-button-pulse 1.9s ease-in-out infinite;
    transition: transform .22s, box-shadow .22s, background .22s;
  }
  .mobile-contact-toggle::before {
    content: "";
    position: absolute;
    inset: -15px;
    z-index: -1;
    border-radius: 42% 58% 55% 45% / 48% 44% 56% 52%;
    background: radial-gradient(circle at 50% 50%, rgba(36, 119, 243, .2) 0%, rgba(36, 119, 243, .14) 38%, rgba(36, 119, 243, .075) 66%, rgba(36, 119, 243, 0) 100%);
    box-shadow: 0 18px 38px rgba(36, 119, 243, .14);
    animation: fab-drop-pulse 1.9s ease-in-out infinite;
  }
  .mobile-contact-toggle::after {
    content: "";
    position: absolute;
    inset: -15px;
    z-index: 1;
    border-radius: 42% 58% 55% 45% / 48% 44% 56% 52%;
    background: linear-gradient(115deg, transparent 24%, rgba(255,255,255,.015) 40%, rgba(255,255,255,.16) 49%, rgba(255,255,255,.015) 58%, transparent 76%);
    opacity: .42;
    transform: translateX(-130%) rotate(8deg);
    pointer-events: none;
    animation: fab-glint 4.6s ease-in-out infinite;
  }
  .mobile-contact-toggle:active {
    transform: scale(.96);
  }
  .mobile-contact-toggle svg {
    width: 27px;
    height: 27px;
    position: relative;
    z-index: 2;
    fill: currentColor;
    grid-area: 1 / 1;
    transition: opacity .2s, transform .2s;
  }
  .mobile-contact-toggle .icon-close {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    opacity: 0;
    transform: rotate(-35deg) scale(.65);
  }
  .mobile-contact-fab.is-open .mobile-contact-toggle {
    background: linear-gradient(135deg, #111820, #25313d);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .34), 0 0 0 8px rgba(255,255,255,.08);
    animation-play-state: paused;
  }
  .mobile-contact-fab.is-open .mobile-contact-toggle::before,
  .mobile-contact-fab.is-open .mobile-contact-toggle::after {
    animation-play-state: paused;
  }
  .mobile-contact-fab.is-open .mobile-contact-toggle::after {
    opacity: 0;
  }
  .mobile-contact-fab.is-open .icon-phone {
    opacity: 0;
    transform: rotate(35deg) scale(.65);
  }
  .mobile-contact-fab.is-open .icon-close {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
  .mobile-contact-menu {
    display: grid;
    justify-items: end;
    gap: 10px;
  }
  .mobile-contact-link {
    min-width: 148px;
    padding: 9px 12px 9px 9px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border-radius: 999px;
    color: #fff;
    background: rgba(16, 22, 28, .92);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 14px 34px rgba(0,0,0,.28);
    backdrop-filter: blur(14px);
    font-size: 13px;
    font-weight: 800;
    opacity: 0;
    transform: translate(12px, 12px) scale(.9);
    pointer-events: none;
    transition: opacity .22s, transform .22s;
  }
  .mobile-contact-fab.is-open .mobile-contact-link {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    pointer-events: auto;
  }
  .mobile-contact-fab.is-open .mobile-contact-link:nth-child(1) { transition-delay: .03s; }
  .mobile-contact-fab.is-open .mobile-contact-link:nth-child(2) { transition-delay: .06s; }
  .mobile-contact-fab.is-open .mobile-contact-link:nth-child(3) { transition-delay: .09s; }
  .mobile-contact-fab.is-open .mobile-contact-link:nth-child(4) { transition-delay: .12s; }
  .mobile-contact-link svg {
    width: 38px;
    height: 38px;
    padding: 9px;
    flex: 0 0 38px;
    border-radius: 50%;
    fill: #fff;
  }
  .mobile-contact-link.tg svg, .mobile-contact-link.call svg { background: #2a82f6; }
  .mobile-contact-link.wa svg { background: #1eb54b; }
  .mobile-contact-link.vb svg { background: #7360f2; }
}


@keyframes fab-button-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 18px 42px rgba(23, 112, 239, .36);
  }
  50% {
    transform: scale(1.028);
    box-shadow: 0 20px 46px rgba(23, 112, 239, .43);
  }
}
@keyframes fab-drop-pulse {
  0%, 100% {
    transform: scale(.96) rotate(0deg);
    border-radius: 42% 58% 55% 45% / 48% 44% 56% 52%;
    opacity: .9;
  }
  50% {
    transform: scale(1.12) rotate(6deg);
    border-radius: 53% 47% 49% 51% / 45% 53% 47% 55%;
    opacity: .62;
  }
}
@keyframes fab-glint {
  0%, 58% { transform: translateX(-135%) rotate(8deg); opacity: 0; }
  68% { opacity: .45; }
  82%, 100% { transform: translateX(135%) rotate(8deg); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-contact-toggle,
  .mobile-contact-toggle::before,
  .mobile-contact-toggle::after,
  .mobile-contact-toggle svg,
  .mobile-contact-link {
    animation: none !important;
    transition: none !important;
  }
}

.service-card {
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.service-card:focus-visible {
  outline: 3px solid rgba(36, 119, 243, .32);
  outline-offset: 3px;
}
.service-card:active {
  transform: translateY(-1px) scale(.99);
}

/* Прайс должен быть виден сразу, пока Google Таблица догружается. */
.prices-section.reveal,
.js .prices-section { opacity: 1; transform: none; }

.price-card {
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.price-card:focus-visible {
  outline: 3px solid rgba(36, 119, 243, .32);
  outline-offset: 3px;
}
.price-card:active {
  transform: translateY(-1px) scale(.99);
}


/* Контакты не должны оставаться замыленными после reveal-анимаций. */
.contact-card,
.contact-card * {
  filter: none;
}
