:root {
  --primary: #ff8a2a;
  --primary-dark: #df6b0d;
  --primary-soft: #ffd08a;
  --ticker-height: 64px;
  --bg: #f5e6d2;
  --bg-soft: #faecd9;
  --text: #2f2116;
  --muted: #5d4330;
  --card: rgba(255, 255, 255, 0.75);
  --border: rgba(142, 83, 24, 0.24);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 177, 82, 0.42) 0%, rgba(255, 177, 82, 0) 38%),
    radial-gradient(circle at 82% 10%, rgba(255, 214, 149, 0.36) 0%, rgba(255, 214, 149, 0) 39%),
    radial-gradient(circle at 65% 75%, rgba(217, 156, 95, 0.24) 0%, rgba(217, 156, 95, 0) 35%),
    radial-gradient(circle at 20% 20%, #f2dcc0 0%, #efd5b4 48%, #e8cba8 100%);
  background-color: #e8cba8;
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}

body {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

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

.container {
  width: min(1160px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  background: rgba(255, 210, 140, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(174, 97, 18, 0.34);
}

.cursor-glow {
  position: fixed;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.34;
  background: radial-gradient(circle, rgba(255, 160, 70, 0.45) 0%, rgba(255, 160, 70, 0) 68%);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 0.25s ease;
}


.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand img {
  height: 54px;
  width: auto;
  display: block;
}

.site-header .brand img {
  filter: brightness(0) saturate(100%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.site-header .btn-outline {
  display: inline-flex;
}

.nav-links a {
  color: #6f4319;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

.site-header .btn-outline {
  font-size: 1.02rem;
}

.nav-links a:hover {
  color: var(--primary);
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.82rem 1.4rem;
  font-weight: 700;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary) 0%, #ffd06c 100%);
  color: #5a3400;
  box-shadow: 0 10px 26px rgba(255, 164, 76, 0.38);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 164, 76, 0.42);
}

.btn-outline {
  border: 1px solid rgba(160, 94, 28, 0.45);
  color: #7a4b1e;
  background: transparent;
}

.btn-outline:hover,
.btn-glass:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--border);
  color: #6f441a;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--ticker-height));
  display: grid;
  align-items: start;
  overflow: hidden;
  padding: 6.4rem 0 1rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -18% -26% auto;
  width: min(60vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 185, 100, 0.32) 0%, rgba(255, 185, 100, 0) 70%);
  animation: pulse 5s ease-in-out infinite;
  pointer-events: none;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.layer-1 {
  background: radial-gradient(circle at 15% 25%, rgba(255, 199, 128, 0.58) 0%, rgba(255, 199, 128, 0) 49%);
}

.layer-2 {
  background: radial-gradient(circle at 82% 18%, rgba(86, 191, 241, 0.34) 0%, rgba(86, 191, 241, 0) 44%);
}

.layer-3 {
  background: url("assets/images/site/hero.jpg") center/cover no-repeat;
  opacity: 0.34;
  mix-blend-mode: normal;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-main-copy {
  margin-top: 56px;
}

.hero-kicker {
  margin: 0 0 0.6rem;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.28em;
  color: rgba(128, 73, 20, 0.9);
  text-transform: uppercase;
}

.hero-orbit {
  position: absolute;
  right: -1.5rem;
  top: 9rem;
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  z-index: 2;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255, 191, 120, 0.65);
  animation: spin 14s linear infinite;
}

.orbit-core {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  background: radial-gradient(circle at 35% 25%, #ffbf73, #ff8b00);
  color: #2a1400;
  box-shadow: 0 10px 28px rgba(255, 139, 0, 0.45);
}

.floating-chip {
  position: absolute;
  z-index: 3;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff7ea;
  background: linear-gradient(120deg, rgba(255, 139, 0, 0.76), rgba(255, 173, 66, 0.55));
  border: 1px solid rgba(255, 214, 162, 0.5);
  box-shadow: 0 14px 30px rgba(255, 139, 0, 0.3);
  backdrop-filter: blur(6px);
  animation: chipFloat 4.4s ease-in-out infinite;
}

.chip-1 {
  right: 0;
  top: 2%;
}

.chip-2 {
  right: 12%;
  bottom: calc(26% + 88px);
  animation-delay: 0.9s;
}

.chip-3 {
  left: 43%;
  bottom: calc(18% + 50px);
  animation-delay: 1.7s;
}

.motion-strip {
  border-top: 1px solid rgba(170, 105, 40, 0.24);
  border-bottom: 1px solid rgba(170, 105, 40, 0.24);
  background: linear-gradient(90deg, rgba(255, 167, 72, 0.2) 0%, rgba(255, 239, 213, 0.34) 100%);
  min-height: var(--ticker-height);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.motion-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0;
  padding: 0.55rem 0;
  animation: marquee 28s linear infinite;
}

.motion-group {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.1rem;
  padding-right: 1.1rem;
}

.motion-group span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  gap: 0.4rem;
  padding: 0.44rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(170, 105, 40, 0.35);
  background: rgba(255, 244, 225, 0.86);
  color: #6b3f17;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.motion-group span::before {
  content: "✦";
  color: var(--primary-soft);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 930px;
  font-size: clamp(2.1rem, 5.2vw, 4.35rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1 span {
  color: #f07d1e;
  text-shadow: 0 2px 10px rgba(95, 45, 0, 0.28);
}

.hero-subtitle {
  margin-top: 1.25rem;
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.stats-grid {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.stats-grid article {
  background: var(--card);
  border: 1px solid rgba(183, 119, 54, 0.35);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  backdrop-filter: blur(8px);
}

.stats-grid strong {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #6b3d14;
  line-height: 1.25;
}

.stats-grid span {
  display: block;
  margin-top: 0.35rem;
  color: #7a5838;
  font-size: 0.88rem;
  line-height: 1.35;
}

.bonus-offer {
  margin-top: 1.5rem;
  border: 2px solid rgba(228, 129, 28, 0.82);
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(140deg, rgba(255, 219, 162, 0.94) 0%, rgba(241, 183, 102, 0.95) 100%);
  display: grid;
  gap: 0.4rem;
}

.bonus-offer strong {
  color: #8c4200;
  font-size: 1.3rem;
}

.bonus-offer span {
  color: #6f3d08;
  line-height: 1.5;
  font-size: 1.12rem;
}

.section {
  padding: 5.8rem 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.7rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  line-height: 1.15;
}

.slider {
  position: relative;
}

.slider-window {
  overflow: hidden;
  border-radius: 22px;
}

.slider-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.slider-track > * {
  flex: 0 0 100%;
  min-width: 100%;
}

.card {
  border: 1px solid rgba(255, 176, 95, 0.35);
  background: linear-gradient(170deg, rgba(255, 151, 32, 0.13) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(8px);
}

.destination-card {
  height: min(72vh, 680px);
  min-height: 380px;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 139, 0, 0.22) 0%, rgba(255, 139, 0, 0) 45%);
  z-index: 1;
  pointer-events: none;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.05);
  transition: transform 0.8s ease;
}

.destination-card:hover img {
  transform: scale(1.06);
}

.card-info {
  position: absolute;
  inset: auto 0 0;
  padding: 1.2rem 1.25rem 1.4rem;
  background: linear-gradient(to top, rgba(8, 11, 19, 0.92) 0%, rgba(8, 11, 19, 0.25) 100%);
  z-index: 2;
}

.card-info h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
}

.card-info p {
  margin-top: 0.45rem;
  color: #d8e1f2;
  line-height: 1.45;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  border: 1px solid rgba(255, 173, 79, 0.65);
  background: rgba(25, 14, 6, 0.78);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
}

.slider-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-50%) scale(1.08);
}

.slider-btn.prev {
  left: 14px;
}

.slider-btn.next {
  right: 14px;
}

.slider-dots {
  margin-top: 1rem;
  display: flex;
  gap: 0.45rem;
  justify-content: center;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.25s ease;
}

.slider-dots button.active {
  width: 24px;
  background: var(--primary);
}

.parallax-banner {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(170, 105, 40, 0.25);
  border-bottom: 1px solid rgba(170, 105, 40, 0.25);
}

.banner-layer {
  position: absolute;
  inset: 0;
  background: url("assets/images/site/banner.jpg") center/cover no-repeat;
  opacity: 0.28;
  transform: scale(1.08);
  will-change: transform;
}

.parallax-banner .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.parallax-banner h2 {
  font-size: clamp(1.8rem, 4.5vw, 3.1rem);
}

.parallax-banner p {
  margin: 0.9rem auto 1.4rem;
  max-width: 700px;
  color: #6d4b2d;
  line-height: 1.5;
}

.experience-grid {
  padding-top: 4.2rem;
}

.experience-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.xp-card {
  border: 1px solid rgba(255, 179, 100, 0.42);
  border-radius: 20px;
  padding: 1.2rem;
  background: linear-gradient(145deg, rgba(255, 139, 0, 0.2) 0%, rgba(14, 26, 53, 0.62) 100%);
  transform-style: preserve-3d;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.xp-card h3 {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: #ffe0b4;
}

.xp-card p {
  margin-top: 0.8rem;
  color: #e7f0ff;
  line-height: 1.5;
}

.xp-card:hover {
  border-color: rgba(255, 202, 146, 0.75);
}

.review-card {
  min-height: 250px;
  border-radius: 22px;
  padding: clamp(1.3rem, 3.2vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card p {
  font-size: clamp(1.02rem, 2.1vw, 1.25rem);
  line-height: 1.55;
  color: #e8efff;
}

.review-author {
  margin-top: 1.3rem;
}

.review-author span {
  display: block;
  margin-top: 0.2rem;
  color: #c0cde8;
}

.cta {
  padding-top: 3.3rem;
}

.agency-stats {
  padding-top: 2.2rem;
  padding-bottom: 0.8rem;
}

.cta-box {
  border: 1px solid rgba(183, 119, 54, 0.32);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 234, 200, 0.94) 0%, rgba(249, 223, 179, 0.9) 100%);
  text-align: center;
  padding: clamp(1.6rem, 5vw, 3rem);
}

.form-box {
  text-align: left;
}

.trip-form {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.trip-form label {
  display: grid;
  gap: 0.35rem;
}

.trip-form label span {
  font-size: 0.83rem;
  color: #7a4c11;
  font-weight: 700;
}

.trip-form input,
.trip-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(183, 119, 54, 0.35);
  background: rgba(255, 255, 255, 0.92);
  color: #1b405d;
  padding: 0.75rem 0.85rem;
  font: inherit;
}

.trip-form input::placeholder,
.trip-form textarea::placeholder {
  color: #a07b55;
}

.trip-form .full {
  grid-column: 1 / -1;
}

.trip-form button {
  justify-self: start;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.form-consent-note {
  margin: 0;
  color: rgba(95, 63, 36, 0.68);
  font-size: 0.86rem;
  line-height: 1.45;
}

.form-consent-note a {
  color: #9b5b1c;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-box h2 {
  font-size: clamp(1.65rem, 4vw, 2.7rem);
}

.cta-box p {
  margin: 0.95rem auto 1.2rem;
  max-width: 740px;
  line-height: 1.5;
  color: #6f4e2f;
}

.contacts-section {
  padding-top: 2rem;
}

.contacts-box {
  border: 1px solid rgba(183, 119, 54, 0.32);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 241, 216, 0.95) 0%, rgba(251, 230, 193, 0.95) 55%);
  padding: clamp(1.2rem, 4vw, 2rem);
}

.contacts-head {
  margin-bottom: 1rem;
}

.contacts-head h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-card {
  border: 1px solid rgba(183, 119, 54, 0.3);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  padding: 1rem;
}

.contact-card h3 {
  margin: 0 0 0.75rem;
  color: #6f431a;
  font-size: 1rem;
}

.contact-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.contact-card li {
  display: grid;
  gap: 0.2rem;
}

.contact-card li span {
  color: #cfdcf7;
  font-size: 0.8rem;
}

.contact-card li a {
  color: #fff1d9;
  font-weight: 700;
  transition: color 0.2s ease;
}

.contact-card li a:hover {
  color: #ffca84;
}

.social-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}



.social-btn {
  border: 1px solid rgba(183, 119, 54, 0.3);
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(255, 248, 231, 0.95) 0%, rgba(227, 246, 255, 0.95) 100%);
  min-height: 62px;
  padding: 0.45rem;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.28rem;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(14, 18, 35, 0.35);
}

.social-btn.is-max:hover {
  border-color: rgba(119, 86, 255, 0.88);
  background: linear-gradient(140deg, rgba(120, 98, 255, 0.28) 0%, rgba(34, 29, 72, 0.88) 100%);
}

.social-btn.is-telegram:hover {
  border-color: rgba(62, 175, 238, 0.9);
  background: linear-gradient(140deg, rgba(61, 168, 228, 0.3) 0%, rgba(14, 44, 66, 0.88) 100%);
}

.social-btn.is-whatsapp:hover {
  border-color: rgba(73, 201, 106, 0.9);
  background: linear-gradient(140deg, rgba(57, 187, 92, 0.3) 0%, rgba(16, 54, 31, 0.88) 100%);
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 3px;
}

.social-btn span:last-child {
  color: #6b3f17;
  font-size: 0.78rem;
  font-weight: 700;
}

.requisites .req-items {
  display: grid;
  gap: 0.55rem;
}

.requisites p {
  margin: 0;
  color: #5f3f24;
  line-height: 1.45;
}

.requisites p span {
  color: #a35f1f;
  font-weight: 800;
}

.requisites a {
  color: #a35f1f;
  font-weight: 700;
}

.person-card {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.person-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(183, 119, 54, 0.35);
}

.person-phone {
  color: #8f5219;
  font-weight: 800;
  font-size: 1.02rem;
}

.contact-messengers-wide {
  margin-top: 0.95rem;
}

.contact-messengers-wide h3 {
  margin-bottom: 0.9rem;
}

.groups-section {
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}

.groups-section .cta-box {
  text-align: center;
}

.groups-section .social-buttons {
  margin-top: 1rem;
}

.social-buttons-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer {
  margin-top: auto;
  padding: 2.3rem 0 3rem;
}

.site-footer .brand img {
  height: 99px;
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
  color: #765339;
  border-top: 1px solid rgba(170, 105, 40, 0.24);
  padding-top: 1.4rem;
}

.footer-wrap .brand {
  flex: 0 0 auto;
}

.footer-copy {
  flex: 1 1 0;
  display: grid;
  gap: 0.45rem;
  text-align: left;
}

.footer-copy p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.5;
}

.footer-copy a {
  color: #9b5b1c;
  font-weight: 700;
}

.footer-requisites {
  flex: 1 1 0;
  display: grid;
  gap: 0.35rem;
  max-width: 360px;
}

.footer-requisites h4 {
  margin: 0 0 0.2rem;
  color: #7c4714;
  font-size: 0.96rem;
}

.footer-requisites p {
  margin: 0;
  color: #765339;
  line-height: 1.5;
  font-size: 0.96rem;
}

.footer-requisites span {
  color: #9b5b1c;
  font-weight: 800;
}

.footer-requisites a {
  color: #9b5b1c;
  font-weight: 700;
}

.why-page-top {
  padding-top: 7.2rem;
}

.privacy-page {
  padding-top: 6.6rem;
}

.privacy-doc h1 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
}

.privacy-owner {
  margin-bottom: 1rem;
  font-weight: 600;
}

.privacy-doc p {
  margin: 0 0 0.85rem;
  max-width: none;
}

.privacy-doc h2 {
  margin-top: 1.2rem;
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
  color: #7a4b1e;
}

.privacy-doc ol,
.privacy-doc ul {
  margin: 0 0 0.35rem;
  padding-left: 1.25rem;
  color: #5d3f24;
  line-height: 1.5;
}

.privacy-doc li {
  margin-bottom: 0.4rem;
}

.why-head {
  margin-top: 1.4rem;
  margin-bottom: 1.4rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.why-item {
  border: 1px solid rgba(183, 119, 54, 0.3);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 240, 216, 0.9) 100%);
  padding: 1rem;
  color: #5d3f24;
  font-weight: 700;
  line-height: 1.4;
  min-height: 110px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 24px rgba(148, 93, 38, 0.18);
}

.why-agents-section {
  padding-top: 1rem;
}

.why-agents-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.why-agent-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 239, 214, 0.9) 100%);
  box-shadow: 0 14px 30px rgba(148, 93, 38, 0.2);
}

.agent-text {
  margin: 0;
  color: #5d3f24;
  line-height: 1.5;
}

.currency-page {
  padding-top: 7.2rem;
}

.currency-page h1 {
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
}

.currency-meta {
  color: #6f4e2f;
  font-weight: 600;
}

.currency-error {
  border: 1px solid rgba(186, 70, 29, 0.45);
  background: rgba(255, 235, 226, 0.9);
  color: #8a2a00;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
}

.currency-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.currency-card h3 {
  margin-bottom: 0.8rem;
}

.currency-table-wrap {
  overflow-x: auto;
}

.currency-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
}

.currency-table th,
.currency-table td {
  padding: 0.6rem 0.7rem;
  border-bottom: 1px solid rgba(183, 119, 54, 0.3);
  text-align: left;
  white-space: nowrap;
}

.currency-table th {
  color: #7a4b1e;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.currency-table td {
  color: #5d3f24;
  font-weight: 600;
}

.process-page {
  padding-top: 7.2rem;
}

.process-page h1 {
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
}

.process-head {
  margin-bottom: 1.2rem;
}

.process-grid {
  counter-reset: process-step;
  display: grid;
  gap: 0.9rem;
}

.process-item {
  counter-increment: process-step;
  position: relative;
  border: 1px solid rgba(183, 119, 54, 0.3);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.93) 0%, rgba(255, 239, 214, 0.88) 100%);
  padding: 1rem 1.1rem 1rem 3.9rem;
  color: #5d3f24;
  line-height: 1.55;
  box-shadow: 0 10px 24px rgba(148, 93, 38, 0.18);
}

.process-item::before {
  content: counter(process-step);
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #5a3400;
  background: linear-gradient(120deg, var(--primary) 0%, #ffd06c 100%);
  box-shadow: 0 6px 14px rgba(255, 164, 76, 0.35);
}

.process-item strong {
  color: #8f5219;
}

.why-agent-card .person-phone {
  margin-top: auto;
}

.why-agent-card .social-buttons {
  margin-top: 0.55rem;
}

@media (max-width: 980px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .destination-card {
    height: min(58vh, 520px);
    min-height: 320px;
  }

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

  .hero-orbit {
    display: none;
  }

  .floating-chip {
    display: none;
  }

  .trip-form {
    grid-template-columns: 1fr;
  }

  .form-submit-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .social-buttons-wide {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-agents-grid {
    grid-template-columns: 1fr;
  }

  .currency-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 760px) {
  .destination-card {
    height: min(64vh, 500px);
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    min-height: 68px;
  }

  .btn-outline {
    display: none;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .slider-btn {
    width: 39px;
    height: 39px;
  }

  .footer-wrap {
    flex-direction: column;
  }

  .footer-copy {
    text-align: left;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-requisites {
    max-width: none;
  }

}
