:root {
  --ink: #333333;
  --white: #ffffff;
  --surface: #f4f6f8;
  --gray: #888888;
  --muted: #8a9399;
  --line: #e2e6ea;
  --accent: #4a6278;
  --accent-dark: #3a4f62;
  --accent-soft: rgba(74, 98, 120, 0.12);
  --accent-rgb: 74, 98, 120;
  --shadow-sm: 0 4px 20px rgba(51, 51, 51, 0.06);
  --shadow-md: 0 12px 40px rgba(51, 51, 51, 0.1);
  --shadow-accent: 0 10px 28px rgba(var(--accent-rgb), 0.32);
  --radius: 10px;
  --radius-lg: 14px;
  --font: "Nunito", system-ui, sans-serif;
  --wrap: min(1080px, calc(100% - 32px));
  /* legacy aliases */
  --black: var(--ink);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  animation: header-in 0.6s ease both;
}

@keyframes header-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

.header__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  color: var(--ink);
}

.logo__word {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.22em;
  padding-bottom: 8px;
  font-family: "Orbitron", var(--font);
  font-weight: 500;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  letter-spacing: 0.32em;
  line-height: 0.9;
  text-transform: uppercase;
  overflow: hidden;
}

.logo__letter {
  display: block;
  color: var(--ink);
  animation: logo-letter-glow 4.8s ease-in-out infinite;
}

.logo__letter:nth-child(1) { animation-delay: 0s; }
.logo__letter:nth-child(3) { animation-delay: 1.7s; }
.logo__letter:nth-child(4) { animation-delay: 2.55s; }

.logo__e {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 0.78em;
  height: 0.82em;
  margin: 0 0.08em;
  flex-shrink: 0;
  animation: logo-letter-glow 4.8s ease-in-out infinite;
  animation-delay: 0.85s;
}

.logo__e i {
  display: block;
  height: 0.17em;
  background: var(--accent);
  border-radius: 1px;
}

.logo__e i:last-child {
  animation: logo-e-bar 4.8s ease-in-out infinite;
}

.logo__scan {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.7);
  animation: logo-scan 4.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes logo-scan {
  0% {
    transform: translateX(-40%);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  100% {
    transform: translateX(360%);
    opacity: 0;
  }
}

@keyframes logo-letter-glow {
  0%,
  14%,
  100% {
    color: var(--ink);
    filter: none;
  }
  7% {
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(var(--accent-rgb), 0.55));
  }
}

@keyframes logo-e-bar {
  0%,
  100% {
    transform: scaleX(1);
    box-shadow: none;
  }
  18%,
  28% {
    transform: scaleX(1.15);
    box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.8);
  }
}

.header-social,
.side-nav__social,
.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-social li,
.side-nav__social li,
.footer__social li {
  margin: 0;
  padding: 0;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s,
    color 0.2s,
    background-color 0.2s;
}

.social-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.social-icon--instagram:hover {
  color: #c13584;
  border-color: rgba(193, 53, 132, 0.35);
  background: rgba(193, 53, 132, 0.07);
}

.social-icon--telegram:hover {
  color: #26a5e4;
  border-color: rgba(38, 165, 228, 0.35);
  background: rgba(38, 165, 228, 0.07);
}

.social-icon--tiktok:hover {
  color: var(--ink);
  border-color: rgba(51, 51, 51, 0.22);
  background: var(--surface);
}

.social-icon--viber:hover {
  color: #7360f2;
  border-color: rgba(115, 96, 242, 0.35);
  background: rgba(115, 96, 242, 0.07);
}

.social-icon--youtube:hover {
  color: #ff0000;
  border-color: rgba(255, 0, 0, 0.28);
  background: rgba(255, 0, 0, 0.06);
}

.logo__tagline {
  position: relative;
  display: block;
  padding-bottom: 6px;
  overflow: hidden;
  font-family: "Nunito", var(--font);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.2;
  white-space: nowrap;
  margin-right: -0.38em;
}

.logo__tagline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28%;
  height: 1.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.65);
  animation: logo-scan 4.8s ease-in-out infinite;
  animation-delay: 0.35s;
  pointer-events: none;
}

.nav {
  display: none;
}

.nav__link {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}

.nav__link:hover {
  color: var(--accent);
}

.nav__link--active {
  color: var(--accent-dark);
  font-weight: 600;
}

.nav__link--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.header-social--bar {
  display: none;
}

.lang {
  display: flex;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.lang__btn {
  padding: 6px 10px;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--gray);
}

.lang__btn.is-active {
  background: var(--accent);
  color: var(--white);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s;
  overflow: hidden;
  isolation: isolate;
}

.btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -70%;
  bottom: -70%;
  left: -55%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-18deg);
  transition: left 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
  box-shadow: var(--shadow-accent);
}

.btn:hover::after {
  left: 125%;
}

.btn:active {
  transform: translateY(0);
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.header-phone {
  position: relative;
  gap: 8px;
  min-height: 38px;
  padding: 7px 14px;
  overflow: hidden;
  isolation: isolate;
}

.header-phone::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 14px;
  bottom: 5px;
  left: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
  transform: scaleX(0);
  transform-origin: left;
  animation: header-phone-line 3.8s ease-in-out infinite;
}

.header-phone__iphone {
  display: block;
  flex: 0 0 17px;
  width: 17px;
  height: 29px;
  filter: drop-shadow(0 2px 3px rgba(20, 27, 34, 0.18));
  animation: header-iphone-float 3.8s ease-in-out infinite;
}

.header-phone__iphone svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.phone-num,
.side-nav__phone .side-nav__row-text,
.person-card__phone {
  font-family: "Michroma", "Montserrat", "Nunito", system-ui, sans-serif;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.055em;
}

.header-phone .phone-num {
  font-size: 0.67rem;
  line-height: 1;
  white-space: nowrap;
}

@keyframes header-phone-line {
  0%,
  22% { transform: scaleX(0); opacity: 0; }
  45% { transform: scaleX(1); opacity: 1; }
  70%,
  100% { transform: scaleX(1); opacity: 0; }
}

@keyframes header-iphone-float {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-1.5px); }
}

.btn--full {
  width: 100%;
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}

.burger:hover {
  background: var(--accent-soft);
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

.side-nav {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  visibility: hidden;
}

.side-nav.is-open {
  pointer-events: auto;
  visibility: visible;
}

.side-nav__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  background: rgba(51, 51, 51, 0.45);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.side-nav.is-open .side-nav__backdrop {
  opacity: 1;
}

.side-nav__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(340px, 86vw);
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--white);
  border-right: 1px solid #e2e2e6;
  box-shadow:
    4px 0 10px rgba(0, 0, 0, 0.1),
    10px 0 28px rgba(0, 0, 0, 0.16),
    20px 0 48px rgba(0, 0, 0, 0.1),
    1px 0 0 rgba(255, 255, 255, 0.95) inset;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.side-nav__panel::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: -30%;
  bottom: -30%;
  left: -45%;
  width: 38%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--accent-rgb), 0.08),
    rgba(255, 255, 255, 0.85),
    rgba(var(--accent-rgb), 0.22),
    transparent
  );
  filter: blur(2px);
  transform: skewX(-16deg);
  opacity: 0;
  pointer-events: none;
}

.side-nav.is-open .side-nav__panel {
  transform: translateX(0);
}

.side-nav.is-open .side-nav__panel::after {
  animation: side-nav-light-sweep 0.9s 0.12s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.side-nav__close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.side-nav__close:hover {
  opacity: 1;
}

.side-nav__brand {
  flex: 0 0 auto;
  align-self: center;
  margin: 18px 48px 8px;
  opacity: 0;
  transform: translateY(-16px) scale(0.86);
}

.side-nav__brand .logo__word {
  font-size: 1.55rem;
}

.side-nav.is-open .side-nav__brand {
  animation: side-nav-logo-in 0.68s 0.16s cubic-bezier(0.16, 1.35, 0.32, 1) both;
}

.side-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 0 0 auto;
  width: 100%;
  margin: 0;
  padding: 8px 0 0;
  overflow-y: visible;
}

.side-nav .nav__link {
  width: 100%;
}

.side-nav .nav__link::after {
  display: none;
}

.side-nav__link {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 16px 20px;
  border: none;
  border-radius: 0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0;
  transform: translateX(-34px);
  overflow: hidden;
  isolation: isolate;
  transition: background-color 0.2s, color 0.2s, letter-spacing 0.2s;
}

.side-nav__link::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 1px;
  background: #ebebef;
  pointer-events: none;
}

.side-nav .side-nav__link::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  display: block;
  background:
    linear-gradient(
      90deg,
      #58d7ff 0%,
      var(--accent) 46%,
      var(--accent-dark) 100%
    );
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.1),
    0 0 18px rgba(var(--accent-rgb), 0.28);
  opacity: 0.52;
  transform: translateX(102%);
  transition: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.side-nav__link:hover {
  background: transparent;
  color: #fff;
  letter-spacing: 0.075em;
}

.side-nav .side-nav__link:hover::after,
.side-nav .side-nav__link:focus-visible::after {
  transform: translateX(0);
}

.side-nav__link--active {
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.2), #f8fbfc 72%);
  color: var(--accent-dark);
  box-shadow: inset 4px 0 0 var(--accent);
}

.side-nav__link--active::after {
  display: none;
}

.side-nav.is-open .side-nav__link {
  animation: side-nav-item-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.side-nav.is-open .side-nav__link:nth-child(1) { animation-delay: 0.2s; }
.side-nav.is-open .side-nav__link:nth-child(2) { animation-delay: 0.26s; }
.side-nav.is-open .side-nav__link:nth-child(3) { animation-delay: 0.32s; }
.side-nav.is-open .side-nav__link:nth-child(4) { animation-delay: 0.38s; }
.side-nav.is-open .side-nav__link:nth-child(5) { animation-delay: 0.44s; }

.side-nav__link.is-selecting {
  z-index: 3;
  animation: side-nav-choice 0.48s cubic-bezier(0.2, 0.8, 0.2, 1) both !important;
}

.side-nav__link.is-selecting::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  display: block;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.98) 0 6%, transparent 38%),
    linear-gradient(90deg, var(--accent), #58d7ff 48%, var(--accent));
  transform: translateX(-105%);
  animation: side-nav-choice-light 0.48s ease-out both;
}

.side-nav__contact {
  flex: 1;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-y: auto;
}

.side-nav__row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 14px 20px;
  border: none;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--gray);
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s;
}

.side-nav__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  color: var(--accent);
}

.side-nav__icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.side-nav__icon--spacer {
  visibility: hidden;
}

.side-nav__row-text {
  flex: 1;
  min-width: 0;
}

.side-nav__row:not(.side-nav__row--last)::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 1px;
  background: #ebebef;
  pointer-events: none;
}

.side-nav__row:hover {
  background-color: #fafafa;
  color: var(--ink);
}

.side-nav__phone .side-nav__row-text {
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.055em;
  color: var(--ink);
}

.side-nav__phone:hover .side-nav__row-text {
  color: var(--accent-dark);
}

.side-nav__address {
  font-style: normal;
}

.side-nav__hours-line {
  margin: 0;
}

.side-nav__foot {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 18px 20px 24px;
  border: none;
  background: var(--white);
}

.side-nav__foot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: #ebebef;
  pointer-events: none;
}

.lang--drawer {
  align-self: flex-start;
  border-color: #e2e2e6;
}

.lang--drawer .lang__btn {
  min-width: 44px;
  font-weight: 700;
}

.side-nav__foot .side-nav__social {
  gap: 10px;
}

@keyframes side-nav-light-sweep {
  0% { transform: translateX(0) skewX(-16deg); opacity: 0; }
  22% { opacity: 1; }
  100% { transform: translateX(430%) skewX(-16deg); opacity: 0; }
}

@keyframes side-nav-logo-in {
  0% { opacity: 0; transform: translateY(-16px) scale(0.86); filter: blur(5px); }
  65% { opacity: 1; transform: translateY(2px) scale(1.04); filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes side-nav-item-in {
  0% { opacity: 0; transform: translateX(-34px); }
  70% { opacity: 1; transform: translateX(5px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes side-nav-choice {
  0% { transform: scale(1); color: var(--ink); }
  38% {
    transform: scale(1.045);
    color: #fff;
    letter-spacing: 0.12em;
    box-shadow:
      0 0 0 2px rgba(var(--accent-rgb), 0.75),
      0 0 24px rgba(var(--accent-rgb), 0.9),
      0 0 54px rgba(88, 215, 255, 0.55);
  }
  100% {
    transform: scale(1);
    color: #fff;
    background: var(--accent);
    box-shadow: 0 0 22px rgba(var(--accent-rgb), 0.72);
  }
}

@keyframes side-nav-choice-light {
  0% { transform: translateX(-105%); }
  100% { transform: translateX(0); }
}

/* Hero */
.hero {
  position: relative;
  padding: 72px 0 88px;
  background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.hero::before {
  top: -180px;
  right: -140px;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.12), transparent 68%);
  animation: ambient-orb-right 12s ease-in-out infinite alternate;
}

.hero::after {
  bottom: -230px;
  left: -180px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(88, 215, 255, 0.075), transparent 69%);
  animation: ambient-orb-left 14s ease-in-out infinite alternate;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@keyframes ambient-orb-right {
  from { transform: translate3d(0, 0, 0) scale(0.95); }
  to { transform: translate3d(-46px, 34px, 0) scale(1.08); }
}

@keyframes ambient-orb-left {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(58px, -28px, 0) scale(1.1); }
}

.hero__quick {
  position: absolute;
  z-index: 3;
  top: -54px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 278px;
  padding: 9px 12px;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 24px rgba(24, 33, 42, 0.08);
  backdrop-filter: blur(10px);
  color: var(--ink);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero__quick:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), 0.42);
  box-shadow: 0 12px 30px rgba(var(--accent-rgb), 0.15);
}

.hero__quick-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 34px;
  width: 34px;
  height: 25px;
}

.hero__quick-icon span {
  display: block;
  height: 4px;
  border-radius: 1px;
  background: var(--accent);
  transform-origin: left center;
  animation: hero-quick-bars 3.4s ease-in-out infinite;
}

.hero__quick-icon span:nth-child(2) { animation-delay: 0.12s; }
.hero__quick-icon span:nth-child(3) { animation-delay: 0.24s; }

.hero__quick-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hero__quick-copy strong {
  font-size: 0.84rem;
  line-height: 1.2;
  letter-spacing: 0.025em;
}

.hero__quick-copy small {
  font-size: 0.7rem;
  line-height: 1.3;
  color: var(--muted);
}

.hero__quick-arrow {
  color: var(--accent);
  font-size: 1.05rem;
  transition: transform 0.25s ease;
}

.hero__quick:hover .hero__quick-arrow {
  transform: translate(2px, -2px);
}

@keyframes hero-quick-bars {
  0%,
  100% {
    opacity: 0.58;
    transform: scaleX(0.72);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
    box-shadow: 0 0 7px rgba(var(--accent-rgb), 0.42);
  }
}

.label {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: -0.015em;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  line-height: 1.2;
  color: var(--ink);
}

h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  line-height: 1.25;
  color: var(--ink);
}

.lead {
  margin-top: 16px;
  color: var(--gray);
  max-width: 42ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero__proof li {
  position: relative;
  min-width: 0;
  padding: 11px 10px 10px;
  border-top: 1px solid rgba(var(--accent-rgb), 0.28);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.055), transparent);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.hero__proof li:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.hero__proof li::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: left 0.5s ease;
}

.hero__proof li:hover::after {
  left: 100%;
}

.hero__proof-num {
  display: block;
  margin-bottom: 6px;
  font-family: "Orbitron", var(--font);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.hero__proof-icon {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 7px;
  stroke: var(--accent-dark);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.hero__proof li:hover .hero__proof-icon {
  transform: translateY(-2px) scale(1.08);
  filter: drop-shadow(0 0 5px rgba(var(--accent-rgb), 0.4));
}

.hero__proof strong {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}

.link-arrow {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent);
}

.link-arrow:hover {
  color: var(--accent);
  border-bottom-color: transparent;
}

.hero__visual {
  display: flex;
  justify-content: flex-end;
}

.hero__frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.semo-mark {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.12em;
  font-family: "Orbitron", var(--font);
  font-weight: 500;
  font-size: clamp(0.62rem, 1.8vw, 0.82rem);
  letter-spacing: 0.28em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  pointer-events: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.semo-mark__e {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 0.72em;
  height: 0.76em;
  margin: 0 0.06em;
  flex-shrink: 0;
}

.semo-mark__e i {
  display: block;
  height: 0.16em;
  background: var(--accent);
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.45);
}

.works-grid__btn .semo-mark {
  top: 0;
  bottom: auto;
  height: auto;
  aspect-ratio: 4 / 5;
  align-items: flex-end;
  padding-bottom: 8px;
  box-sizing: border-box;
}

.service-block__thumb .semo-mark {
  font-size: 0.48rem;
  letter-spacing: 0.16em;
  bottom: 4px;
}

.preview-strip__item .semo-mark {
  font-size: 0.52rem;
  bottom: 5px;
}

.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(74, 98, 120, 0.1) 45%,
    rgba(51, 51, 51, 0.22) 100%
  );
}

.hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: contrast(1.04) saturate(0.92);
}

.hero__frame.is-slideshow .hero__slideshow {
  display: block;
}

.hero__frame.is-slideshow .hero__image {
  display: none;
}

.hero__video,
.hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero__video {
  filter: contrast(1.06) saturate(0.9);
}

.hero__image {
  filter: contrast(1.04) saturate(0.92);
}

.hero__frame.is-static .hero__video {
  display: none;
}

.hero__frame.is-static .hero__image {
  display: block;
}

.hero__video[hidden],
.hero__image[hidden] {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition: none;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }

/* Sections */
.section {
  padding: 72px 0;
}

.page-contact {
  background: var(--surface);
}

.section--alt {
  background: var(--surface);
  color: var(--ink);
}

.section--alt .lead,
.section--alt .section__head p {
  color: var(--gray);
}

.section__head {
  margin-bottom: 40px;
  max-width: 520px;
}

.section__head h2,
.home-teaser > h2,
.cta-band h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 9px;
}

.section__head h2::after,
.home-teaser > h2::after,
.cta-band h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(var(--accent-rgb), 0.12));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.75s 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.section__head.is-visible h2::after,
.home-teaser.is-visible > h2::after,
.cta-band.is-visible h2::after {
  transform: scaleX(1);
}

.section__head p {
  margin: 12px 0 0;
  color: var(--gray);
}

/* Services — home cards */
.service-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card__inner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card__cover-link {
  position: relative;
  display: block;
  overflow: hidden;
}

.service-card__cover {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card__cover-link:hover .service-card__cover {
  transform: scale(1.04);
}

.service-card__minis {
  display: flex;
  gap: 6px;
  padding: 10px 12px 0;
  margin-top: -28px;
  position: relative;
  z-index: 1;
}

.service-card__mini {
  width: 52px;
  height: 64px;
  object-fit: cover;
  border: 2px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  flex: 1;
}

.service-card__num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
}

.service-card__title {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.3;
}

.service-card__title a {
  color: var(--ink);
  transition: color 0.2s;
}

.service-card__title a:hover {
  color: var(--accent-dark);
}

.service-card__text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.5;
}

.service-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.service-points li {
  position: relative;
  padding-left: 14px;
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.4;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.service-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: auto;
  padding-top: 4px;
}

.service-card__more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.service-card__works {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-card__works:hover {
  color: var(--accent-dark);
}

/* Services — detail page */
.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 32px;
}

.service-block {
  scroll-margin-top: 88px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-block__head {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px 20px;
  margin-bottom: 24px;
}

.service-block__num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  padding-top: 4px;
}

.service-block__intro h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
}

.service-block__intro p {
  margin: 0 0 12px;
  color: var(--gray);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 52ch;
}

.service-block__media {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: stretch;
}

.service-block__featured {
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
}

.service-block__featured img {
  display: block;
  width: 100%;
  min-height: 220px;
  max-height: 360px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-block__featured:hover img,
.service-block__featured:focus-visible img {
  transform: scale(1.03);
}

.service-block__thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-block__thumb {
  position: relative;
  margin: 0;
  padding: 0;
  width: 88px;
  height: 108px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  flex-shrink: 0;
}

.service-block__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-block__thumb:hover img,
.service-block__thumb:focus-visible img {
  transform: scale(1.05);
}

.service-block__thumb--lead {
  animation: thumb-pulse 2.2s ease-in-out infinite;
}

.service-block__thumb--lead::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius) + 2px);
  border: 2px solid transparent;
  animation: thumb-ring 2.2s ease-in-out infinite;
  pointer-events: none;
}

.service__thumb-hint {
  position: absolute;
  right: 4px;
  bottom: 4px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  animation: hint-bounce 1.4s ease-in-out infinite;
}

.service-block__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

@keyframes thumb-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes thumb-ring {
  0%,
  100% {
    border-color: transparent;
    opacity: 0.3;
  }
  50% {
    border-color: rgba(var(--accent-rgb), 0.45);
    opacity: 1;
  }
}

@keyframes hint-bounce {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(2px, -2px);
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__stage {
  position: relative;
  display: inline-block;
  max-width: min(920px, 100%);
  max-height: 85vh;
}

.lightbox__img {
  display: block;
  max-width: min(920px, 100%);
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

/* Why us */
.why h2 {
  margin-bottom: 16px;
}

.why-lead {
  margin: 0 0 32px;
  max-width: 52ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--gray);
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.why-item {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.why-item h2,
.why-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.why-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 56ch;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact__heading,
.form__title {
  margin: 0 0 18px;
  font-size: 1.25rem;
  line-height: 1.3;
}

.contact__info p {
  margin-top: 12px;
  color: var(--gray);
}

.person-card {
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.person-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.person-card__label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
}

.person-card__name {
  margin: 6px 0 4px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.person-card__phone {
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.055em;
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent);
  transition: color 0.2s, border-color 0.2s;
}

.person-card__phone:hover {
  color: var(--accent);
  border-bottom-color: transparent;
}

.social-title {
  margin: 28px 0 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social__badge {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.25s ease, border-color 0.2s, color 0.2s, background-color 0.2s;
}

.social__badge svg {
  width: 20px;
  height: 20px;
}

.social__link--instagram .social__badge {
  color: #c13584;
  border-color: rgba(193, 53, 132, 0.25);
  background: rgba(193, 53, 132, 0.06);
}

.social__link--viber .social__badge {
  color: #7360f2;
  border-color: rgba(115, 96, 242, 0.25);
  background: rgba(115, 96, 242, 0.06);
}

.social__link--telegram .social__badge {
  color: #26a5e4;
  border-color: rgba(38, 165, 228, 0.25);
  background: rgba(38, 165, 228, 0.06);
}

.social__link--tiktok .social__badge {
  color: var(--ink);
  border-color: rgba(51, 51, 51, 0.18);
  background: var(--surface);
}

.social__link--youtube .social__badge {
  color: #e62117;
  border-color: rgba(230, 33, 23, 0.25);
  background: rgba(230, 33, 23, 0.06);
}

.social__link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--accent);
}

.social__link:hover .social__badge {
  transform: scale(1.06);
}

.visit-info {
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.visit-info__address {
  margin: 0 0 12px;
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
}

.visit-info__address a {
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent);
  transition: color 0.2s, border-color 0.2s;
}

.visit-info__address a:hover {
  color: var(--accent);
  border-bottom-color: transparent;
}

.visit-info__hours {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  color: var(--gray);
}

.visit-info__hours li {
  margin-bottom: 4px;
}

.visit-info__note {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 600;
}

.form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
}

.form input,
.form textarea {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  background: var(--white);
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 0;
  border-color: var(--accent);
}

.form__status {
  margin: 0;
  font-size: 0.85rem;
  min-height: 1.2em;
}

/* Footer */
.footer {
  padding: 24px 0 32px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--gray);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer__social .social-icon {
  width: 38px;
  height: 38px;
}

/* Inner pages */
.page-hero {
  position: relative;
  padding: 48px 0 40px;
  background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: 0;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.48;
  animation: page-hero-line 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes page-hero-line {
  0%,
  100% { transform: translateX(0); opacity: 0.14; }
  50% { transform: translateX(-145%); opacity: 0.58; }
}

.page-hero--alt {
  background: var(--surface);
}

.page-hero__inner {
  max-width: 640px;
}

.page-hero h1 {
  margin-top: 8px;
}

.btn--outline {
  background: transparent;
  color: var(--accent-dark);
  border: 2px solid var(--accent);
  box-shadow: none;
}

.btn--outline:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
  box-shadow: none;
}

.section-cta {
  margin: 40px 0 0;
  text-align: center;
}

.home-teaser {
  text-align: center;
}

.home-teaser h2 {
  margin-bottom: 8px;
}

.home-teaser p {
  margin: 0 0 24px;
  color: var(--gray);
  max-width: 48ch;
  margin-inline: auto;
}

.preview-strip {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.preview-strip__item {
  position: relative;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.preview-strip__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.preview-strip__item img {
  display: block;
  width: 120px;
  height: 150px;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.preview-strip__item:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.02);
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-band:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb), 0.32);
  box-shadow: var(--shadow-md);
}

.cta-band__text h2 {
  margin-bottom: 8px;
}

.cta-band__text p {
  margin: 0;
  color: var(--gray);
  max-width: 42ch;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.works-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.works-filter {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.works-filter:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.works-filter.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.works-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.works-grid__btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.works-grid__btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.works-grid__btn img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.45s ease;
}

.works-grid__btn:hover img {
  transform: scale(1.035);
  filter: saturate(1.07) contrast(1.025);
}

.works-grid__caption {
  display: block;
  padding: 14px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
}

.works-grid__empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 32px 20px;
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.55;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

/* Responsive */
@media (max-width: 900px) {
  .nav {
    gap: 16px;
    font-size: 0.82rem;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) {
  .header__brand {
    justify-content: flex-start;
    flex: 1;
  }

  .header-social--bar {
    display: flex;
  }

  .header__brand .logo {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .header__call {
    display: none;
  }

  .hero__quick {
    display: none;
  }

  .lang--bar {
    display: none;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }

  .social-icon svg {
    width: 18px;
    height: 18px;
  }

  .hero__grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  .hero__visual {
    order: -1;
    justify-content: flex-start;
  }

  .hero__frame {
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }

  .service-block {
    padding: 20px;
  }

  .service-block__head {
    grid-template-columns: 40px 1fr;
    gap: 8px 12px;
  }

  .service-block__media {
    grid-template-columns: 1fr;
  }

  .service-block__thumbs {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-block__thumb {
    width: 72px;
    height: 88px;
  }

  .service-block__foot {
    flex-direction: column;
    align-items: stretch;
  }

  .service-block__foot .btn {
    width: 100%;
  }

  .social__link > span:not(.social__badge) {
    display: none;
  }

  .social__link {
    padding: 4px;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .footer__inner {
    justify-content: center;
    text-align: center;
  }

  .cta-band {
    padding: 24px;
  }

  .cta-band__actions {
    width: 100%;
  }

  .cta-band__actions .btn {
    flex: 1;
    min-width: 140px;
  }

  .works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .preview-strip__item img {
    width: 96px;
    height: 120px;
  }

}
