/* ===================================
   EXODUS TRAVEL AGENCY — MAIN STYLES
   =================================== */

/* CSS Variables */
:root {
  --primary: #0a2342;
  --primary-light: #123456;
  --accent: #e8a045;
  --accent-hover: #d4892f;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --text: #2d3748;
  --text-light: #718096;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(10, 35, 66, 0.12);
  --shadow-lg: 0 8px 40px rgba(10, 35, 66, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --header-h: 80px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* Utility */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232, 160, 69, 0.35);
}
.btn--accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 160, 69, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 11px 24px;
  font-size: 0.85rem;
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
}

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-tag {
  display: inline-block;
  background: rgba(232, 160, 69, 0.12);
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-tag--fire { background: rgba(255, 80, 40, 0.1); color: #e8400a; }

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
  background: transparent;
}
.header.scrolled {
  background: var(--primary);
  box-shadow: var(--shadow);
  height: 66px;
}

.header__container {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 1.6rem;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 3px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.header__nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__link {
  color: rgba(255,255,255,0.9);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav__link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.header__phone {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}
.header__phone:hover { color: var(--accent); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 35, 66, 0.75) 0%,
    rgba(10, 35, 66, 0.45) 50%,
    rgba(10, 35, 66, 0.65) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--header-h) + 30px) 20px 80px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease both;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 48px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
  animation: fadeInUp 0.8s 0.15s ease both;
}

/* Search Form */
.search-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.8s 0.3s ease both;
}
.search-form__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 16px;
  align-items: end;
}
.search-form__label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.search-form__input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.search-form__input:focus {
  outline: none;
  border-color: var(--accent);
}
select.search-form__input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 38px;
  cursor: pointer;
}
.btn--search {
  height: 48px;
  padding: 0 24px;
  font-size: 0.95rem;
  gap: 8px;
  white-space: nowrap;
}

/* Hero Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: bounce 2s infinite;
}
.scroll-down span {
  display: block;
  width: 2px;
  height: 16px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
}

/* ===== DESTINATIONS ===== */
.destinations { padding: 100px 0; background: var(--bg-light); }

.destinations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  transition: transform var(--transition), box-shadow var(--transition);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.dest-card__img-wrap {
  position: absolute;
  inset: 0;
}
.dest-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dest-card:hover .dest-card__img-wrap img { transform: scale(1.08); }

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,35,66,0.85) 0%, rgba(10,35,66,0.2) 60%, transparent 100%);
  transition: opacity var(--transition);
}

.dest-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}
.dest-card__flag { font-size: 1.8rem; margin-bottom: 4px; line-height: 1; }
.dest-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 4px;
}
.dest-card__price {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.dest-card__price strong { color: var(--accent); font-size: 1rem; }

.dest-card__btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 8px 18px;
  border-radius: 50px;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}
.dest-card:hover .dest-card__btn { opacity: 1; transform: translateY(0); }

/* ===== HOT TOURS ===== */
.hot-tours { padding: 100px 0; background: var(--white); }

.hot-tours__track-wrap {
  position: relative;
  overflow: hidden;
}
.hot-tours__track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.tour-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.tour-card__img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.tour-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tour-card:hover .tour-card__img img { transform: scale(1.05); }

.tour-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #e8400a;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 50px;
}
.tour-card__stars {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(10,35,66,0.7);
  color: var(--accent);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
}

.tour-card__body { padding: 20px; }
.tour-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.tour-card__flag { font-size: 1.2rem; }
.tour-card__loc { font-size: 0.85rem; color: var(--text-light); font-weight: 500; }
.tour-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.3;
}
.tour-card__details {
  display: flex;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 14px;
}
.tour-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}
.tour-card__old-price {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.tour-card__price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
}

/* Track navigation buttons */
.track-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all var(--transition);
}
.track-btn svg { width: 22px; height: 22px; color: var(--primary); }
.track-btn--prev { left: -24px; }
.track-btn--next { right: -24px; }
.track-btn:hover {
  background: var(--primary);
}
.track-btn:hover svg { color: var(--white); }
.track-btn:disabled { opacity: 0.35; cursor: not-allowed; }

/* ===== ADVANTAGES ===== */
.advantages { padding: 100px 0; background: var(--bg-light); }

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.adv-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 3px solid transparent;
}
.adv-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--accent);
}
.adv-item__icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}
.adv-item__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.adv-item__text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 100px 0;
  background: var(--primary);
  overflow: hidden;
}
.cta__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(232, 160, 69, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.cta__inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}
.cta__subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.65;
}
.cta__perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta__perks li {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta__perks li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* CTA Form */
.cta__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.cta-form__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 24px;
  text-align: center;
}
.cta-form__field { margin-bottom: 16px; }
.cta-form__input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}
.cta-form__input:focus { outline: none; border-color: var(--accent); }
.cta-form__input.error { border-color: #e53e3e; }
.cta-form__error {
  display: block;
  font-size: 0.78rem;
  color: #e53e3e;
  margin-top: 5px;
  min-height: 18px;
}
.cta-form__note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 12px;
}
.cta-form__note a { color: var(--accent); }
.cta-form__note a:hover { text-decoration: underline; }

/* Success state */
.cta-form__success {
  text-align: center;
  padding: 20px;
}
.success-icon {
  width: 64px;
  height: 64px;
  background: #48bb78;
  color: var(--white);
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.cta-form__success h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.cta-form__success p { color: var(--text-light); font-size: 0.9rem; }

/* ===== FOOTER ===== */
.footer {
  background: #071929;
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__logo .logo-text { font-size: 1.3rem; }

.footer__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.6);
}
.footer__social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.social-link svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.7); }
.social-link:hover { background: var(--accent); }
.social-link:hover svg { fill: var(--white); }

.footer__col-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer__links li { margin-bottom: 10px; }
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--accent); }

.footer__contacts { display: flex; flex-direction: column; gap: 14px; }
.footer__contacts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.footer__contacts svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--accent);
}
.footer__contacts a:hover { color: var(--accent); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 999;
}
.back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top svg { width: 20px; height: 20px; color: var(--white); }
.back-top:hover { background: var(--accent); transform: translateY(-2px); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .advantages__grid { grid-template-columns: repeat(2, 1fr); }
  .destinations__grid { grid-template-columns: repeat(2, 1fr); }
  .tour-card { flex: 0 0 calc(50% - 12px); }
  .cta__inner { grid-template-columns: 1fr; }
  .cta__form-wrap { max-width: 480px; margin: 0 auto; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .header__nav, .header__phone { display: none; }
  .header__nav {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 20px;
    flex-direction: column;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    box-shadow: var(--shadow);
  }
  .header__nav.open { transform: translateY(0); opacity: 1; }
  .nav__list { flex-direction: column; align-items: stretch; }
  .nav__link { padding: 12px 16px; }
  .burger { display: flex; }
  .header__right .btn { display: none; }

  .search-form__grid { grid-template-columns: 1fr 1fr; }
  .search-form__field--btn { grid-column: span 2; }

  .tour-card { flex: 0 0 calc(100% - 0px); }
  .track-btn--prev { left: 0; }
  .track-btn--next { right: 0; }
}

@media (max-width: 640px) {
  .destinations { padding: 60px 0; }
  .destinations__grid { grid-template-columns: 1fr; }
  .hot-tours { padding: 60px 0; }
  .advantages { padding: 60px 0; }
  .advantages__grid { grid-template-columns: 1fr; }
  .cta { padding: 60px 0; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .search-form__grid { grid-template-columns: 1fr; }
  .search-form__field--btn { grid-column: span 1; }
  .search-form { padding: 18px; }
  .cta__form-wrap { padding: 24px; }
  .back-top { bottom: 16px; right: 16px; }
}

/* Requisites block */
.footer__requisites {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin: 0.75rem 0;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__requisites strong { color: rgba(255,255,255,0.65); }
