:root {
  --red: #b5121b;
  --red-dark: #8e0d15;
  --red-soft: #fbe9e9;
  --orange: #ff7a1a;
  --ink: #171719;
  --ink-soft: #37373b;
  --muted: #6d6d72;
  --line: #e5e3df;
  --paper: #f6f4f0;
  --white: #ffffff;
  --green: #25d366;
  --shadow: 0 24px 60px rgba(27, 17, 17, 0.12);
  --radius: 24px;
  --container: min(1160px, calc(100% - 40px));
}

.legal-page {
  min-height: 100vh;
  padding: 130px 0 70px;
  background: #f7f4f1;
}

.legal-card {
  max-width: 850px;
  padding: 48px;
  border: 1px solid #e4dfda;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(34, 31, 30, 0.06);
}

.legal-card h1 {
  margin: 12px 0 18px;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 0.95;
}

.legal-card h2 {
  margin: 32px 0 10px;
  font-size: 22px;
}

.legal-card p,
.legal-card li {
  color: #66636a;
  font-size: 15px;
  line-height: 1.75;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-card a {
  color: #b5121b;
  font-weight: 750;
}

.legal-lead {
  max-width: 700px;
  font-size: 18px !important;
}

.legal-updated {
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid #e4dfda;
  font-size: 12px !important;
}

@media (max-width: 640px) {
  .legal-page {
    padding: 100px 0 35px;
  }

  .legal-card {
    padding: 28px 20px;
    border-radius: 18px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 12px 18px;
  background: var(--white);
  border-radius: 10px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 78px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(30, 30, 30, 0.07);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: max-content;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.brand img {
  width: 44px;
  height: 44px;
  margin-right: 3px;
  border: 2px solid rgba(181, 18, 27, 0.14);
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  font-size: 22px;
}

.brand small {
  color: var(--red);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.main-nav .account-nav-link {
  color: var(--red);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  transition: right 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
}

.menu-button {
  display: none;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(255, 122, 26, 0.35);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding: 0 19px;
  font-size: 13px;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #d71c26);
  box-shadow: 0 14px 28px rgba(181, 18, 27, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 34px rgba(181, 18, 27, 0.29);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.68);
  border-color: #d5d2cd;
}

.hero {
  position: relative;
  min-height: 710px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.9)),
    repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(27, 27, 27, 0.03) 80px),
    var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 15%, rgba(181, 18, 27, 0.09), transparent 23%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  right: -180px;
  top: -210px;
  width: 520px;
  height: 520px;
  border: 95px solid rgba(181, 18, 27, 0.06);
}

.hero-glow-two {
  right: 12%;
  bottom: -240px;
  width: 420px;
  height: 420px;
  background: rgba(255, 122, 26, 0.06);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.78fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  padding-block: 82px 88px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(181, 18, 27, 0.11);
}

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

h1 {
  max-width: 720px;
  margin: 22px 0 22px;
  font-size: clamp(48px, 5.25vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 900;
}

h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.hero-proof div {
  padding: 0 20px;
  border-right: 1px solid var(--line);
}

.hero-proof div:first-child {
  padding-left: 0;
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 5px;
  font-size: 17px;
}

.hero-proof span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.route-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.route-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(181, 18, 27, 0.07);
}

.route-top {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.route-top strong {
  margin-left: auto;
  color: #1b7f4c;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #27b970;
  box-shadow: 0 0 0 5px rgba(39, 185, 112, 0.1);
}

.route-map {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 34px 28px 28px;
}

.country {
  min-width: 112px;
}

.country .flag,
.country small,
.country strong {
  display: block;
}

.country .flag {
  margin-bottom: 11px;
  font-size: 27px;
}

.country small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.country strong {
  font-size: 13px;
}

.country-ec {
  text-align: right;
}

.route-line {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, var(--red) 0 55%, #ddd 55% 100%);
}

.route-line::before,
.route-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--red);
  background: var(--red);
}

.route-line::before {
  left: 0;
}

.route-line::after {
  right: 0;
  background: var(--white);
  box-shadow: 0 0 0 1px #aaa;
}

.package-icon {
  position: absolute;
  left: 52%;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) rotate(45deg);
  color: var(--white);
  border-radius: 8px;
  background: var(--red);
  box-shadow: 0 8px 18px rgba(181, 18, 27, 0.28);
  font-size: 14px;
}

.package-icon::first-letter {
  transform: rotate(-45deg);
}

.route-steps {
  margin-inline: 22px;
  padding: 22px 0 12px;
  border-top: 1px solid var(--line);
}

.route-steps > div {
  position: relative;
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 13px;
  min-height: 65px;
}

.route-steps > div:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 31px;
  bottom: 0;
  width: 1px;
  background: #ddd;
}

.route-steps > div > span {
  position: relative;
  z-index: 1;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: #888;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: var(--white);
  font-size: 10px;
  font-weight: 900;
}

.route-steps .active > span {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.route-steps p,
.route-steps strong,
.route-steps small,
.route-note p,
.route-note strong,
.route-note small {
  display: block;
  margin: 0;
}

.route-steps strong {
  margin: 2px 0 4px;
  font-size: 13px;
}

.route-steps small,
.route-note small {
  color: var(--muted);
  font-size: 11px;
}

.route-note {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  margin: 0 22px 22px;
  padding: 15px;
  border-radius: 14px;
  background: var(--red-soft);
}

.route-note > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--red);
  border-radius: 50%;
  background: var(--white);
  font-weight: 900;
}

.route-note strong {
  margin-bottom: 4px;
  font-size: 12px;
}

.trust-strip {
  color: var(--white);
  background: var(--ink);
}

.trust-grid {
  min-height: 106px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.trust-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-grid > div > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
}

.trust-grid p,
.trust-grid strong,
.trust-grid small {
  display: block;
  margin: 0;
}

.trust-grid strong {
  margin-bottom: 4px;
  font-size: 13px;
}

.trust-grid small {
  color: #9d9da2;
  font-size: 11px;
}

.section {
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 54px;
}

.section-heading h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 14px 0 0;
  font-size: clamp(37px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-heading > p,
.faq-intro > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

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

.step-card {
  position: relative;
  min-height: 362px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(20, 20, 20, 0.09);
}

.step-card.featured {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.step-card.featured::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -75px;
  width: 190px;
  height: 190px;
  border: 38px solid rgba(181, 18, 27, 0.55);
  border-radius: 50%;
}

.step-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #d0cdca;
  font-size: 13px;
  font-weight: 900;
}

.step-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 17px;
  background: var(--red-soft);
  font-size: 25px;
}

.featured .step-icon {
  background: rgba(255, 255, 255, 0.11);
}

.step-card h3 {
  max-width: 280px;
  margin-bottom: 15px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.step-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.featured p {
  color: #b7b7bb;
}

.step-card > small {
  position: absolute;
  z-index: 1;
  left: 31px;
  right: 31px;
  bottom: 28px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
}

.featured > small {
  color: #ff989e;
}

.rates {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(181, 18, 27, 0.36), transparent 20%),
    linear-gradient(135deg, #171719, #26262a);
}

.rates-heading > p {
  color: #aaaab0;
}

.kicker-light {
  color: #ff777f;
}

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

.welcome-offer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 23px;
  margin: -12px 0 46px;
  padding: 24px 26px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(115deg, #fff5e9, #ffffff 58%);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
}

.welcome-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), #e94a19);
  font-size: 19px;
  font-weight: 950;
  transform: rotate(-4deg);
  box-shadow: 0 12px 24px rgba(233, 74, 25, 0.22);
}

.welcome-copy span {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.welcome-copy h3 {
  margin: 0 0 5px;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.welcome-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.welcome-price {
  display: flex;
  align-items: flex-start;
  color: var(--red);
  line-height: 0.8;
}

.welcome-price sup {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 900;
}

.welcome-price > strong {
  font-size: 52px;
  letter-spacing: -0.08em;
}

.welcome-price > span {
  display: flex;
  flex-direction: column;
  margin: 6px 0 0 4px;
  font-size: 21px;
  font-weight: 950;
}

.welcome-price small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-light {
  color: var(--white);
  background: var(--red);
  font-size: 11px;
}

.rate-card {
  min-height: 530px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: var(--white);
}

.rate-card.rate-primary {
  color: var(--white);
  background: linear-gradient(150deg, #d11a24, #9f0e17);
  transform: translateY(-12px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.rate-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 31px;
}

.rate-label span {
  padding: 7px 10px;
  color: var(--red);
  border-radius: 999px;
  background: var(--red-soft);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.rate-primary .rate-label span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

.rate-label small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.rate-primary .rate-label small {
  color: #ffd2d4;
}

.rate-card h3 {
  margin-bottom: 15px;
  font-size: 19px;
}

.price {
  display: flex;
  align-items: flex-start;
  margin-bottom: 22px;
  line-height: 0.8;
}

.price sup {
  margin-top: 12px;
  font-size: 22px;
  font-weight: 900;
}

.price > strong {
  font-size: 77px;
  letter-spacing: -0.08em;
}

.price > span {
  display: flex;
  flex-direction: column;
  margin: 10px 0 0 5px;
  font-size: 28px;
  font-weight: 900;
}

.price small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rate-primary .price small {
  color: #ffd2d4;
}

.rate-card > p {
  min-height: 70px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.rate-primary > p {
  color: #ffdfe1;
}

.rate-card ul {
  display: grid;
  gap: 13px;
  margin: 6px 0 28px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.rate-primary ul {
  border-color: rgba(255, 255, 255, 0.22);
}

.rate-card li {
  position: relative;
  padding-left: 25px;
  font-size: 12px;
  font-weight: 750;
}

.rate-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  color: var(--red);
  border-radius: 50%;
  background: var(--red-soft);
  font-size: 10px;
}

.rate-primary li::before {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

.rate-card .button {
  width: 100%;
  margin-top: auto;
  min-height: 47px;
  font-size: 12px;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-outline {
  border-color: #cbc8c3;
  background: transparent;
}

.rates-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
  padding: 18px 21px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.rates-note > span {
  color: #ff777f;
  font-size: 20px;
}

.rates-note p {
  margin: 0;
  color: #b9b9bd;
  font-size: 12px;
  line-height: 1.5;
}

.rates-note strong {
  color: var(--white);
}

.testimonials {
  background: var(--paper);
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: -16px 0 30px;
  padding: 19px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-right: 22px;
  border-right: 1px solid var(--line);
}

.reviews-score strong {
  font-size: 29px;
  letter-spacing: -0.05em;
}

.reviews-score span {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.reviews-source,
.reviews-source strong,
.reviews-source small {
  display: block;
  margin: 0;
}

.reviews-source strong {
  margin-bottom: 4px;
  font-size: 13px;
}

.reviews-source small {
  color: var(--muted);
  font-size: 10px;
}

.reviews-source:hover small {
  color: var(--red);
}

.reviews-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-left: auto;
}

.reviews-cities span {
  padding: 7px 11px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 9px;
  font-weight: 800;
}

.reviews-carousel {
  overflow: hidden;
}

.reviews-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-viewport::-webkit-scrollbar {
  display: none;
}

.reviews-track {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.review-card {
  min-width: calc((100% - 40px) / 3);
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  scroll-snap-align: start;
  box-shadow: 0 12px 28px rgba(24, 24, 24, 0.04);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.review-top > span {
  padding: 6px 9px;
  color: #3076d3;
  border-radius: 999px;
  background: #edf4ff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stars {
  margin-bottom: 0;
  color: var(--orange);
  font-size: 15px;
  letter-spacing: 0.15em;
}

.review-card blockquote {
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.6;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.reviewer > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--red);
  border-radius: 50%;
  background: var(--red-soft);
  font-size: 11px;
  font-weight: 950;
}

.reviewer p,
.reviewer strong,
.reviewer small {
  display: block;
  margin: 0;
}

.reviewer strong {
  margin-bottom: 4px;
  font-size: 12px;
}

.reviewer small {
  color: var(--muted);
  font-size: 10px;
}

.reviews-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
  margin-top: 25px;
}

.reviews-progress {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}

.reviews-progress span:first-child {
  color: var(--red);
}

.reviews-progress i {
  width: 45px;
  height: 1px;
  background: #c9c6c1;
}

.reviews-controls > p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.reviews-controls > div:last-child {
  display: flex;
  gap: 8px;
}

.carousel-button {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  transition: color 180ms ease, border 180ms ease, transform 180ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-2px);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 9vw;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro > p {
  margin: 22px 0 25px;
}

.text-link {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.text-link span {
  display: inline-block;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 82px;
  padding-right: 45px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 800;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span,
.accordion summary span::after {
  position: absolute;
  width: 15px;
  height: 2px;
  background: var(--red);
}

.accordion summary span {
  right: 9px;
}

.accordion summary span::after {
  content: "";
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.accordion details[open] summary span::after {
  transform: rotate(0);
}

.accordion details p {
  max-width: 680px;
  margin: -5px 0 27px;
  padding-right: 45px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  color: var(--white);
  background: var(--red);
}

.contact::before {
  content: "";
  position: absolute;
  left: -150px;
  bottom: -220px;
  width: 510px;
  height: 510px;
  border: 100px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 9vw;
}

.contact-copy > p {
  margin: 24px 0 30px;
  color: #ffd3d5;
}

.contact-benefits {
  display: grid;
  gap: 19px;
}

.contact-benefits > div {
  display: grid;
  grid-template-columns: 33px 1fr;
  gap: 12px;
}

.contact-benefits > div > span {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  color: var(--red);
  border-radius: 50%;
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.contact-benefits p,
.contact-benefits strong,
.contact-benefits small {
  display: block;
  margin: 0;
}

.contact-benefits strong {
  margin-bottom: 4px;
  font-size: 13px;
}

.contact-benefits small {
  color: #f9bec1;
  font-size: 11px;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  color: var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 28px 60px rgba(81, 0, 5, 0.25);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 850;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #d7d4cf;
  border-radius: 11px;
  background: #fbfaf8;
  color: var(--ink);
  outline: none;
  transition: border 180ms ease, box-shadow 180ms ease;
}

.quote-form input,
.quote-form select {
  height: 48px;
  padding: 0 13px;
}

.quote-form textarea {
  min-height: 105px;
  padding: 13px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(181, 18, 27, 0.09);
}

.input-prefix {
  position: relative;
}

.input-prefix > span {
  position: absolute;
  z-index: 1;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-weight: 800;
}

.input-prefix input {
  padding-left: 29px;
}

.button-submit {
  width: 100%;
  margin-top: 3px;
  border: 0;
}

.wa-mark {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--red);
  border-radius: 50%;
  background: var(--white);
  font-size: 8px;
  font-weight: 950;
}

.privacy-note {
  margin: -5px 0 0;
  color: #85858a;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.form-status {
  display: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.form-status.show {
  display: block;
  color: #146b40;
  background: #e6f8ef;
}

.site-footer {
  padding: 64px 0 24px;
  color: #d1d1d4;
  background: #101011;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 0.9fr;
  gap: 70px;
  padding-bottom: 45px;
}

.brand-footer {
  margin-bottom: 17px;
  color: var(--white);
}

.footer-grid > div:first-child > p {
  max-width: 340px;
  color: #858589;
  font-size: 12px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-links strong {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: #88888c;
  font-size: 11px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 23px;
  border-top: 1px solid #28282b;
  color: #69696e;
  font-size: 10px;
}

.floating-cta {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px 9px 9px;
  color: var(--white);
  border: 3px solid var(--white);
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(15, 77, 42, 0.28);
  font-size: 11px;
}

.floating-cta span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #168143;
  border-radius: 50%;
  background: var(--white);
  font-size: 8px;
  font-weight: 950;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-short {
  transition-delay: 100ms;
}

.reveal-delay {
  transition-delay: 200ms;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    gap: 0;
    padding: 20px;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 16px 6px;
    border-bottom: 1px solid var(--line);
  }

  .menu-button {
    width: 42px;
    height: 42px;
    display: grid;
    align-content: center;
    gap: 5px;
    margin-left: auto;
    padding: 0 11px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
  }

  .menu-button > span:not(.sr-only) {
    width: 100%;
    height: 2px;
    background: var(--ink);
  }

  .nav-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-copy {
    max-width: 740px;
  }

  .route-card {
    max-width: 610px;
  }

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

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .steps-grid,
  .rates-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid > :last-child,
  .rates-grid > :last-child {
    grid-column: 1 / -1;
  }

  .review-card {
    min-width: calc((100% - 20px) / 2);
  }

  .rates-grid > :last-child {
    min-height: 460px;
  }

  .rate-card.rate-primary {
    transform: none;
  }

  .welcome-offer {
    grid-template-columns: auto 1fr auto;
  }

  .welcome-offer .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-intro {
    position: static;
  }

  .contact-copy {
    max-width: 650px;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 30px, 1160px);
    --radius: 19px;
  }

  .site-header {
    height: 68px;
  }

  .main-nav {
    inset: 68px 0 auto;
  }

  .brand span {
    font-size: 19px;
  }

  .brand img {
    width: 39px;
    height: 39px;
  }

  .brand small {
    font-size: 9px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 70px 0 62px;
    gap: 45px;
  }

  h1 {
    margin-top: 18px;
    font-size: clamp(43px, 13.2vw, 61px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 35px;
  }

  .hero-proof div,
  .hero-proof div:first-child {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 8px;
    padding: 0 0 15px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .route-map {
    gap: 8px;
    padding-inline: 19px;
  }

  .country {
    min-width: 85px;
  }

  .country strong {
    font-size: 11px;
  }

  .route-top {
    padding-inline: 18px;
  }

  .trust-grid,
  .steps-grid,
  .rates-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div,
  .trust-grid > div:first-child,
  .trust-grid > div:last-child {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .steps-grid > :last-child,
  .rates-grid > :last-child {
    grid-column: auto;
  }

  .reviews-summary {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .reviews-cities {
    width: 100%;
    margin-left: 0;
  }

  .review-card {
    min-width: 100%;
    min-height: 365px;
  }

  .reviews-controls {
    grid-template-columns: 1fr auto;
  }

  .reviews-controls > p {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 38px;
  }

  .section-heading h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: 39px;
  }

  .rate-card,
  .rates-grid > :last-child {
    min-height: 510px;
  }

  .welcome-offer {
    grid-template-columns: auto 1fr;
    gap: 18px;
    margin-bottom: 32px;
    padding: 21px;
  }

  .welcome-price {
    grid-column: 1 / -1;
  }

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

  .quote-form {
    padding: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    gap: 15px;
    flex-direction: column;
  }

  .floating-cta {
    right: 14px;
    bottom: 14px;
  }
}
