:root {
  --bg: #ffffff;
  --panel: #f5f5f5;
  --text: #000000;
  --muted: #000000;
  --accent: #2b7cff;
  --accent-2: #1fb56b;
  --stroke: rgba(0, 0, 0, 0.1);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 28%),
    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), #5f97ff);
  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;
  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;
  color: #333333;
}

.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;
  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 {
  margin: 0;
  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;
  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;
  color: #000;
  text-wrap: balance;
}

.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;
  color: #000;
}

.faq__question-heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.faq__question-heading .faq__question {
  width: 100%;
}

.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;
  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: 0 0 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;
  color: #000000;
}

.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;
  color: #000000;
}

.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 #2b7cff;
  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;
}

/* Заголовки секций — один размер (как «Наши преимущества»); H1 в hero сюда не входит */
.info-strip h2,
.trip-block__title,
.docs-block__title,
.documents-block__title,
.focus-block__title,
.advantages__title,
.how-we-work__title,
.faq__title,
.gallery__title,
.cta-final__title,
.cta-mid-banner__title {
  font-size: clamp(1.5rem, 1.2rem + 1.15vw, 2.05rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.info-strip h2 {
  margin: 0 0 28px;
  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__item-title {
  display: block;
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: inherit;
}

.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);
  }
}

@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;
  }
}

/* Mid-page CTA banner (desktop: text+buttons | photo; mobile: modal-like column) */
.cta-mid-banner {
  padding: 48px 0 56px;
}

.cta-mid-banner__card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(14, 60, 48, 0.22);
}

@media (min-width: 901px) {
  .cta-mid-banner .container {
    width: min(1280px, calc(100% - 28px));
  }

  .cta-mid-banner__photo-wrap {
    min-width: 0;
    justify-self: stretch;
  }
}

.cta-mid-banner__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 95% 75% at 90% 42%, rgba(31, 181, 107, 0.38), transparent 52%),
    radial-gradient(circle at 8% 75%, rgba(43, 124, 255, 0.14), transparent 42%),
    linear-gradient(118deg, #05261f 0%, #0d4034 40%, #082f27 100%);
  pointer-events: none;
}

.cta-mid-banner__close {
  display: none;
}

.cta-mid-banner__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  grid-template-rows: auto auto;
  grid-template-areas:
    "copy photo"
    "actions photo";
  gap: clamp(20px, 3vw, 32px) clamp(20px, 3vw, 40px);
  align-items: start;
  padding: clamp(28px, 5vw, 52px) clamp(20px, 3vw, 48px);
}

.cta-mid-banner__copy {
  grid-area: copy;
  align-self: start;
}

.cta-mid-banner__actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-self: start;
}

.cta-mid-banner__photo-wrap {
  grid-area: photo;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
  min-height: 220px;
  align-self: end;
  text-align: center;
}

.cta-mid-banner__phone--under-photo {
  display: flex;
  width: 100%;
  max-width: min(580px, 100%);
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
  margin-top: -6px;
}

.cta-mid-banner__phone--in-actions {
  display: none;
}

.cta-mid-banner__title {
  margin: 0 0 16px;
  color: #fff;
}

.cta-mid-banner__lead {
  margin: 0 0 14px;
  font-size: clamp(0.95rem, 0.9rem + 0.35vw, 1.1rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  max-width: 38em;
}

.cta-mid-banner__copy .cta-mid-banner__lead:last-child {
  margin-bottom: 0;
}

.cta-mid-banner__photo {
  display: block;
  width: 100%;
  max-width: min(580px, 100%);
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -6px;
  object-fit: contain;
  object-position: 46% 100%;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.35));
  transform: translateX(20px);
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .cta-mid-banner {
    padding: 32px 0 48px;
  }

  .cta-mid-banner__card {
    border-radius: 24px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-mid-banner__close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .cta-mid-banner__close:hover,
  .cta-mid-banner__close:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.05);
    outline: none;
  }

  .cta-mid-banner__close span {
    display: block;
    margin-top: -2px;
  }

  .cta-mid-banner__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "copy"
      "photo"
      "actions";
    align-items: stretch;
    text-align: center;
    padding: 44px 22px 28px;
    gap: 8px 0;
  }

  .cta-mid-banner__copy {
    align-self: stretch;
  }

  .cta-mid-banner__title {
    text-align: center;
    margin-bottom: 14px;
    padding: 0 8px;
  }

  .cta-mid-banner__lead {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
    max-width: 22em;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .cta-mid-banner__photo-wrap {
    min-height: 0;
    margin: 4px auto 0;
    align-self: center;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: min(280px, 72vw);
  }

  .cta-mid-banner__phone--under-photo {
    display: none;
  }

  .cta-mid-banner__phone--in-actions {
    display: flex;
  }

  .cta-mid-banner__photo {
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -6px;
    transform: translateX(10px);
  }

  .cta-mid-banner__actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: min(280px, 72vw);
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
    padding-top: 2px;
    margin-top: 0;
    position: relative;
    z-index: 2;
  }

  .cta-mid-banner__actions .btn-rect {
    width: 100%;
    min-height: 52px;
    border-radius: 999px;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 540px) {
  .cta-mid-banner__card {
    border-radius: 22px;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .cta-mid-banner__grid {
    padding: 42px 18px 24px;
  }

  .cta-mid-banner__lead {
    max-width: none;
    padding: 0 4px;
  }

  .cta-mid-banner__photo-wrap {
    max-width: min(260px, 78vw);
  }

  .cta-mid-banner__actions {
    max-width: min(260px, 78vw);
  }

  .cta-mid-banner__photo {
    max-width: 100%;
  }
}
