:root {
  --call-ink: #18211f;
  --call-muted: #66716e;
  --call-red: #d95349;
  --call-cream: #f3f0e9;
  --call-soft: #f8f7f3;
  --call-line: #dce1de;
  --call-green: #193f36;
  --call-gold: #e0b46b;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--call-ink);
  background: #fff;
  font-family: Arial, "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}
.call-page {
  padding-bottom: 88px;
}
.call-hero,
.call-topics,
.call-formats,
.call-process,
.call-terms {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}
.call-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 72px;
  padding: 64px;
  border-radius: 24px;
  background: var(--call-cream);
}
.call-back {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--call-red);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.call-kicker {
  margin: 0 0 13px;
  color: var(--call-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.call-hero h1,
.call-section-head h2,
.call-terms h2 {
  margin: 0;
  letter-spacing: -0.04em;
}
.call-hero h1 {
  max-width: 760px;
  font-size: clamp(38px, 4.3vw, 58px);
  line-height: 1.02;
}
.call-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: #46534f;
  font-size: 18px;
  line-height: 1.55;
}
.call-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.call-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.15s,
    background 0.15s;
}
.call-button:hover {
  transform: translateY(-1px);
}
.call-button--primary {
  color: #fff;
  background: var(--call-red);
}
.call-button--secondary {
  border-color: #aeb7b3;
  color: var(--call-ink);
  background: transparent;
}
.call-button--dark {
  color: #fff;
  background: var(--call-ink);
}
.call-hero__aside {
  align-self: end;
  padding-top: 24px;
  border-top: 1px solid #cbd0ca;
}
.call-hero__aside > p {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.5;
}
.call-hero__aside dl {
  margin: 0;
}
.call-hero__aside dl div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid #d2d5d0;
}
.call-hero__aside dt {
  color: var(--call-muted);
  font-size: 12px;
}
.call-hero__aside dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}
.call-topics {
  padding: 72px 0 56px;
}
.call-section-head {
  display: block;
  max-width: 760px;
}
.call-section-head .call-kicker {
  margin-bottom: 14px;
}
.call-section-head h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.06;
}
.call-section-head > p:last-child:not(.call-kicker) {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--call-muted);
  line-height: 1.55;
}
.call-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
  border-block: 1px solid var(--call-line);
}
.call-topic-grid article {
  padding: 28px 26px 30px;
  border-right: 1px solid var(--call-line);
}
.call-topic-grid article:last-child {
  border-right: 0;
}
.call-topic-grid span {
  color: #9aa5a1;
  font-size: 11px;
}
.call-topic-grid h3 {
  margin: 30px 0 10px;
  font-size: 20px;
}
.call-topic-grid p {
  margin: 0;
  color: var(--call-muted);
  font-size: 14px;
  line-height: 1.55;
}
.call-formats {
  padding: 56px 64px;
  border-radius: 24px;
  color: #fff;
  background: var(--call-green);
}
.call-section-head--light .call-kicker {
  color: var(--call-gold);
}
.call-section-head.call-section-head--light
  > p:last-child:not(.call-kicker) {
  color: #d7e1dd;
}
.call-format-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.call-format-card {
  display: flex;
  min-height: 450px;
  flex-direction: column;
  padding: 34px;
  border-radius: 18px;
  color: var(--call-ink);
  background: #fff;
}
.call-format-card--paid {
  background: #f2e8d7;
}
.call-format-card > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
}
.call-format-label {
  margin: 0;
  color: var(--call-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.call-format-card > div > strong {
  font-size: 24px;
  white-space: nowrap;
}
.call-format-card h3 {
  margin: 42px 0 12px;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.call-format-card > p {
  margin: 0;
  color: var(--call-muted);
  line-height: 1.55;
}
.call-format-card ul {
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
}
.call-format-card li {
  position: relative;
  margin-top: 10px;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.45;
}
.call-format-card li:before {
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--call-red);
  content: "";
}
.call-format-card .call-button {
  align-self: flex-start;
  margin-top: auto;
}
.call-process {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  padding: 88px 0;
}
.call-process .call-section-head {
  display: block;
}
.call-process ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--call-line);
  list-style: none;
}
.call-process li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--call-line);
}
.call-process li > span {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid #aeb7b3;
  border-radius: 50%;
  font-size: 12px;
}
.call-process h3 {
  margin: 2px 0 7px;
  font-size: 18px;
}
.call-process li p {
  margin: 0;
  color: var(--call-muted);
  line-height: 1.5;
}
.call-terms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  padding: 52px 64px;
  border-radius: 24px;
  background: var(--call-soft);
}
.call-terms h2 {
  max-width: 570px;
  font-size: 36px;
  line-height: 1.08;
}
.call-terms > div > p:last-child {
  max-width: 600px;
  margin: 20px 0 0;
  color: var(--call-muted);
  line-height: 1.6;
}
.call-terms aside {
  align-self: end;
  padding-top: 22px;
  border-top: 1px solid var(--call-line);
}
.call-terms aside > p {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
}
.call-payment-standard {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 34px;
}
.call-payment-standard__label {
  color: var(--call-muted);
  font-size: 11px;
  font-weight: 600;
}
.call-payment-standard > img {
  display: block;
  width: auto;
  max-width: 36px;
  height: 20px;
  object-fit: contain;
}
.call-payment-standard .call-payment-standard__paypal {
  width: 68px;
  max-width: 68px;
  height: auto;
}
.call-payment-standard__usdt {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
}
.call-payment-standard__usdt img {
  width: 20px;
  height: 20px;
}
.call-terms aside > .call-payment-more {
  margin: 16px 0 0;
  color: var(--call-muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}
.call-terms small {
  display: block;
  margin-top: 16px;
  color: var(--call-muted);
  line-height: 1.45;
}
.call-page + .site-footer {
  margin-top: 0;
}
.call-page + .site-footer .site-footer__tripadvisor,
.call-page + .site-footer .site-footer__socials {
  display: none !important;
}
@media (max-width: 900px) {
  .call-hero {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 48px;
  }
  .call-topics {
    padding: 70px 0;
  }
  .call-section-head,
  .call-process {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .call-section-head .call-kicker {
    grid-row: auto;
  }
  .call-topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .call-topic-grid article:nth-child(2) {
    border-right: 0;
  }
  .call-topic-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--call-line);
  }
  .call-formats {
    padding: 48px;
  }
  .call-process {
    gap: 36px;
  }
  .call-terms {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 48px;
  }
}
@media (max-width: 640px) {
  .call-page {
    padding-bottom: 64px;
  }
  .call-hero,
  .call-topics,
  .call-formats,
  .call-process,
  .call-terms {
    width: calc(100% - 32px);
  }
  .call-hero {
    padding: 30px 20px;
    border-radius: 18px;
  }
  .call-back {
    margin-bottom: 30px;
  }
  .call-hero h1 {
    font-size: 34px;
  }
  .call-lead {
    font-size: 16px;
  }
  .call-hero__actions {
    display: grid;
  }
  .call-button {
    width: 100%;
    box-sizing: border-box;
  }
  .call-topic-grid {
    grid-template-columns: 1fr;
  }
  .call-topic-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--call-line);
  }
  .call-topic-grid article:last-child {
    border-bottom: 0;
  }
  .call-formats {
    padding: 34px 18px;
    border-radius: 18px;
  }
  .call-format-grid {
    grid-template-columns: 1fr;
  }
  .call-format-card {
    min-height: 0;
    padding: 26px 20px;
  }
  .call-format-card h3 {
    margin-top: 34px;
    font-size: 25px;
  }
  .call-format-card .call-button {
    width: 100%;
  }
  .call-process {
    padding: 64px 0;
  }
  .call-terms {
    padding: 34px 20px;
    border-radius: 18px;
  }
  .call-terms h2 {
    font-size: 29px;
  }
}
