:root {
  --bg: oklch(97.5% 0.008 250);
  --surface: oklch(100% 0 0);
  --surface-soft: oklch(96% 0.01 250);
  --primary: oklch(52% 0.17 255);
  --primary-hover: oklch(46% 0.16 258);
  --primary-soft: oklch(94% 0.03 250);
  --primary-softer: oklch(97% 0.015 250);
  --accent: oklch(74% 0.16 80);
  --accent-soft: oklch(94% 0.05 85);
  --text: oklch(23% 0.02 255);
  --text-muted: oklch(52% 0.025 255);
  --border: oklch(90% 0.015 255);
  --danger: oklch(58% 0.2 25);
  --danger-soft: oklch(95% 0.03 25);
  --success: oklch(55% 0.17 150);
  --success-soft: oklch(94% 0.05 150);
  --shadow-sm: 0 1px 2px oklch(25% 0.02 255 / 0.05), 0 2px 8px oklch(25% 0.02 255 / 0.05);
  --shadow-md: 0 4px 12px oklch(25% 0.02 255 / 0.08), 0 12px 32px oklch(25% 0.02 255 / 0.08);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1200px;
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Manrope", "Inter", sans-serif;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  color: var(--text-muted);
}

img, svg {
  display: block;
  max-width: 100%;
}

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

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.icon {
  width: 1.2em;
  height: 1.2em;
  fill: currentColor;
  flex-shrink: 0;
}

.icon--lg {
  width: 2rem;
  height: 2rem;
}

.icon--flag-lg {
  width: 34px;
  height: 24px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 0 1px oklch(0% 0 0 / 0.08);
}

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.container--narrow {
  width: min(780px, 100% - 2.5rem);
}

.section {
  padding: 5.5rem 0;
}

.section__head {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section__head h2 {
  margin: 0.9rem 0 0.8rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge--soft {
  background: var(--primary-soft);
  color: var(--primary);
}

.badge--hot {
  background: var(--accent-soft);
  color: oklch(45% 0.12 80);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 16px oklch(52% 0.17 255 / 0.3);
}

.btn--primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px oklch(46% 0.16 258 / 0.35);
}

.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.02rem;
}

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

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(100% 0 0 / 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: stretch;
  gap: 0.7rem;
}

.logo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  border-radius: 14px;
  color: var(--primary);
}

.logo__icon .icon {
  width: 100% !important;
  height: 100% !important;
  flex-shrink: 1 !important;
}

.logo__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
}

.logo__name {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
}

.logo__sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

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

.nav__link {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.18s ease;
}

.nav__link:hover {
  color: var(--primary);
}

.nav__cta-mobile {
  display: none;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--text);
  transition: color 0.18s ease;
}

.header__phone:hover {
  color: var(--primary);
}

.header__phone .icon {
  color: var(--primary);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.burger span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(52rem 30rem at 85% -10%, oklch(92% 0.06 250 / 0.55), transparent 60%),
    radial-gradient(38rem 26rem at -5% 20%, oklch(94% 0.05 85 / 0.45), transparent 60%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero__content .badge {
  margin-bottom: 1.3rem;
}

.hero__sub {
  margin-top: 1.2rem;
  font-size: 1.12rem;
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.3rem;
}

.hero__chips-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-right: 0.2rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.chip:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.chip__flag {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px oklch(0% 0 0 / 0.08);
}

.hero__stats-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

.hero__stat {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  padding: 0 2rem;
}

.hero__stat:first-child {
  padding-left: 0;
}

.hero__stat:last-child {
  padding-right: 0;
}

.hero__stat + .hero__stat {
  border-left: 1px solid var(--border);
}

.hero__stat-num {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.hero__stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.hero-form h3 {
  font-size: 1.3rem;
}

.hero-form > p {
  font-size: 0.9rem;
  margin-top: -0.4rem;
}

.hero-form .form__privacy {
  margin-top: -0.2rem;
}

.countries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.country-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.country-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: oklch(80% 0.06 250);
}

.country-card--featured {
  grid-row: span 2;
  background: linear-gradient(160deg, var(--primary-softer), var(--surface) 55%);
  border-color: oklch(86% 0.05 250);
  padding: 1.8rem;
}

.country-card--featured .country-card__name {
  font-size: 1.6rem;
}

.country-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.country-card__flag {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--surface-soft);
}

.country-card__name {
  margin-bottom: 0.5rem;
}

.country-card__text {
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.country-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: auto 0 1.2rem;
}

.country-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.country-card__list .icon {
  color: var(--success);
  margin-top: 0.2em;
  width: 1em;
  height: 1em;
}

.country-card__btn {
  margin-top: 0.4rem;
}

.country-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--primary);
  transition: gap 0.18s ease;
}

.country-card__link:hover {
  gap: 0.6rem;
}

.country-card--cta {
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--accent-soft);
  border-color: oklch(88% 0.06 85);
  gap: 0.6rem;
}

.country-card--cta .icon--lg {
  color: oklch(50% 0.14 85);
  width: 2.4rem;
  height: 2.4rem;
}

.country-card--cta .country-card__text {
  font-size: 0.92rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  font-size: 1.35rem;
  margin-bottom: 1.2rem;
}

.service-card__icon--blue { background: oklch(93% 0.04 250); color: var(--primary); }
.service-card__icon--green { background: oklch(94% 0.05 150); color: oklch(48% 0.15 155); }
.service-card__icon--amber { background: oklch(94% 0.06 85); color: oklch(55% 0.13 75); }
.service-card__icon--red { background: oklch(95% 0.04 25); color: oklch(55% 0.17 25); }
.service-card__icon--violet { background: oklch(94% 0.05 290); color: oklch(50% 0.15 290); }
.service-card__icon--teal { background: oklch(94% 0.05 195); color: oklch(48% 0.12 195); }

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.92rem;
}

.steps {
  background: var(--surface-soft);
}

.steps__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  counter-reset: step;
}

.step-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-card__num {
  display: inline-block;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.1rem;
}

.step-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem 1.1rem;
}

.advantage {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.advantage__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--success-soft);
  color: var(--success);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.advantage h3 {
  font-size: 1.02rem;
  margin-bottom: 0.3rem;
}

.advantage p {
  font-size: 0.9rem;
}

.pricing {
  background: var(--surface-soft);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.price-card--popular {
  border: 2px solid var(--primary);
  box-shadow: 0 16px 40px oklch(52% 0.17 255 / 0.16);
}

.price-card--popular .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.price-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.price-card__price {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}

.price-card__price span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
}

.price-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.price-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.93rem;
}

.price-card__list .icon {
  color: var(--success);
  margin-top: 0.18em;
  width: 1.05em;
  height: 1.05em;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq__item.is-open {
  border-color: oklch(80% 0.06 250);
  box-shadow: var(--shadow-sm);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
}

.faq__chevron {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--primary);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__answer p {
  padding: 0 1.5rem 1.4rem;
  font-size: 0.95rem;
}

.booking__wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  background: linear-gradient(135deg, var(--primary), oklch(45% 0.16 268));
  border-radius: var(--radius-xl);
  padding: 3rem;
  color: #fff;
  box-shadow: 0 24px 60px oklch(46% 0.16 258 / 0.3);
}

.booking__info h2 {
  color: #fff;
  margin: 0.9rem 0 1rem;
}

.booking__info > p {
  color: oklch(90% 0.03 255);
}

.booking__points {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 1.5rem 0;
}

.booking__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: oklch(94% 0.02 255);
}

.booking__points .icon {
  color: oklch(88% 0.1 100);
  margin-top: 0.2em;
  width: 1.05em;
  height: 1.05em;
}

.booking__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.booking__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: #fff;
}

.booking__contact .icon {
  color: oklch(88% 0.1 100);
}

.booking__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  color: var(--text);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__label {
  font-size: 0.85rem;
  font-weight: 600;
}

.form__optional {
  font-weight: 400;
  color: var(--text-muted);
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px oklch(52% 0.17 255 / 0.15);
}

.form__group textarea {
  resize: vertical;
  min-height: 76px;
}

.form__group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%236b7280' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form__group.is-invalid input,
.form__group.is-invalid select,
.form__group.is-invalid textarea {
  border-color: var(--danger);
}

.form__group.is-invalid input:focus,
.form__group.is-invalid select:focus {
  box-shadow: 0 0 0 3px oklch(58% 0.2 25 / 0.15);
}

.form__error {
  display: none;
  font-size: 0.8rem;
  color: var(--danger);
}

.form__group.is-invalid .form__error {
  display: block;
}

.form__privacy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.contacts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: oklch(80% 0.06 250);
}

.contact-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.contact-card h3 {
  font-size: 0.95rem;
}

.contact-card p {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
}

.contact-card__hint {
  font-weight: 400 !important;
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
}

.contact-card__link {
  font-weight: 600;
  color: var(--primary);
}

.contact-card__link:hover {
  color: var(--primary-hover);
}

.contact-card p a {
  color: var(--text);
}

.contact-card p a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer__contacts .email-link {
  font-size: 0.9rem;
  color: oklch(70% 0.02 255);
}

.addresses {
  background: var(--surface-soft);
}

.addresses__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.address-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.address-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: oklch(80% 0.06 250);
}

.address-card__top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.address-card__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.address-card h3 {
  font-size: 1.05rem;
}

.address-card p {
  font-size: 0.92rem;
}

.footer {
  background: oklch(20% 0.02 260);
  color: oklch(85% 0.02 255);
  padding: 4rem 0 2rem;
  margin-top: 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid oklch(100% 0 0 / 0.1);
}

.footer .logo--footer .logo__sub {
  color: oklch(70% 0.02 255);
}

.footer p {
  color: oklch(70% 0.02 255);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 30ch;
}

.footer h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer a {
  font-size: 0.9rem;
  color: oklch(70% 0.02 255);
  transition: color 0.18s ease;
}

.footer a:hover {
  color: #fff;
}

.footer__contacts li {
  font-size: 0.9rem;
  color: oklch(70% 0.02 255);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: oklch(60% 0.02 255);
}

.footer__bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: oklch(60% 0.02 255);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translate(-50%, 150%);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: oklch(24% 0.02 255);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-md);
  z-index: 200;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  max-width: calc(100% - 2.5rem);
}

.toast.is-visible {
  transform: translate(-50%, 0);
}

.toast .icon {
  color: oklch(80% 0.15 150);
  width: 1.3rem;
  height: 1.3rem;
}

.toast.is-error .icon {
  color: oklch(75% 0.18 25);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--d, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1023px) {
  .header__btn,
  .header__phone {
    display: none;
  }

  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 1.2rem 1.25rem 1.6rem;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }

  .nav__link {
    display: block;
    padding: 0.7rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }

  .nav__link:hover {
    background: var(--primary-softer);
  }

  .nav__cta-mobile {
    display: block;
    margin-top: 1rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .countries__grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

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

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

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

  .booking__wrap {
    grid-template-columns: 1fr;
    padding: 2.2rem;
  }
}

@media (max-width: 767px) {
  :root {
    --header-h: 68px;
  }

  .section {
    padding: 3.5rem 0;
  }

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

  .country-card--featured {
    grid-row: auto;
  }

  .services__grid,
  .pricing__grid,
  .steps__list,
  .advantages__grid,
  .contacts__grid,
  .addresses__grid {
    grid-template-columns: 1fr;
  }

  .hero__stat {
    padding: 0 1.2rem;
  }

  .hero__stats-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .hero__stat {
    padding: 0;
  }

  .hero__stat + .hero__stat {
    border-left: none;
  }

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

  .booking__wrap {
    padding: 1.6rem;
    border-radius: var(--radius-lg);
  }

  .booking__form {
    padding: 1.4rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .footer__bottom {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
