:root {
  --bg: #f4faf8;
  --white: #ffffff;
  --ink: #0c1f1e;
  --muted: #5d7270;
  --line: #d7e8e4;
  --teal: #0b6e6e;
  --teal-deep: #073f40;
  --cyan: #2ec4b6;
  --green: #1f8a70;
  --glow: rgba(46, 196, 182, 0.28);
  --radius: 22px;
  --shadow: 0 24px 60px rgba(7, 63, 64, 0.12);
  --font: "Manrope", system-ui, sans-serif;
  --display: "Unbounded", "Manrope", sans-serif;
  --header: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100vh;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }

.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.kicker {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 14px;
}
h1, h2, h3 { font-family: var(--display); line-height: 1.12; font-weight: 600; }
h1 { font-size: clamp(40px, 6.4vw, 76px); letter-spacing: -0.04em; }
h2 { font-size: clamp(28px, 3.6vw, 44px); letter-spacing: -0.03em; }
h3 { font-size: 22px; }
.lead { font-size: 18px; color: var(--muted); max-width: 46ch; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), background 0.25s, box-shadow 0.35s;
  box-shadow: 0 10px 24px var(--glow);
}
.btn:hover { background: var(--teal-deep); transform: translateY(-3px); box-shadow: 0 16px 36px var(--glow); }
.btn:active { transform: translateY(0); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  border: 1px solid var(--line);
}
.btn--ghost:hover { background: var(--white); }
.btn--sm { height: 44px; padding: 0 18px; font-size: 14px; }
.btn--block { width: 100%; }
.text-link {
  font-weight: 700;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease, color 0.2s;
}
.text-link:hover { gap: 10px; color: var(--teal-deep); }

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: rgba(244, 250, 248, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(215, 232, 228, 0.7);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}
.header.is-scrolled {
  background: rgba(244, 250, 248, 0.96);
  box-shadow: 0 12px 32px rgba(7, 63, 64, 0.08);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand__logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--teal-deep);
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--cyan);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text strong {
  font-family: var(--display);
  font-size: 14px;
  max-width: 250px;
  line-height: 1.2;
}
.brand__text strong span { display: block; }
.brand__text em { font-style: normal; font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
.nav { display: flex; gap: 22px; margin-left: auto; }
.nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 0;
  background: linear-gradient(var(--cyan), var(--cyan)) no-repeat 0 100%;
  background-size: 0 2px;
  transition: color 0.25s, background-size 0.3s ease;
}
.nav a.is-active, .nav a:hover { color: var(--ink); }
.nav a.is-active, .nav a:hover { background-size: 100% 2px; }
.header__actions { display: flex; align-items: center; gap: 16px; }
.header__phone { font-weight: 700; font-size: 14px; }
.burger { display: none; width: 40px; height: 40px; position: relative; }
.burger span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: var(--ink);
  transition: transform 0.3s ease, top 0.3s ease;
}
.burger span:first-child { top: 14px; }
.burger span:last-child { top: 24px; }
body.nav-open .burger span:first-child { top: 19px; transform: rotate(45deg); }
body.nav-open .burger span:last-child { top: 19px; transform: rotate(-45deg); }

.hero { padding: 36px 0 80px; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero__copy h1 { margin-bottom: 18px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--teal-deep);
}
.hero__photo,
.hero__video {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 680px;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  animation: kenburns 22s ease-in-out infinite alternate;
}
.hero__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  border: 3px solid #fff;
  animation: floaty 4.5s ease-in-out infinite;
}
.hero__badge img { width: 100%; height: 100%; object-fit: cover; }

.section { padding: 88px 0; }
.section--tight { padding-top: 12px; }
.section--tint { background: #eaf6f3; }
.section__head { margin-bottom: 36px; }
.section__head--row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}
.page-hero { padding: 48px 0 12px; }
.page-hero h1 { margin-bottom: 12px; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.problem {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s, border-color 0.3s;
}
.problem:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--cyan);
}
.problem__num {
  font-family: var(--display);
  color: var(--cyan);
  font-size: 13px;
  letter-spacing: 0.16em;
}
.problem h3 { margin: 12px 0 10px; }
.problem p { color: var(--muted); }
.problem em {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-weight: 700;
  color: var(--teal);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  transition: border-color 0.3s, transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s;
}
.service-card:hover { border-color: var(--cyan); transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card p { color: var(--muted); margin: 8px 0 18px; }
.service-card span { margin-top: auto; font-weight: 800; color: var(--teal); }

.specialist-section { background: var(--white); }
.specialist-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 48px;
  align-items: center;
}
.specialist-photo {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--teal-deep);
}
.specialist-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}
.specialist-photo:hover img { transform: scale(1.035); }
.specialist-copy { max-width: 650px; }
.specialist-copy .lead { max-width: none; color: var(--ink); }
.specialist-experience {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: #e5f7f3;
  color: var(--teal);
  font-weight: 800;
  font-size: 14px;
}
.specialist-text { color: var(--muted); margin: 18px 0 24px; }
.training-block {
  margin-top: 56px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--bg);
  scroll-margin-top: calc(var(--header) + 20px);
}
.training-block__head { margin-bottom: 28px; }
.training-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
  counter-reset: training;
}
.training-list li {
  position: relative;
  padding: 16px 0 16px 24px;
  border-top: 1px solid var(--line);
}
.training-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 23px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(46, 196, 182, 0.13);
}
.training-list time {
  display: block;
  margin-bottom: 5px;
  color: var(--teal);
  font-weight: 800;
  font-size: 13px;
}
.training-list p { color: var(--muted); font-size: 14px; }

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.about-photo,
.about-video {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--teal-deep);
}
.about-photo img,
.about-video video {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}
.about-photo:hover img { transform: scale(1.05); }

.teaser {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.teaser__mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  min-height: 460px;
}
.teaser__mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  transition: transform 0.8s cubic-bezier(.22,1,.36,1);
}
.teaser__mosaic img:hover { transform: scale(1.04); }
.teaser__mosaic img:first-child {
  grid-row: 1 / 3;
}
.teaser__copy .btn { margin-top: 22px; }
.notice {
  margin-top: 16px;
  max-width: 52ch;
  color: var(--muted);
  font-size: 14px;
}
.steps { list-style: none; margin-top: 28px; display: grid; gap: 18px; }
.steps li { display: grid; grid-template-columns: 52px 1fr; gap: 14px; }
.steps span {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  font-family: var(--display);
  font-size: 13px;
  color: var(--teal);
}
.steps p { color: var(--muted); font-size: 15px; }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cases-grid--home { grid-template-columns: repeat(3, 1fr); }
.case-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  display: block;
  width: 100%;
  text-align: left;
  background: #123;
}
.case-card img,
.case-card video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.22,1,.36,1);
  display: block;
  background: #0b2e2e;
}
.case-card:hover img,
.case-card:hover video { transform: scale(1.07); }
.case-card__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(7, 63, 64, 0.72);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), background 0.3s;
}
.case-card:hover .case-card__play {
  transform: scale(1.08);
  background: rgba(11, 110, 110, 0.88);
}
.case-card__play::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 18px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}
.case-card span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(transparent, rgba(7, 63, 64, 0.82));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.chip {
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 600;
  font-size: 13px;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.chip:hover { transform: translateY(-2px); }
.chip.is-on { background: var(--teal); color: #fff; border-color: var(--teal); }

.service-list { display: grid; gap: 12px; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s, border-color 0.3s;
}
.service-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--cyan);
}
.service-row p { color: var(--muted); margin-top: 8px; }
.service-row__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  text-align: right;
}
.service-row__meta strong { font-size: 22px; font-family: var(--display); }
.service-row__meta span { color: var(--muted); font-size: 13px; }

.price-wrap { max-width: 820px; }
.price-block { margin-bottom: 36px; }
.price-block h2 { font-size: 22px; margin-bottom: 14px; color: var(--teal); }
.price-list { list-style: none; }
.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
  transition: padding-left 0.3s ease, color 0.2s;
}
.price-list li:hover { padding-left: 8px; }
.price-list span { display: block; color: var(--muted); font-size: 13px; font-weight: 500; }
.price-list em { font-style: normal; font-weight: 800; white-space: nowrap; }
.price-note { color: var(--muted); margin: 8px 0 24px; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}
.contact-card, .contact-form-card {
  background: var(--white);
  border-radius: 28px;
  padding: 32px;
  border: 1px solid var(--line);
}
.contact-facts { list-style: none; display: grid; gap: 18px; }
.contact-facts span { display: block; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-facts a, .contact-facts strong { font-size: 18px; }
.map { margin-top: 24px; border-radius: 16px; overflow: hidden; min-height: 220px; }
.map iframe { width: 100%; height: 240px; border: 0; }

.faq h2 { margin-bottom: 18px; }
.faq details {
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  transition: border-color 0.25s, box-shadow 0.3s;
}
.faq details[open] { border-color: var(--cyan); box-shadow: 0 10px 28px rgba(7, 63, 64, 0.06); }
.faq summary { font-weight: 700; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq p {
  color: var(--muted);
  margin-top: 8px;
  animation: fadeUp 0.35s ease;
}

.cta-band { padding-bottom: 100px; }
.cta-band__inner {
  background: var(--teal-deep);
  color: #fff;
  border-radius: 32px;
  padding: 40px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background-size: 200% 200%;
  animation: ctaShift 12s ease-in-out infinite;
  background-image: linear-gradient(120deg, #073f40 0%, #0b6e6e 50%, #073f40 100%);
}
.cta-band p { color: rgba(255,255,255,0.72); margin-top: 6px; }
.cta-band .btn { background: var(--cyan); color: var(--teal-deep); box-shadow: none; }

.footer {
  background: var(--teal-deep);
  color: #e7f7f4;
  padding: 56px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
}
.footer a:not(.brand),
.footer p { display: block; color: rgba(255,255,255,0.78); margin-top: 8px; }
.footer a.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  color: #fff;
}
.footer a.brand:hover { color: #fff; }
.footer .brand__logo {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.28);
}
.footer .brand__text {
  gap: 8px;
  justify-content: center;
}
.footer .brand__text strong {
  font-size: 17px;
  line-height: 1.2;
  color: #fff;
}
.footer .brand__text em {
  line-height: 1.35;
}
.footer .footer__tag { margin-top: 22px; max-width: 36ch; }
.footer__label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; }
.brand--light .brand__text em { color: rgba(255,255,255,0.6); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.form { display: grid; gap: 14px; margin-top: 18px; }
.form label span { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.form input, .form select, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #f7fcfb;
  border-radius: 14px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px var(--glow);
}
.form__check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); }
.form__check input { width: auto; margin-top: 3px; }
.form__msg { color: #b42318; font-size: 14px; }
.form__msg.is-ok { color: var(--green); }
.form__ok { background: #e6f7ef; color: var(--green); padding: 12px 14px; border-radius: 12px; font-weight: 700; }

.modal[hidden], .lightbox[hidden] { display: none; }
.modal:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.modal.is-open { opacity: 1; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(7, 63, 64, 0.55); }
.modal__card {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  background: var(--white);
  border-radius: 28px;
  padding: 32px;
  max-height: calc(100vh - 40px);
  overflow: auto;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
}
.modal.is-open .modal__card { transform: none; }
.modal__lead { color: var(--muted); margin: 8px 0 4px; }
.modal__x {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 28px;
  line-height: 1;
  color: var(--muted);
  transition: transform 0.25s, color 0.2s;
}
.modal__x:hover { color: var(--ink); transform: rotate(90deg); }

.lightbox:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(7, 20, 20, 0.92);
  display: grid;
  place-items: center;
  padding: 40px 20px 60px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.is-open { opacity: 1; }
.lightbox img,
.lightbox video {
  max-height: 82vh;
  max-width: 92vw;
  border-radius: 12px;
  background: #000;
  transform: scale(0.97);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
}
.lightbox.is-open img,
.lightbox.is-open video { transform: none; }
.lightbox p { color: #fff; margin-top: 12px; text-align: center; }
.lightbox__close {
  position: absolute;
  top: 16px;
  right: 22px;
  color: #fff;
  font-size: 36px;
}

@media (max-width: 960px) {
  .hero__grid, .specialist-card, .about-grid, .problem-grid, .service-grid, .contact-grid, .footer__grid, .service-row {
    grid-template-columns: 1fr;
  }
  .specialist-card { align-items: start; }
  .specialist-photo { max-width: 560px; }
  .training-list { grid-template-columns: 1fr; }
  .cases-grid, .cases-grid--home { grid-template-columns: repeat(2, 1fr); }
  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line);
    gap: 14px;
  }
  body.nav-open .nav { display: flex; }
  .burger { display: block; }
  .header__phone { display: none; }
  .cta-band__inner, .section__head--row, .footer__bottom, .service-row__meta { flex-direction: column; align-items: flex-start; }
  .hero__media, .hero__video, .hero__photo { min-height: 280px; }
  .teaser, .teaser__mosaic { grid-template-columns: 1fr; min-height: 0; }
  .teaser__mosaic img:first-child { grid-row: auto; min-height: 240px; }
  .teaser__mosaic img:not(:first-child) { display: none; }
  .teaser__mosaic { grid-template-rows: auto; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .cases-grid { grid-template-columns: 1fr; }
  h1 { font-size: 36px; }
  .brand__text strong { max-width: 150px; font-size: 11px; }
  .brand__text em { display: none; }
  .header__actions .btn { display: none; }
  .training-block { padding: 24px 18px; }
}

html.js .reveal:not(.is-in) {
  opacity: 0;
  transform: translateY(28px);
}
.reveal {
  transition: opacity 0.75s cubic-bezier(.22,1,.36,1), transform 0.75s cubic-bezier(.22,1,.36,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.hero__copy.reveal.is-in { transition-delay: 0.05s; }
.hero__media.reveal.is-in { transition-delay: 0.16s; }

.case-card.is-off {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
}

.steps li {
  transition: transform 0.3s ease;
}
.steps li:hover { transform: translateX(6px); }

.footer a { transition: color 0.2s; }
.footer a:hover { color: #fff; }

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes ctaShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal:not(.is-in) { opacity: 1; transform: none; }
  .hero__photo,
  .hero__video,
  .hero__badge,
  .cta-band__inner {
    animation: none !important;
  }
  .btn, .problem, .service-card, .service-row, .case-card img, .reveal, .modal, .lightbox {
    transition: none !important;
  }
}
