/* Minimal reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #081a3a;
  background: #f6f9ff;
  overflow-x: hidden;
}

/* Theme */
:root {
  --bg: #f6f9ff;
  --text: #081a3a;
  --muted: rgba(8, 26, 58, 0.72);
  --muted2: rgba(8, 26, 58, 0.58);
  --line: rgba(8, 26, 58, 0.12);
  --primary: #0b4cff;
  --primary2: #1a8cff;
  --cyan: #1fd3ff;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid rgba(11, 76, 255, 0.85);
  outline-offset: 2px;
}

.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(8, 26, 58, 0.14);
}
.skip:focus {
  left: 12px;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

.accent {
  background: linear-gradient(90deg, var(--primary), var(--primary2), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.h1 {
  font-size: clamp(36px, 4.2vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 14px 0 12px;
}
.h2 {
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}
.h3 {
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

.lead {
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.55;
  margin: 0 0 18px;
}

/* Service pages */
.crumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(8, 26, 58, 0.12);
  background: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 13px;
}
.crumbs__link {
  color: rgba(8, 26, 58, 0.82);
  text-decoration: underline;
  text-decoration-color: rgba(11, 76, 255, 0.22);
  text-underline-offset: 3px;
}
.crumbs__sep {
  color: rgba(8, 26, 58, 0.35);
}
.crumbs__current {
  color: rgba(8, 26, 58, 0.62);
}

.serviceHero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  align-items: stretch;
  margin-top: 14px;
}
.serviceHero__copy {
  padding: 18px 16px;
  border-radius: 26px;
  border: 1px solid rgba(8, 26, 58, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 25px 80px rgba(2, 16, 45, 0.1);
}
.serviceHero__media {
  border-radius: 26px;
  border: 1px solid rgba(8, 26, 58, 0.12);
  background: linear-gradient(135deg, rgba(11, 76, 255, 0.1), rgba(31, 211, 255, 0.06)),
    url("./assets/photozone.webp");
  background-size: cover;
  background-position: center;
  box-shadow: 0 25px 80px rgba(2, 16, 45, 0.1);
  min-height: 420px;
}
.serviceHero__media--printer {
  background: linear-gradient(135deg, rgba(11, 76, 255, 0.08), rgba(31, 211, 255, 0.04)),
    url("./assets/printer.webp");
  background-size: cover;
  background-position: center;
}
.serviceHero__media--restavr {
  background: linear-gradient(135deg, rgba(11, 76, 255, 0.08), rgba(31, 211, 255, 0.04)),
    url("./assets/restavratsia.jpg");
  background-size: cover;
  background-position: center;
}
.serviceHero__media--suveniry {
  background: linear-gradient(135deg, rgba(11, 76, 255, 0.08), rgba(31, 211, 255, 0.04)),
    url("./assets/photo-suvenirs.jpg");
  background-size: cover;
  background-position: center;
}
.serviceHero__media--copy {
  background: linear-gradient(135deg, rgba(11, 76, 255, 0.08), rgba(31, 211, 255, 0.04)),
    url("./assets/kserokopia-copy.jpg");
  background-size: cover;
  background-position: center;
}

.serviceGrid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.faq {
  margin-top: 22px;
}
.faq__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.faq__item {
  padding: 14px 14px;
  border-radius: 22px;
  border: 1px solid rgba(8, 26, 58, 0.12);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 70px rgba(2, 16, 45, 0.08);
}
.faq__item summary {
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.01em;
  list-style: none;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item p {
  margin: 10px 0 0;
  line-height: 1.55;
}

.serviceLinks {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Background */
.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.bg__noise {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}
.bg__grid {
  position: absolute;
  inset: -2px;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 20%, rgba(0, 0, 0, 0.95), transparent 62%);
  mask-image: radial-gradient(ellipse at 50% 20%, rgba(0, 0, 0, 0.95), transparent 62%);
}
.bg__blob {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.65;
  transform: translate3d(0, 0, 0);
}
.bg__blob--1 {
  left: -120px;
  top: -150px;
  background: radial-gradient(circle at 30% 30%, rgba(11, 76, 255, 0.26), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(31, 211, 255, 0.2), transparent 55%);
}
.bg__blob--2 {
  right: -160px;
  bottom: -170px;
  background: radial-gradient(circle at 30% 30%, rgba(26, 140, 255, 0.22), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(11, 76, 255, 0.16), transparent 55%);
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(246, 249, 255, 0.66);
  border-bottom: 1px solid var(--line);
}
.topbar[data-elevate="true"] {
  background: rgba(246, 249, 255, 0.9);
  border-bottom-color: rgba(8, 26, 58, 0.16);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
}
.brand__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(11, 76, 255, 0.14), rgba(26, 140, 255, 0.12), rgba(31, 211, 255, 0.1));
  border: 1px solid rgba(8, 26, 58, 0.14);
  box-shadow: 0 10px 28px rgba(2, 16, 45, 0.12);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  position: relative;
}

.brand__bolt {
  position: absolute;
  left: -8px;
  top: -8px;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: rgba(11, 76, 255, 0.95);
  box-shadow: 0 0 0 8px rgba(11, 76, 255, 0.14), 0 16px 40px rgba(2, 16, 45, 0.16);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13 2L3 14h7l-1 8l12-14h-7l-1-6Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13 2L3 14h7l-1 8l12-14h-7l-1-6Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 88% 88%;
  mask-size: 88% 88%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transform: rotate(10deg);
}
.brand__text {
  display: grid;
  gap: 2px;
}
.brand__name {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.brand__city {
  font-size: 12px;
  color: var(--muted2);
}
.brand--small .brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
}
.nav__toggleLines {
  width: 20px;
  height: 2px;
  background: rgba(8, 26, 58, 0.72);
  display: inline-block;
  position: relative;
  border-radius: 999px;
}
.nav__toggleLines::before,
.nav__toggleLines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: rgba(8, 26, 58, 0.72);
  border-radius: 999px;
}
.nav__toggleLines::before {
  top: -6px;
}
.nav__toggleLines::after {
  top: 6px;
}
.nav__menu {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}
.nav__link {
  font-weight: 600;
  font-size: 14px;
  color: rgba(8, 26, 58, 0.76);
  padding: 10px 10px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}
.nav__link:hover {
  background: rgba(11, 76, 255, 0.08);
  color: rgba(8, 26, 58, 0.92);
}

.topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  transition: transform 160ms ease, background 160ms ease;
}
.chip:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.86);
}
.chip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(11, 76, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(11, 76, 255, 0.14);
}
.chip__text {
  font-weight: 700;
  font-size: 13px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(8, 26, 58, 0.14);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(8, 26, 58, 0.18);
}
.btn--primary {
  background: linear-gradient(135deg, rgba(11, 76, 255, 0.95), rgba(26, 140, 255, 0.92), rgba(31, 211, 255, 0.88));
  color: #ffffff;
  border-color: rgba(11, 76, 255, 0.25);
  box-shadow: 0 18px 55px rgba(2, 16, 45, 0.14);
}
.btn--primary:hover {
  background: linear-gradient(135deg, rgba(11, 76, 255, 1), rgba(26, 140, 255, 0.98), rgba(31, 211, 255, 0.92));
}
.btn--ghost {
  background: rgba(11, 76, 255, 0.05);
}
.btn--lg {
  padding: 14px 16px;
  border-radius: 16px;
}

/* Hero */
.hero {
  padding: 48px 0 28px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(8, 26, 58, 0.14);
  background: rgba(255, 255, 255, 0.74);
  margin: 0;
  color: rgba(8, 26, 58, 0.92);
  font-weight: 700;
  font-size: 13px;
}
.badge__spark {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(11, 76, 255, 1), rgba(26, 140, 255, 1), rgba(31, 211, 255, 1));
  transform: rotate(18deg);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.stats__item {
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(8, 26, 58, 0.12);
  background: rgba(255, 255, 255, 0.74);
}
.stats__value {
  display: block;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 20px;
  color: rgba(8, 26, 58, 0.96);
}
.stats__label {
  display: block;
  font-size: 12px;
  margin-top: 2px;
  color: rgba(8, 26, 58, 0.62);
}

.hero__media {
  position: relative;
  min-height: 500px;
  padding-bottom: 72px;
}

.frame {
  position: absolute;
  border-radius: 22px;
  border: 1px solid rgba(8, 26, 58, 0.14);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 25px 85px rgba(2, 16, 45, 0.14);
  overflow: hidden;
}
.frame--a {
  left: 0;
  top: 22px;
  width: 74%;
  height: 340px;
}
.frame--b {
  right: 0;
  bottom: 0;
  width: 58%;
  height: 240px;
}
.frame__top,
.frame__bottom {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 12px;
}
.pill {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(11, 76, 255, 0.08);
  border: 1px solid rgba(11, 76, 255, 0.16);
  font-size: 12px;
  font-weight: 800;
}
.pill--muted {
  font-weight: 700;
  color: rgba(8, 26, 58, 0.7);
}
.mini {
  font-size: 12px;
  color: rgba(8, 26, 58, 0.62);
}
.mini--ok {
  color: rgba(11, 76, 255, 0.9);
}
.frame__img {
  height: calc(100% - 92px);
  background-size: cover;
  background-position: center;
  position: relative;
}
.frame__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(255, 255, 255, 0.28), transparent 55%),
    radial-gradient(ellipse at 80% 65%, rgba(11, 76, 255, 0.12), transparent 52%),
    linear-gradient(180deg, rgba(246, 249, 255, 0.08), rgba(246, 249, 255, 0.65));
}
.frame__img--doc {
  background-image: linear-gradient(135deg, rgba(11, 76, 255, 0.12), rgba(31, 211, 255, 0.06)),
    url("./assets/photozone.webp");
}
.frame__img--print {
  height: 100%;
  background-image: linear-gradient(135deg, rgba(11, 76, 255, 0.14), rgba(31, 211, 255, 0.06)),
    url("./assets/printer.webp");
}
.frame__caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(8, 26, 58, 0.14);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  gap: 3px;
}
.frame__caption strong {
  font-weight: 900;
  letter-spacing: -0.02em;
}
.frame__caption span {
  font-size: 12px;
  color: rgba(8, 26, 58, 0.66);
}

.hero__float {
  position: absolute;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(8, 26, 58, 0.14);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: grid;
  gap: 2px;
  min-width: 140px;
  animation: floaty 4.4s ease-in-out infinite;
}
.hero__float--1 {
  left: -10px;
  bottom: -42px;
}
.hero__float--2 {
  right: -8px;
  top: 86px;
  animation-delay: 0.6s;
}
.float__k {
  font-size: 12px;
  color: rgba(8, 26, 58, 0.62);
}
.float__v {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Sections */
.section {
  padding: 56px 0;
}
.section--alt {
  background: rgba(11, 76, 255, 0.03);
  border-top: 1px solid rgba(8, 26, 58, 0.08);
  border-bottom: 1px solid rgba(8, 26, 58, 0.08);
}
.section__head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.card {
  grid-column: span 4;
}
.card:nth-child(4),
.card:nth-child(5) {
  grid-column: span 6;
}
.card {
  padding: 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(8, 26, 58, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 65px rgba(2, 16, 45, 0.1);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 76, 255, 0.22);
  background: rgba(255, 255, 255, 0.92);
}
.card__icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  border: 1px solid rgba(11, 76, 255, 0.18);
  background: linear-gradient(135deg, rgba(11, 76, 255, 0.14), rgba(26, 140, 255, 0.12), rgba(31, 211, 255, 0.1));
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.card__link {
  color: inherit;
  text-decoration: none;
}
.card__link:hover {
  text-decoration: underline;
  text-decoration-color: rgba(11, 76, 255, 0.22);
  text-underline-offset: 3px;
}
.i {
  width: 20px;
  height: 20px;
  display: inline-block;
  background: rgba(8, 26, 58, 0.9);
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.i--id {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 4h14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm0 2v12h14V6H5Zm2 2h6v2H7V8Zm0 4h8v2H7v-2Zm0 4h5v2H7v-2Zm9-8a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0-5Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 4h14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm0 2v12h14V6H5Zm2 2h6v2H7V8Zm0 4h8v2H7v-2Zm0 4h5v2H7v-2Zm9-8a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0-5Z'/%3E%3C/svg%3E");
}
.i--print {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 7V3h10v4H7Zm10 2V8H7v1H5a3 3 0 0 0-3 3v4h5v5h10v-5h5v-4a3 3 0 0 0-3-3h-2ZM9 19v-6h6v6H9Zm10-7a1 1 0 1 1 0-2a1 1 0 0 1 0 2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 7V3h10v4H7Zm10 2V8H7v1H5a3 3 0 0 0-3 3v4h5v5h10v-5h5v-4a3 3 0 0 0-3-3h-2ZM9 19v-6h6v6H9Zm10-7a1 1 0 1 1 0-2a1 1 0 0 1 0 2Z'/%3E%3C/svg%3E");
}
.i--restore {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 4h12a2 2 0 0 1 2 2v7.5a5.5 5.5 0 0 0-2-1.2V6H6v12h6.3a5.5 5.5 0 0 0 1.2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm2 3h8v2H8V7Zm0 4h6v2H8v-2Zm8.8 2.2l1.7 1.7l-3.6 3.6V21h1.5l3.6-3.6l1.7 1.7V13h-4.9Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 4h12a2 2 0 0 1 2 2v7.5a5.5 5.5 0 0 0-2-1.2V6H6v12h6.3a5.5 5.5 0 0 0 1.2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm2 3h8v2H8V7Zm0 4h6v2H8v-2Zm8.8 2.2l1.7 1.7l-3.6 3.6V21h1.5l3.6-3.6l1.7 1.7V13h-4.9Z'/%3E%3C/svg%3E");
}
.i--gift {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 7h-1.2a3 3 0 0 0 .2-1a3 3 0 0 0-3-3c-1.4 0-2.6.9-3.1 2.1L12 6l-.9-1.9A3.4 3.4 0 0 0 8 3a3 3 0 0 0-3 3c0 .3 0 .7.2 1H4v4h8v10h8V11h2V7ZM8 5c.6 0 1.1.3 1.4.9L10 7H8c-.6 0-1-.4-1-1s.4-1 1-1Zm8 0c.6 0 1 .4 1 1s-.4 1-1 1h-2l.6-1.1c.3-.6.8-.9 1.4-.9ZM6 9h6v2H6V9Zm8 0h6v2h-6V9Zm0 4v8h-2v-8h2Zm4 0v8h-2v-8h2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 7h-1.2a3 3 0 0 0 .2-1a3 3 0 0 0-3-3c-1.4 0-2.6.9-3.1 2.1L12 6l-.9-1.9A3.4 3.4 0 0 0 8 3a3 3 0 0 0-3 3c0 .3 0 .7.2 1H4v4h8v10h8V11h2V7ZM8 5c.6 0 1.1.3 1.4.9L10 7H8c-.6 0-1-.4-1-1s.4-1 1-1Zm8 0c.6 0 1 .4 1 1s-.4 1-1 1h-2l.6-1.1c.3-.6.8-.9 1.4-.9ZM6 9h6v2H6V9Zm8 0h6v2h-6V9Zm0 4v8h-2v-8h2Zm4 0v8h-2v-8h2Z'/%3E%3C/svg%3E");
}

.list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(8, 26, 58, 0.72);
  display: grid;
  gap: 8px;
  line-height: 1.35;
  font-size: 14px;
}
.list--tight {
  gap: 6px;
  font-size: 13px;
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
.price {
  position: relative;
  padding: 18px 16px;
  border-radius: 24px;
  border: 1px solid rgba(8, 26, 58, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 70px rgba(2, 16, 45, 0.1);
  display: grid;
  gap: 14px;
}
.price__top {
  display: grid;
  gap: 6px;
}
.price__value {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price__from {
  color: rgba(8, 26, 58, 0.62);
  font-weight: 700;
}
.price__num {
  font-weight: 900;
  font-size: 40px;
  letter-spacing: -0.04em;
}
.price__cur {
  color: rgba(8, 26, 58, 0.66);
  font-weight: 800;
}
.price--featured {
  border-color: rgba(11, 76, 255, 0.22);
  background: linear-gradient(180deg, rgba(11, 76, 255, 0.08), rgba(255, 255, 255, 0.78));
}
.tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: #ffffff;
  background: rgba(11, 76, 255, 0.95);
}
.note {
  margin-top: 16px;
  padding: 14px 14px;
  border-radius: 22px;
  border: 1px solid rgba(8, 26, 58, 0.12);
  background: rgba(255, 255, 255, 0.74);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.note__icon {
  width: 14px;
  height: 14px;
  margin-top: 2px;
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(11, 76, 255, 0.95), rgba(26, 140, 255, 0.9), rgba(31, 211, 255, 0.85));
}
.note__text {
  margin: 0;
  color: rgba(8, 26, 58, 0.72);
  line-height: 1.45;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.gallery--services {
  gap: 16px;
}
.shot {
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 22px;
  overflow: hidden;
  min-height: 190px;
  outline: none;
}
.shot.shot--link {
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.shot::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  pointer-events: none;
}
.shot:hover .shot__img {
  transform: scale(1.02);
  filter: saturate(1.05);
}
.shot__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 250ms ease, filter 250ms ease;
}
.shot__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 10%, rgba(255, 255, 255, 0.3), transparent 55%),
    linear-gradient(180deg, transparent 50%, rgba(246, 249, 255, 0.9));
}
.shot__cap {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(8, 26, 58, 0.14);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.shot__textCol {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.shot__textCol strong {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 15px;
  line-height: 1.15;
}
.shot__textCol > span {
  font-size: 12px;
  color: rgba(8, 26, 58, 0.64);
  line-height: 1.25;
}
.shot__price {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(11, 76, 255, 0.08);
  border: 1px solid rgba(11, 76, 255, 0.16);
}
.shot__priceFrom {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(8, 26, 58, 0.52);
}
.shot__priceNum {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: rgba(8, 26, 58, 0.94);
  white-space: nowrap;
}
.shot:nth-child(1) {
  grid-column: span 5;
}
.shot:nth-child(2) {
  grid-column: span 4;
}
.shot:nth-child(3) {
  grid-column: span 3;
}
.shot:nth-child(4) {
  grid-column: span 4;
}
.shot:nth-child(5) {
  grid-column: span 4;
}
.shot:nth-child(6) {
  grid-column: span 4;
}

/* Услуги на главной: равные ширины — три в ряд, затем два */
.gallery--services .shot:nth-child(1),
.gallery--services .shot:nth-child(2),
.gallery--services .shot:nth-child(3) {
  grid-column: span 4;
}
.gallery--services .shot:nth-child(4),
.gallery--services .shot:nth-child(5) {
  grid-column: span 6;
}
.gallery--services .shot {
  min-height: 236px;
}

.shot__img--1 {
  background-image: linear-gradient(135deg, rgba(11, 76, 255, 0.12), rgba(31, 211, 255, 0.06)),
    url("./assets/photozone.webp");
}
.shot__img--2 {
  background-image: linear-gradient(135deg, rgba(11, 76, 255, 0.14), rgba(31, 211, 255, 0.08)),
    url("./assets/kserokopia-copy.jpg");
}
.shot__img--3 {
  background-image: linear-gradient(135deg, rgba(11, 76, 255, 0.14), rgba(31, 211, 255, 0.08)),
    url("./assets/restavratsia.jpg");
}
.shot__img--4 {
  background-image: linear-gradient(135deg, rgba(11, 76, 255, 0.14), rgba(31, 211, 255, 0.08)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='900'%3E%3Cdefs%3E%3CradialGradient id='g' cx='40%25' cy='35%25' r='85%25'%3E%3Cstop offset='0%25' stop-color='%2382ffd6' stop-opacity='.52'/%3E%3Cstop offset='55%25' stop-color='%23ff83e0' stop-opacity='.14'/%3E%3Cstop offset='100%25' stop-color='%23070a14'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='1200' height='900' fill='url(%23g)'/%3E%3Crect x='240' y='220' width='720' height='460' rx='36' fill='%23fff' fill-opacity='.06'/%3E%3C/svg%3E");
}
.shot__img--5 {
  background-image: linear-gradient(135deg, rgba(11, 76, 255, 0.14), rgba(31, 211, 255, 0.08)),
    url("./assets/photo-suvenirs.jpg");
}
.shot__img--6 {
  background-image: linear-gradient(135deg, rgba(11, 76, 255, 0.14), rgba(31, 211, 255, 0.08)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='900'%3E%3Cdefs%3E%3CradialGradient id='g' cx='35%25' cy='25%25' r='90%25'%3E%3Cstop offset='0%25' stop-color='%23ff83e0' stop-opacity='.56'/%3E%3Cstop offset='55%25' stop-color='%238aa6ff' stop-opacity='.16'/%3E%3Cstop offset='100%25' stop-color='%23070a14'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='1200' height='900' fill='url(%23g)'/%3E%3Cpath d='M260 660 C 380 530, 520 730, 650 600 S 880 660, 980 520' stroke='%23fff' stroke-opacity='.12' stroke-width='18' fill='none'/%3E%3C/svg%3E");
}
.shot__img--servicePrint {
  background-image: linear-gradient(135deg, rgba(11, 76, 255, 0.12), rgba(31, 211, 255, 0.06)),
    url("./assets/printer.webp");
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.reviewsCarousel {
  display: grid;
  gap: 10px;
}
.reviewsCarousel__head {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.reviewsCarousel__btn {
  width: 52px;
  height: 46px;
  padding: 0;
  border-radius: 16px;
}
.reviewsCarousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.reviewsCarousel__track::-webkit-scrollbar {
  height: 10px;
}
.reviewsCarousel__track::-webkit-scrollbar-thumb {
  background: rgba(11, 76, 255, 0.18);
  border-radius: 999px;
}
.reviewsCarousel__track::-webkit-scrollbar-track {
  background: rgba(8, 26, 58, 0.06);
  border-radius: 999px;
}
.reviewsCarousel__track .review {
  scroll-snap-align: start;
}
.review {
  margin: 0;
  padding: 18px 16px;
  border-radius: 24px;
  border: 1px solid rgba(8, 26, 58, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 70px rgba(2, 16, 45, 0.1);
  display: grid;
  gap: 14px;
}
.review__text {
  margin: 0;
  color: rgba(8, 26, 58, 0.78);
  line-height: 1.55;
}
.review__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(11, 76, 255, 0.95), rgba(26, 140, 255, 0.92), rgba(31, 211, 255, 0.88));
}
.review__meta strong {
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* CTA + Form */
.cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}
.cta__copy {
  padding: 18px 16px;
  border-radius: 26px;
  border: 1px solid rgba(8, 26, 58, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 25px 80px rgba(2, 16, 45, 0.1);
}
.cta__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.hi {
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(11, 76, 255, 0.16);
  background: rgba(11, 76, 255, 0.06);
  display: grid;
  gap: 4px;
}
.hi__k {
  font-size: 12px;
  color: rgba(8, 26, 58, 0.62);
}
.hi__v {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.form {
  padding: 18px 16px;
  border-radius: 26px;
  border: 1px solid rgba(8, 26, 58, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 25px 80px rgba(2, 16, 45, 0.1);
  display: grid;
  gap: 12px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field {
  display: grid;
  gap: 8px;
}
.field__label {
  font-size: 12px;
  font-weight: 800;
  color: rgba(8, 26, 58, 0.62);
}
.field__input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(8, 26, 58, 0.14);
  background: rgba(255, 255, 255, 0.92);
  transition: border-color 160ms ease, background 160ms ease;
}
.field__input:hover {
  border-color: rgba(255, 255, 255, 0.18);
}
.field__input:focus {
  border-color: rgba(11, 76, 255, 0.5);
  background: rgba(255, 255, 255, 1);
  outline: none;
}
.field__input--area {
  resize: vertical;
  min-height: 110px;
}
.form__actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}
.form__hint {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}
.form__quick {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Contacts */
.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: stretch;
}
.contact__card {
  padding: 18px 16px;
  border-radius: 26px;
  border: 1px solid rgba(8, 26, 58, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 25px 80px rgba(2, 16, 45, 0.1);
  display: grid;
  gap: 14px;
}
.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact__item {
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(8, 26, 58, 0.12);
  background: rgba(11, 76, 255, 0.03);
}
.contact__k {
  font-size: 12px;
  font-weight: 900;
  color: rgba(8, 26, 58, 0.62);
}
.contact__v {
  margin-top: 6px;
  line-height: 1.35;
  font-weight: 700;
}
.link {
  color: rgba(8, 26, 58, 0.9);
  text-decoration: underline;
  text-decoration-color: rgba(11, 76, 255, 0.28);
  text-underline-offset: 3px;
}
.sep {
  margin: 0 8px;
  color: rgba(8, 26, 58, 0.35);
}
.contact__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contactMeta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contactMeta__block {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(8, 26, 58, 0.12);
  background: rgba(11, 76, 255, 0.04);
}
.contactMeta__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(11, 76, 255, 0.14);
  color: rgba(11, 76, 255, 0.92);
}
.contactMeta__k {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(8, 26, 58, 0.52);
}
.contactMeta__v {
  margin-top: 6px;
  font-weight: 700;
  line-height: 1.45;
  color: rgba(8, 26, 58, 0.92);
}

.contactChannels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.contactChannel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(8, 26, 58, 0.12);
  background: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.contactChannel:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 76, 255, 0.22);
  box-shadow: 0 18px 48px rgba(11, 76, 255, 0.12);
}
.contactChannel:focus-visible {
  outline: 2px solid rgba(11, 76, 255, 0.55);
  outline-offset: 2px;
}
.contactChannel__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(11, 76, 255, 0.08);
  border: 1px solid rgba(11, 76, 255, 0.14);
}
.contactChannel__icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.contactChannel__icon--max img {
  width: 30px;
  height: 30px;
}
.contactChannel__icon--svg svg {
  display: block;
}
.contactChannel__meta {
  display: grid;
  gap: 3px;
  min-width: 0;
}
.contactChannel__k {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(8, 26, 58, 0.52);
}
.contactChannel__v {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  word-break: break-word;
}
.contactChannel--wide {
  grid-column: 1 / -1;
}

.mapWrap {
  display: grid;
  gap: 10px;
  align-content: start;
}
.mapFoot {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  padding: 0 4px;
}

.map {
  border-radius: 26px;
  border: 1px solid rgba(8, 26, 58, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 25px 80px rgba(2, 16, 45, 0.1);
  overflow: hidden;
  position: relative;
}
.map__iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  background: rgba(255, 255, 255, 1);
}

/* Footer */
.footer {
  padding: 34px 0 22px;
  border-top: 1px solid rgba(8, 26, 58, 0.08);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}
.footer__right {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: flex-end;
}
.footer__bottom {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(8, 26, 58, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* Modals */
.modal {
  width: min(920px, calc(100% - 24px));
  border: 0;
  padding: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  color: rgba(8, 26, 58, 0.95);
  box-shadow: 0 40px 140px rgba(2, 16, 45, 0.22);
}
.modal::backdrop {
  background: rgba(2, 16, 45, 0.22);
  backdrop-filter: blur(6px);
}
.modal__body {
  padding: 14px;
  border: 1px solid rgba(8, 26, 58, 0.12);
  border-radius: 22px;
  display: grid;
  gap: 12px;
}
.modal__close {
  justify-self: end;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(8, 26, 58, 0.14);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}
.modal__img {
  height: min(52vh, 420px);
  border-radius: 18px;
  border: 1px solid rgba(8, 26, 58, 0.12);
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(135deg, rgba(11, 76, 255, 0.12), rgba(31, 211, 255, 0.06)),
    url("./assets/photozone.webp");
}
.modal__meta {
  display: grid;
  gap: 2px;
  padding: 2px 2px 0;
}
.modal__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.toast {
  width: min(520px, calc(100% - 24px));
  border: 0;
  padding: 0;
  border-radius: 22px;
  background: transparent;
  color: rgba(8, 26, 58, 0.95);
}
.toast::backdrop {
  background: transparent;
}
.toast__inner {
  padding: 12px 12px;
  border-radius: 22px;
  border: 1px solid rgba(8, 26, 58, 0.12);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  box-shadow: 0 35px 120px rgba(2, 16, 45, 0.18);
}
.toast__icon {
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: rgba(11, 76, 255, 0.95);
  box-shadow: 0 0 0 8px rgba(11, 76, 255, 0.14);
}
.toast__text {
  display: grid;
  gap: 2px;
}
.toast__close {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(8, 26, 58, 0.14);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

/* Promo modal */
.promo {
  width: min(620px, calc(100% - 24px));
  border: 0;
  padding: 0;
  border-radius: 24px;
  background: transparent;
}
.promo::backdrop {
  background: rgba(2, 16, 45, 0.18);
  backdrop-filter: blur(6px);
}
.promo__inner {
  padding: 16px 14px;
  border-radius: 24px;
  border: 1px solid rgba(8, 26, 58, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 40px 140px rgba(2, 16, 45, 0.22);
}
.promo__close {
  justify-self: end;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(8, 26, 58, 0.14);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  float: right;
}
.promo__timer {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(11, 76, 255, 0.18);
  background: rgba(11, 76, 255, 0.06);
  margin: 0 0 14px;
}
.promo__t {
  color: rgba(8, 26, 58, 0.62);
  font-weight: 800;
  font-size: 12px;
}
.promo__v {
  font-weight: 900;
  letter-spacing: -0.02em;
}
.promo__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__media {
    min-height: 480px;
    padding-bottom: 64px;
  }
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .card,
  .card:nth-child(4),
  .card:nth-child(5) {
    grid-column: auto;
  }
  .pricing {
    grid-template-columns: 1fr;
  }
  .reviews {
    grid-template-columns: 1fr;
  }
  .reviewsCarousel__head {
    justify-content: flex-start;
  }
  .cta {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .serviceHero {
    grid-template-columns: 1fr;
  }
  .serviceHero__media {
    min-height: 320px;
  }
  .serviceGrid {
    grid-template-columns: 1fr;
  }
  .faq__grid {
    grid-template-columns: 1fr;
  }

  /* Услуги: на планшете две равные колонки, одна высота карточек */
  .gallery--services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .gallery--services .shot:nth-child(n) {
    grid-column: auto;
    min-height: 0;
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 780px) {
  .nav {
    justify-content: flex-end;
  }
  .nav__toggle {
    display: inline-flex;
  }
  .nav__menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 20px;
    right: 20px;
    padding: 10px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(8, 26, 58, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 35px 120px rgba(2, 16, 45, 0.18);
  }
  .nav__menu[data-open="true"] {
    display: flex;
  }
  .topbar__cta .chip {
    display: none;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery--services {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .gallery--services .shot {
    grid-column: auto;
    min-height: 0;
    aspect-ratio: 16 / 11;
    border-radius: 20px;
  }
  .gallery--services .shot::before {
    border-radius: 20px;
  }
  .gallery--services .shot__cap {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 11px;
    align-items: flex-end;
    gap: 10px;
  }
  .gallery--services .shot__textCol strong {
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .gallery--services .shot__textCol > span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .gallery--services .shot__price {
    flex-shrink: 0;
    padding: 7px 9px;
  }
  .gallery--services .shot__priceNum {
    font-size: 15px;
  }
  .shot {
    min-height: 220px;
  }
  .shot:nth-child(n) {
    grid-column: auto;
  }
  .form__row,
  .contact__row,
  .contactMeta,
  .contactChannels {
    grid-template-columns: 1fr;
  }
  .contactChannel--wide {
    grid-column: auto;
  }
  .footer__inner {
    flex-direction: column;
  }
  .footer__right {
    justify-content: flex-start;
  }
  .hero__float--1 {
    bottom: 12px;
    left: 6px;
  }
  .hero__float--2 {
    top: 52px;
    right: 6px;
  }
  .hero__media {
    padding-bottom: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
