:root {
  --bg: #faf9f7;
  --panel: #f0eeea;
  --text: #14120f;
  --muted: #3d3830;
  --accent: #156b7a;
  --accent-2: #c78b2e;
  --stroke: rgba(20, 18, 15, 0.1);
  --shadow: 0 8px 32px rgba(21, 107, 122, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse 120% 80% at 100% 0%, rgba(21, 107, 122, 0.06), transparent 50%),
    radial-gradient(ellipse 90% 60% at 0% 100%, rgba(199, 139, 46, 0.05), transparent 45%),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.header-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  transition: box-shadow 0.35s ease, background 0.35s ease;
  animation: header-in 0.5s ease both;
}

.header-sticky.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}

.phone-link {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, color 0.2s ease;
}

.phone-link:hover,
.phone-link:focus-visible {
  transform: scale(1.02);
}

.messengers {
  display: flex;
  align-items: center;
  gap: 12px;
}

.messenger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease, box-shadow 0.3s ease;
}

.messenger:hover,
.messenger:focus-visible {
  transform: translateY(-3px) scale(1.05);
  opacity: 0.95;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.messenger--telegram {
  background: #2aabee;
}

.messenger--whatsapp {
  background: #25d366;
}

.messenger img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.hero {
  padding: 8px 0 48px;
}

.hero__container {
  display: grid;
  gap: 28px;
}

.hero-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-nav a {
  position: relative;
}

.hero-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.hero-nav a:hover::after,
.hero-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero__visual {
  min-height: 250px;
  border-radius: 22px;
  background-color: var(--panel);
  background-image: url("./receipt-correct.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  box-shadow: var(--shadow);
}

.hero__content {
  max-width: 860px;
  padding-bottom: 24px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.35rem, 1.2rem + 0.8vw, 1.65rem);
  line-height: 1.35;
  font-weight: 700;
  max-width: 950px;
}

.hero__lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #000000;
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  line-height: 1.7;
}

.hero__list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.hero__list li {
  position: relative;
  padding-left: 20px;
  color: #000000;
}

.hero__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(43, 124, 255, 0.35);
}

.button--primary {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.button--primary {
  background: linear-gradient(135deg, var(--accent), #2a9aad);
  color: #fff;
}

.button--ghost {
  border-color: var(--stroke);
  background: rgba(255, 255, 255, 0.03);
}

/* Блок «Планируете командировку» */
.trip-block {
  padding: 48px 0 56px;
}

.trip-block__inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.trip-block__text {
  flex: 1;
  min-width: 0;
}

.trip-block__title {
  margin: 0 0 20px;
  font-size: clamp(1.2rem, 1.1rem + 0.4vw, 1.45rem);
  font-weight: 700;
  color: #000000;
}

.trip-block__body {
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  line-height: 1.7;
  color: #000000;
}

.trip-block__body p {
  margin: 0 0 14px;
}

.trip-block__body p:last-child {
  margin-bottom: 0;
}

.trip-block__actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.btn-rect {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-rect:hover,
.btn-rect:focus-visible {
  transform: translateY(-2px);
}

.btn-rect img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.btn-rect--whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-rect--whatsapp:hover,
.btn-rect--whatsapp:focus-visible {
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-rect--telegram {
  background: #2aabee;
  color: #fff;
}

.btn-rect--telegram:hover,
.btn-rect--telegram:focus-visible {
  box-shadow: 0 6px 20px rgba(42, 171, 238, 0.4);
}

.btn-rect--phone {
  background: #000000;
  color: #fff;
  flex-direction: column;
  gap: 2px;
  padding: 12px 24px;
}

.btn-rect--phone:hover,
.btn-rect--phone:focus-visible {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-rect__label {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
}

.btn-rect__phone {
  font-size: 1.1rem;
  font-weight: 800;
}

/* Docs block */
.docs-block {
  padding: 56px 0 56px;
}

.docs-block__inner {
  max-width: 960px;
}

.docs-block__title {
  margin: 0 0 36px;
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.5rem);
  font-weight: 700;
  color: #333333;
  line-height: 1.35;
}

.docs-block__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.docs-block__row {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.docs-block__icon {
  flex-shrink: 0;
  width: 80px;
  height: auto;
  object-fit: contain;
}

.docs-block__row:nth-child(2) .docs-block__icon {
  width: 70px;
}

.docs-block__text {
  margin: 0;
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  line-height: 1.75;
  color: #333333;
}

.docs-block__highlight {
  color: #1a7f37;
  font-weight: 500;
}

@media (max-width: 760px) {
  .docs-block__row {
    gap: 20px;
  }

  .docs-block__icon {
    width: 64px;
  }

  .docs-block__row:nth-child(2) .docs-block__icon {
    width: 56px;
  }
}

/* Блок документов — табы с эффектом парения */
/* Блок преимуществ */
.advantages {
  padding: 56px 0 64px;
}

.advantages__title {
  margin: 0 0 36px;
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.55rem);
  font-weight: 700;
  color: #000;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 28px;
}

.advantages__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.advantages__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 4px;
}

.advantages__card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
}

.advantages__card-text {
  margin: 0;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .advantages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
  }
}

@media (max-width: 480px) {
  .advantages__grid {
    grid-template-columns: 1fr;
  }
}

/* Слайдер */
.gallery {
  padding: 56px 0 64px;
  background: #fafafa;
}

.gallery__title {
  margin: 0 0 32px;
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.45rem);
  font-weight: 700;
  color: #000;
}

.slider {
  position: relative;
}

.slider__track-wrap {
  overflow: hidden;
  border-radius: 16px;
}

.slider__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slider__slide {
  flex: 0 0 calc(33.333% - 12px);
  margin-right: 18px;
}

.slider__slide:last-child {
  margin-right: 0;
}

.slider__slide img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  object-position: top;
  border-radius: 14px;
  display: block;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  cursor: zoom-in;
  background: #f5f5f5;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.slider__slide img:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
}

.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  z-index: 2;
}

.slider__btn:hover {
  background: #f0f0f0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transform: translateY(-50%) scale(1.08);
}

.slider__btn--prev {
  left: -22px;
}

.slider__btn--next {
  right: -22px;
}

.slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}

.slider__dot.is-active {
  background: #4caf50;
  transform: scale(1.25);
}

@media (max-width: 760px) {
  .slider__slide {
    flex: 0 0 calc(100% - 0px);
    margin-right: 18px;
  }

  .slider__slide img {
    height: 320px;
  }

  .slider__btn--prev { left: 4px; }
  .slider__btn--next { right: 4px; }
}

@media (min-width: 761px) and (max-width: 1024px) {
  .slider__slide {
    flex: 0 0 calc(50% - 9px);
  }
}

/* Footer */
.footer {
  background: #111;
  padding: 36px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}

.footer__tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  cursor: default;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              background 0.25s ease,
              color 0.25s ease;
  animation: tagFloat 4s ease-in-out infinite;
}

.footer__tag:nth-child(odd)  { animation-delay: 0s; }
.footer__tag:nth-child(2)    { animation-delay: 0.4s; }
.footer__tag:nth-child(3)    { animation-delay: 0.8s; }
.footer__tag:nth-child(4)    { animation-delay: 1.2s; }
.footer__tag:nth-child(5)    { animation-delay: 0.6s; }
.footer__tag:nth-child(6)    { animation-delay: 1.0s; }
.footer__tag:nth-child(7)    { animation-delay: 0.2s; }
.footer__tag:nth-child(8)    { animation-delay: 1.4s; }
.footer__tag:nth-child(9)    { animation-delay: 0.5s; }
.footer__tag:nth-child(10)   { animation-delay: 0.9s; }
.footer__tag:nth-child(11)   { animation-delay: 1.3s; }

a.footer__tag {
  text-decoration: none;
  cursor: pointer;
}

.footer__tag:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 8px 22px rgba(0,0,0,0.4);
  background: rgba(255,255,255,0.12);
  color: #fff;
  animation-play-state: paused;
}

@keyframes tagFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__text {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  line-height: 1.6;
}

/* CTA финальный блок */
.cta-final {
  padding: 72px 0 80px;
  background: #f5f5f5;
  text-align: center;
}

.cta-final__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.cta-final__title {
  margin: 0;
  font-size: clamp(1.35rem, 1.1rem + 1vw, 2rem);
  font-weight: 800;
  color: #000;
  line-height: 1.25;
  white-space: nowrap;
}

.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.cta-final__actions .btn-rect {
  min-width: 180px;
}

.cta-final__desc {
  margin: 0;
  max-width: 780px;
  font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
  color: #555;
  line-height: 1.75;
  text-align: center;
}

.cta-final__actions .btn-rect--phone .btn-rect__label {
  color: rgba(255,255,255,0.8);
}

@media (max-width: 480px) {
  .cta-final__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-final__actions .btn-rect {
    min-width: 0;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lbFadeIn 0.25s ease;
}

.lightbox[hidden] {
  display: none;
}

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox__img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
  cursor: default;
  animation: lbImgIn 0.2s ease;
}

@keyframes lbImgIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1001;
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.28);
}

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1001;
}

.lightbox__nav:hover {
  background: rgba(255,255,255,0.28);
}

.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }

/* FAQ — аккордеон */
.faq {
  padding: 56px 0 64px;
  background: #fff;
}

.faq__inner {
  max-width: 900px;
}

.faq__title {
  margin: 0 0 8px;
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.45rem);
  font-weight: 700;
  color: #000;
}

.faq__list {
  margin: 0;
  padding: 0;
}

.faq__item {
  border-top: 2px solid #4caf50;
}

.faq__item:last-child {
  border-bottom: 2px solid #4caf50;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  font-weight: 700;
  color: #000;
  text-align: left;
}

.faq__icon {
  flex-shrink: 0;
  position: relative;
  width: 20px;
  height: 20px;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: #555;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq__icon::before {
  width: 20px;
  height: 2px;
  top: 9px;
  left: 0;
}

.faq__icon::after {
  width: 2px;
  height: 20px;
  top: 0;
  left: 9px;
}

.faq__question[aria-expanded="true"] .faq__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq__answer {
  padding: 0 0 22px;
  margin: 0;
}

.faq__answer p {
  margin: 0;
  font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
  color: #333;
  line-height: 1.7;
}

.faq__answer--hidden {
  display: none;
}

/* Блок «Как мы работаем» */
.how-we-work {
  padding: 56px 0 64px;
  background: #fafafa;
}

.how-we-work__title {
  margin: 0 0 32px;
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.55rem);
  font-weight: 700;
  color: #000;
}

.how-we-work__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.how-we-work__card {
  background: #d9f0df;
  border-radius: 20px;
  padding: 22px 22px 28px;
}

.how-we-work__card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.how-we-work__num {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #6abf7b;
  border-radius: 8px;
  padding: 4px 10px;
  line-height: 1.4;
}

.how-we-work__star {
  flex-shrink: 0;
  opacity: 0.75;
}

.how-we-work__card-title {
  display: block;
  margin-bottom: 14px;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
}

.how-we-work__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.how-we-work__list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.93rem;
  color: #222;
  line-height: 1.5;
}

.how-we-work__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6abf7b;
  font-weight: 700;
}

@media (max-width: 760px) {
  .how-we-work__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.focus-block {
  padding: 56px 0;
  background: #fafafa;
}

.focus-block__inner {
  max-width: 720px;
}

.focus-block__title {
  margin: 0 0 20px;
  font-size: clamp(1.2rem, 1.1rem + 0.4vw, 1.45rem);
  font-weight: 700;
  color: #000000;
  line-height: 1.35;
}

.focus-block__text {
  margin: 0 0 28px;
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  line-height: 1.75;
  color: #000000;
}

.focus-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.documents-block {
  padding: 0 0 56px;
}

.documents-block__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.documents-block__content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}

.documents-block__tabs {
  flex: 1;
  min-width: 0;
}

.documents-block__title {
  margin: 0 0 28px;
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.4rem);
  font-weight: 700;
  color: #000000;
  line-height: 1.4;
}

.documents-block__tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.documents-block__tab {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 14px;
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  font-weight: 500;
  color: #000000;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.2s ease;
}

.documents-block__tab:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.documents-block__tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.documents-block__tab--green {
  background: #e8f5e9;
}

.documents-block__tab--green:hover {
  background: #c8e6c9;
}

.documents-block__tab--white {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.documents-block__tab--white:hover {
  background: #fafafa;
  border-color: rgba(0, 0, 0, 0.12);
}

.documents-block__tab[aria-selected="true"] {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.documents-block__tab--green[aria-selected="true"] {
  background: #c8e6c9;
}

.documents-block__tab--white[aria-selected="true"] {
  background: #f5f5f5;
  border-color: rgba(0, 0, 0, 0.15);
}

.documents-block__visual {
  flex-shrink: 0;
  width: min(260px, 100%);
}

.documents-block__visual img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 760px) {
  .documents-block__inner {
    flex-direction: column;
    gap: 32px;
  }

  .documents-block__content {
    flex-direction: column;
    gap: 24px;
  }

  .documents-block__tabs {
    width: 100%;
  }

  .documents-block__visual {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    order: 1;
  }
}

.info-strip {
  padding: 0 0 56px;
}

.info-strip h2 {
  margin: 0 0 20px;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}

.info-strip__content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-strip__content div {
  padding: 22px;
  border: 1px solid var(--stroke);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.info-strip__content strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.info-strip__content span {
  color: #000000;
  line-height: 1.5;
}

.header-sticky .topbar {
  animation: headerSlide 0.6s ease-out both;
}

.page-loaded .hero__visual,
.page-loaded .hero__content {
  animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-loaded .hero__content {
  animation-delay: 0.15s;
}

.page-loaded .info-strip__content > div {
  animation: cardFadeIn 0.6s ease-out both;
}

.page-loaded .info-strip__content > div:nth-child(1) { animation-delay: 0.3s; }
.page-loaded .info-strip__content > div:nth-child(2) { animation-delay: 0.4s; }
.page-loaded .info-strip__content > div:nth-child(3) { animation-delay: 0.5s; }

@keyframes headerSlide {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Promo marquees (3D contrast strips) —— */
.promo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}

.promo-marquee__viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
}

.promo-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.promo-marquee__track--left {
  animation: promo-marquee-left 28s linear infinite;
}

.promo-marquee__track--right {
  animation: promo-marquee-right 32s linear infinite;
}

.promo-marquee__sequence {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(1rem, 3vw, 2.25rem);
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  white-space: nowrap;
}

@keyframes promo-marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes promo-marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* Design A: объёмная тёмно-бирюзовая «лента» */
.promo-marquee--deep {
  margin: 0;
  padding: clamp(0.65rem, 1.8vw, 0.95rem) 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, transparent 42%),
    linear-gradient(180deg, #062a32 0%, #0d4a55 18%, #156b7a 52%, #0c3d47 100%);
  border-block: 3px solid #041a1f;
  box-shadow:
    inset 0 3px 0 rgba(255, 255, 255, 0.12),
    inset 0 -6px 12px rgba(0, 0, 0, 0.35),
    0 10px 24px rgba(6, 42, 50, 0.28),
    0 4px 0 rgba(0, 0, 0, 0.12);
}

.promo-marquee--deep::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 50%, transparent 100%);
  pointer-events: none;
  animation: promo-marquee-sheen 6s ease-in-out infinite;
}

@keyframes promo-marquee-sheen {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(-30%);
  }
  50% {
    opacity: 0.85;
    transform: translateX(30%);
  }
}

.promo-marquee--deep .promo-marquee__sequence {
  font-size: clamp(0.78rem, 1.35vw + 0.45rem, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.promo-marquee__chunk--light {
  color: #f6ecda;
}

.promo-marquee__chunk--gold {
  color: #ffd78a;
}

.promo-marquee--deep .promo-marquee__sep {
  color: rgba(246, 236, 218, 0.5);
  font-size: 0.65em;
}

/* Design B: контрастная «кинолента» / неоновый контур */
.promo-marquee--ribbon {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0;
  padding: clamp(0.55rem, 1.5vw, 0.85rem) 0;
  background:
    repeating-linear-gradient(
      -18deg,
      #0d0d0d,
      #0d0d0d 10px,
      #1f1a12 10px,
      #1f1a12 20px
    ),
    linear-gradient(180deg, #050505 0%, #151515 45%, #0a0a0a 100%);
  border-block: 4px solid #f0b429;
  box-shadow:
    inset 0 0 0 1px rgba(240, 180, 41, 0.35),
    inset 0 -8px 20px rgba(0, 0, 0, 0.55),
    0 -6px 0 rgba(240, 180, 41, 0.2),
    0 12px 28px rgba(0, 0, 0, 0.35);
}

.promo-marquee--ribbon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(240, 180, 41, 0.04) 40px,
    rgba(240, 180, 41, 0.04) 41px
  );
  pointer-events: none;
}

.promo-marquee__sequence--outline {
  font-size: clamp(0.72rem, 1.2vw + 0.42rem, 1rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.promo-marquee--ribbon .promo-marquee__word {
  color: #fff8e8;
}

.promo-marquee--ribbon .promo-marquee__dash {
  color: #f0b429;
  font-weight: 700;
  letter-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
  .promo-marquee__track--left,
  .promo-marquee__track--right {
    animation: none;
    transform: translateX(0);
  }

  .promo-marquee--deep::before {
    animation: none;
    opacity: 0.25;
    transform: none;
  }
}

.breadcrumbs {
  width: min(1160px, calc(100% - 40px));
  margin: 20px auto 0;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  color: rgba(20, 18, 15, 0.35);
}

.breadcrumbs__item a {
  color: var(--accent);
}

.breadcrumbs__item[aria-current="page"] {
  color: var(--text);
}

.seo-links {
  padding: clamp(28px, 5vw, 52px) 0 0;
}

.seo-links__card {
  padding: clamp(26px, 5vw, 42px);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.96)),
    var(--panel);
  border: 1px solid rgba(21, 107, 122, 0.14);
  box-shadow: 0 16px 40px rgba(21, 107, 122, 0.08);
}

.seo-links__eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-links__title {
  margin: 0;
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  line-height: 1.15;
}

.seo-links__text {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.seo-links__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.seo-links__link {
  display: block;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(20, 18, 15, 0.08);
  color: var(--text);
  font-weight: 700;
  line-height: 1.4;
  box-shadow: 0 8px 20px rgba(20, 18, 15, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.seo-links__link:hover,
.seo-links__link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(21, 107, 122, 0.28);
  box-shadow: 0 14px 28px rgba(21, 107, 122, 0.12);
}

.seo-context {
  padding: clamp(28px, 5vw, 54px) 0 0;
}

.seo-context__inner {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(21, 107, 122, 0.06), rgba(199, 139, 46, 0.08));
  border: 1px solid rgba(21, 107, 122, 0.12);
}

.seo-context__eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-context__title {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.2;
}

.seo-context__text {
  margin: 14px 0 0;
  max-width: 820px;
  color: var(--muted);
  line-height: 1.7;
}

.seo-context__list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.seo-context__list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.6;
}

.seo-context__list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .topbar {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 14px 0;
  }

  .phone-link {
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .messengers {
    gap: 8px;
    flex-shrink: 0;
  }

  .messenger {
    width: 44px;
    height: 44px;
  }

  .messenger img {
    width: 24px;
    height: 24px;
  }

  .hero__visual {
    min-height: 180px;
    border-radius: 18px;
    background-size: cover;
  }

  .info-strip__content {
    grid-template-columns: 1fr;
  }

  .trip-block__inner {
    flex-direction: column;
    gap: 28px;
  }

  .trip-block__actions {
    width: 100%;
    min-width: 0;
  }

  .promo-marquee--deep .promo-marquee__sequence,
  .promo-marquee__sequence--outline {
    gap: 0.75rem;
    letter-spacing: 0.05em;
  }

  .breadcrumbs {
    width: min(100% - 24px, 1160px);
    margin-top: 14px;
  }

  .seo-links__card {
    border-radius: 22px;
    padding: 22px 18px;
  }

  .seo-context__inner {
    border-radius: 22px;
    padding: 22px 18px;
  }
}
