@font-face {
  font-family: "Proxima Nova";
  src: url("fonts/ProximaNova-Regular.eot");
  src: url("fonts/ProximaNova-Regular.eot?#iefix") format("embedded-opentype"),
    url("fonts/ProximaNova-Regular.woff") format("woff"),
    url("fonts/ProximaNova-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("fonts/ProximaNova-Bold.eot");
  src: url("fonts/ProximaNova-Bold.eot?#iefix") format("embedded-opentype"),
    url("fonts/ProximaNova-Bold.woff2") format("woff2"),
    url("fonts/ProximaNova-Bold.woff") format("woff"),
    url("fonts/ProximaNova-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova Bold";
  src: url("fonts/ProximaNova-Bold.eot");
  src: url("fonts/ProximaNova-Bold.eot?#iefix") format("embedded-opentype"),
    url("fonts/ProximaNova-Bold.woff2") format("woff2"),
    url("fonts/ProximaNova-Bold.woff") format("woff"),
    url("fonts/ProximaNova-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Magistral";
  src: url("fonts/Magistral-Bold.eot");
  src: url("fonts/Magistral-Bold.eot?#iefix") format("embedded-opentype"),
    url("fonts/Magistral-Bold.woff2") format("woff2"),
    url("fonts/Magistral-Bold.woff") format("woff"),
    url("fonts/Magistral-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Magistral  Bold";
  src: url("fonts/Magistral-Bold.eot");
  src: url("fonts/Magistral-Bold.eot?#iefix") format("embedded-opentype"),
    url("fonts/Magistral-Bold.woff2") format("woff2"),
    url("fonts/Magistral-Bold.woff") format("woff"),
    url("fonts/Magistral-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Magistral";
  src: url("fonts/Magistral-ExtraBoldItalic.eot");
  src: url("fonts/Magistral-ExtraBoldItalic.eot?#iefix") format("embedded-opentype"),
    url("fonts/Magistral-ExtraBoldItalic.woff2") format("woff2"),
    url("fonts/Magistral-ExtraBoldItalic.woff") format("woff"),
    url("fonts/Magistral-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Magistral Extra Bold Italic";
  src: url("fonts/Magistral-ExtraBoldItalic.eot");
  src: url("fonts/Magistral-ExtraBoldItalic.eot?#iefix") format("embedded-opentype"),
    url("fonts/Magistral-ExtraBoldItalic.woff2") format("woff2"),
    url("fonts/Magistral-ExtraBoldItalic.woff") format("woff"),
    url("fonts/Magistral-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #162136;
  --green: #009241;
  --green-2: #009846;
  --paper: #ffffff;
  --soft: #efefef;
  --soft-2: #f7f9fc;
  --line: #d6d9e0;
  --muted: #687082;
  --pale-green: #def0d9;
  --shadow: 0 4px 8px rgba(0, 0, 0, .08);
  --container: 1260px;
  font-family: "Proxima Nova", Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Proxima Nova", Arial, sans-serif; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease, transform .2s ease; }
button, input, select { font: inherit; }
a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(0, 146, 65, .35);
  outline-offset: 3px;
}

.page { overflow: hidden; }
.wrap { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.title-font { font-family: "Magistral", "Magistral  Bold", "Arial Black", Arial, sans-serif; font-weight: 700; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn.secondary { background: #fff; color: var(--green); border-color: var(--line); }
.btn:hover {
  transform: translateY(-2px);
  background: #007f38;
  box-shadow: 0 10px 24px rgba(0, 146, 65, .22);
}
.btn.secondary:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.btn:active { transform: translateY(0); box-shadow: none; }

.hero-shell {
  background: var(--soft);
  border-radius: 0 0 16px 16px;
  padding: 10px 0 40px;
}
.hero  { width: min(var(--container), calc(100% - 40px)); margin: -40px auto; }
.currency-strip { width: min(var(--container), calc(100% - 40px)); margin: 10px auto; }
.topline, .nav, .benefits, .hero-feature-cards { width: min(var(--container), calc(100% - 40px)); margin: 40px auto; }
.topline { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { height: 35px; width: 363px; object-fit: contain; }
.top-actions { display: flex; align-items: center; gap: 20px; font-size: 16px; }
.top-actions a:not(.btn):hover, .nav-links a:hover, .footer a:hover { color: var(--green); }
.nav-links a:hover { color: var(--pale-green); }
.city { display: flex; gap: 6px; align-items: center; }
.eye { width: 48px; height: 48px; border-radius: 24px; background: #d7d7d7; display: grid; place-items: center; transition: background-color .2s ease, transform .2s ease; }
.eye img { width: 26px; }
.visually { display: flex; align-items: center; gap: 10px; line-height: 1.2; }
.visually:hover .eye { background: var(--pale-green); transform: scale(1.05); }

.nav {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 12px 20px 12px 40px;
  background: var(--green-2);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
}
.nav-links, .nav-actions { display: flex; align-items: center; gap: 30px; }
.nav-actions { gap: 20px; }
.phone { display: flex; flex-direction: column; gap: 4px; font-weight: 400; color: #f3f3f3; font-size: 13px; }
.phone strong { font-size: 20px; color: #fff; font-family: "Magistral", "Magistral  Bold", "Arial Black", Arial, sans-serif; letter-spacing: .6px; }
.menu { display: grid; gap: 6px; justify-items: center; font-weight: 400; border: 0; background: transparent; color: inherit; cursor: pointer; transition: color .2s ease, transform .2s ease; }
.menu span { width: 40px; height: 4px; background: #fff; border-radius: 1px; display: block; transition: transform .2s ease, background-color .2s ease; }
.menu small { font-size: 14px; }
.menu:hover { color: var(--pale-green); transform: translateY(-1px); }
.menu:hover span { background: var(--pale-green); }
.menu:hover span:first-child { transform: translateX(-4px); }
.menu:hover span:last-of-type { transform: translateX(4px); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 448px;
}
.breadcrumbs { color: #b0b0b0; font-size: 16px; margin-bottom: 82px; }
.hero h1 { font-size: 42px; line-height: 1.2; margin: 0 0 22px; text-transform: uppercase; letter-spacing: 0; }
.hero p { font-size: 18px; margin: 0 0 40px; line-height: 1.2; }
.hero-visual { mix-blend-mode: multiply; }
.hero-visual img { width: 100%; height: 448px; object-fit: contain; }

.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit { min-height: 92px; display: flex; align-items: center; padding: 24px; background: #fff; border-radius: 8px; font-size: 18px; line-height: 1.2; }

.hero-feature-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 20px 0 0;
}
.hero-feature-card {
  min-height: 178px;
  padding: 24px 30px 30px;
  border-radius: 16px;
  background: rgba(222, 240, 217, .6);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.hero-feature-card:hover {
  transform: translateY(-4px);
  background: rgba(222, 240, 217, .85);
  box-shadow: 0 14px 30px rgba(22, 33, 54, .12);
}
.hero-feature-card h2 {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.hero-feature-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}
.hero-feature-icon {
  align-self: flex-end;
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform .25s ease, filter .25s ease;
}
.hero-feature-card:hover .hero-feature-icon {
  transform: translateY(-3px) rotate(-4deg) scale(1.08);
  filter: drop-shadow(0 8px 12px rgba(0, 146, 65, .18));
}
.currency-strip { display: grid; grid-template-columns: repeat(7, 120px); justify-content: space-between; gap: 20px; padding: 60px 0 0; }
.currency { text-align: center; font-weight: 700; font-size: 16px; line-height: 1.2; transition: color .2s ease, transform .2s ease; }
.currency:hover { color: var(--green); transform: translateY(-4px); }
.currency-icon { height: 120px; width: 120px; border-radius: 24px; background: var(--soft); overflow: hidden; margin: 0 auto 12px; display: grid; place-items: center; transition: box-shadow .2s ease, transform .2s ease, background-color .2s ease; }
.currency:hover .currency-icon { background: #e8f5e4; box-shadow: 0 14px 30px rgba(22, 33, 54, .12); transform: scale(1.03); }
.currency-icon:before {
  content: "";
  width: 88px;
  height: 88px;
  background-image: url("assets/currency-sprite.png");
  background-repeat: no-repeat;
  background-size: 306px 306px;
  display: block;
}
.currency-icon.usd:before { background-position: -12px -14px; }
.currency-icon.eur:before { background-position: -109px -14px; }
.currency-icon.gbp:before { background-position: -207px -14px; }
.currency-icon.cny:before { background-position: -61px -111px; }
.currency-icon.chf:before { background-position: -158px -111px; }
.currency-icon.aed:before { background-position: -14px -204px; }
.currency-icon.try:before { background-position: -109px -204px; }
.currency small { color: #b7b7b7; font-size: 14px; }

main { padding: 80px 0 90px; }
.stack { display: grid; gap: 120px; }
.section-title { font-size: 36px; line-height: 1.2; letter-spacing: 0; margin: 0 0 40px; }

.exchange-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 550px;
  gap: 20px;
  align-items: stretch;
}
.exchange-steps {
  display: grid;
  gap: 20px;
  min-width: 0;
}
.exchange-step {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.step-number {
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--pale-green);
  color: var(--ink);
  font-family: "Magistral Extra Bold Italic", "Magistral", "Arial Black", Arial, sans-serif;
  font-size: 32px;
  font-weight: 800;
  font-style: italic;
  line-height: 30px;
  text-align: center;
}
.exchange-copy {
  display: grid;
  gap: 20px;
  min-width: 0;
  flex: 1 1 auto;
}
.exchange-copy h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}
.exchange-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}
.exchange-promo {
  width: 550px;
  max-width: 100%;
  border-radius: 16px;
  background: var(--soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}
.exchange-promo h3 {
  width: min(328px, calc(100% - 48px));
  margin: 0;
  padding: 32px 0;
  color: var(--green);
  font-size: 38px;
  line-height: 1.2;
  text-align: center;
}
.exchange-promo-visual {
  flex: 1 1 auto;
  width: 100%;
  min-height: 420px;
  mix-blend-mode: multiply;
  object-fit: cover;
  object-position: center;
}

.trust-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px;
  background: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 16px;
  align-items: stretch;
}
.award-main, .award-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 240px;
  background: var(--soft-2);
  padding: 32px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.35;
}
.award-main {
  grid-column: 1 / -1;
  min-height: 311px;
  border-radius: 8px;
  padding: 94px 44px;
  background: var(--soft);
  font-size: 28px;
  line-height: 1.5;
}
.award-main .award-dots { position: absolute; right: -74px; bottom: 10px; width: 480px; height: 277px; object-fit: contain; }
.award-main .award-cup { position: absolute; right: 297px; top: 44px; width: 223px; height: 223px; object-fit: contain; }
.award-card {
  background: rgba(222, 240, 217, .6);
  min-height: 255px;
  border-radius: 8px;
  padding: 32px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 22px;
}
.award-card img { width: 150px; position: absolute; top: 16px; right: 16px; }
.award-card p { margin: 0; font-weight: 400; font-size: 22px; line-height: 1.5; }
.pin {
  position: absolute;
  right: 31px;
  top: 24px;
  width: 70px;
  height: 70px;
  border-radius: 50% 50% 50% 0;
  background: #ff4038;
  transform: rotate(-45deg);
}
.pin:after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  left: 24px;
  top: 24px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 20px;
  height: 622px;
  overflow: hidden;
}
.offer {
  min-height: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--soft);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.offer:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(22, 33, 54, .12);
  background: #f5f5f5;
}
.offer.feature { grid-row: 1 / span 3; flex-direction: column; padding: 32px; }
.offer-copy { padding: 0; }
.offer h3 { margin: 0 0 20px; font-size: 24px; line-height: 1.2; }
.offer h3 span { color: var(--green); }
.offer p { margin: 0; line-height: 1.4; font-size: 18px; }
.offer img { align-self: stretch; width: 130px; height: 130px; object-fit: contain; }
.offer.feature img { align-self: center; width: 556px; max-width: 100%; height: 300px; object-fit: contain; }

.faq {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 33px;
  max-width: none;
  background: #fff;
}
.faq .section-title { margin-bottom: 40px; }
.faq-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 17px 0 16px;
  border-top: 1px solid #f1f1f3;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
  transition: color .2s ease, padding-left .2s ease;
}
.faq-item:first-of-type .faq-row { border-top: 0; }
.faq-row:hover { color: var(--green); padding-left: 8px; }
.plus { flex: 0 0 auto; width: 32px; height: 32px; border: 1px solid var(--green-2); border-radius: 50%; position: relative; transition: background-color .2s ease, transform .2s ease; }
.plus:before, .plus:after { content: ""; position: absolute; background: var(--green-2); left: 8px; right: 8px; top: 15px; height: 1px; transition: transform .2s ease, opacity .2s ease, background-color .2s ease; }
.plus:after { transform: rotate(90deg); }
.faq-row:hover .plus { background: var(--green); transform: rotate(90deg); }
.faq-row:hover .plus:before, .faq-row:hover .plus:after { background: #fff; }
.faq-item.is-open .plus { background: var(--green); transform: rotate(180deg); }
.faq-item.is-open .plus:before { background: #fff; }
.faq-item.is-open .plus:after { opacity: 0; transform: rotate(90deg) scaleX(.4); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #4b5565;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0;
  transition: max-height .28s ease, opacity .2s ease, padding .28s ease;
}
.faq-answer p { margin: 0; max-width: 820px; }
.faq-item.is-open .faq-answer {
  max-height: 180px;
  padding: 0 56px 18px 0;
  opacity: 1;
}

.text-section { max-width: 1000px; }
.text-section p { font-size: 18px; line-height: 1.6; margin: 0 0 16px; }

.articles { display: grid; gap: 24px; justify-items: center; }
.articles-head { justify-self: stretch; }
.article-grid { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.article-card { display: grid; gap: 20px; min-width: 0; }
.article-card img { width: 100%; aspect-ratio: 300 / 147; border-radius: 16px; object-fit: cover; transition: transform .2s ease, box-shadow .2s ease; }
.article-card time { color: var(--muted); font-size: 13px; letter-spacing: 1px; }
.article-card p { margin: 0; font-size: 18px; line-height: 1.4; }
.article-card:hover img { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(22, 33, 54, .14); }

/* Scroll reveal animations */
.reveal-on-scroll {
  opacity: 0;
  transform: var(--reveal-active-transform, var(--reveal-transform, translateY(34px)));
  transition:
    opacity var(--reveal-duration, .75s) ease,
    transform var(--reveal-duration, .75s) cubic-bezier(.2, .72, .2, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  --reveal-active-transform: translate3d(0, 0, 0);
}
.reveal-rise { --reveal-transform: translateY(34px); }
.reveal-left { --reveal-transform: translateX(-42px); }
.reveal-right { --reveal-transform: translateX(42px); }
.reveal-zoom { --reveal-transform: scale(.96); }
.reveal-pop {
  --reveal-transform: translateY(24px) scale(.96);
  --reveal-duration: .65s;
}

.reserve { display: grid; grid-template-columns: 550px 690px; gap: 20px; align-items: stretch; }
.reserve-form {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  background: #fff;
  display: grid;
  gap: 30px;
}
.reserve-form h2 { margin: 0; font-size: 28px; line-height: 1.2; letter-spacing: -.32px; }
.reserve-form h2 span { display: inline-flex; align-items: center; margin-top: 4px; color: var(--green-2); font-size: 28px; }
.tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 6px; background: var(--soft); border-radius: 12px; }
.tabs button { border: 0; border-radius: 8px; padding: 12px 24px; background: transparent; color: var(--ink); font-weight: 700; letter-spacing: 1px; cursor: pointer; }
.tabs button.active { background: var(--ink); color: #fff; }
.field { min-height: 56px; border: 1px solid #d5d9de; border-radius: 8px; display: flex; align-items: center; overflow: hidden; color: #747e89; }
.field input, .field select { width: 100%; border: 0; outline: 0; padding: 16px 20px; background: transparent; color: var(--ink); }
.field select { border-left: 1px solid #d5d9de; max-width: 120px; }
.agree { display: flex; gap: 10px; align-items: flex-start; line-height: 1.25; font-size: 16px; }
.box { flex: 0 0 auto; width: 20px; height: 20px; border: 1px solid var(--green-2); border-radius: 4px; }
.agree a { text-decoration: underline; }
.safe { display: flex; gap: 5px; color: var(--muted); font-size: 16px; align-items: center; }
.info-card { background: var(--soft); border-radius: 16px; overflow: hidden; padding: 32px 20px 0; display: flex; flex-direction: column; gap: 30px; }
.info-card h3 { margin: 0; max-width: 500px; font-size: 24px; line-height: 1.2; }
.info-card p { margin: 0; max-width: 500px; font-size: 18px; line-height: 1.2; }
.info-card img { width: 100%; margin-top: auto; object-fit: contain; }
.reserve-side { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.phone-card {
  min-height: 151px;
  padding: 40px;
  background: rgba(222, 240, 217, .6);
  border-radius: 16px;
  display: grid;
  gap: 30px;
}
.phone-card strong {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--green-2);
  font-family: "Magistral", "Magistral  Bold", "Arial Black", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}
.phone-card img { width: 29px; height: 29px; }
.phone-card p { margin: 0; font-size: 18px; line-height: 1.4; }

.footer { background: #f3f3f3; padding: 44px 0 34px; color: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1.4fr 1fr; gap: 50px; align-items: start; font-size: 16px; line-height: 1.45; }
.footer strong { display: block; margin-bottom: 8px; }
.footer .phone-main { color: var(--green); font-size: 26px; font-weight: 700; font-family: "Magistral", "Magistral  Bold", "Arial Black", Arial, sans-serif; }
.footer-bottom { border-top: 1px solid #d7d7d7; margin-top: 34px; padding-top: 24px; text-align: center; font-size: 14px; color: #687082; }

@media (max-width: 1100px) {
  .top-actions, .nav-links { display: none; }
  .nav { padding-left: 20px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 34px 0; }
  .breadcrumbs { margin-bottom: 42px; }
  .hero-visual { order: -1; }
  .hero-visual img { height: 300px; }
  .benefits, .hero-feature-cards { grid-template-columns: repeat(2, 1fr); }
  .currency-strip { overflow-x: auto; justify-content: start; padding-bottom: 8px; }
  .exchange-layout, .trust-grid, .offers-grid, .article-grid, .reserve, .footer-grid { grid-template-columns: 1fr; }
  .exchange-promo { width: 100%; }
  .exchange-promo-visual { min-height: 360px; }
  .award-main { grid-column: auto; }
  .offers-grid { height: auto; grid-template-rows: none; }
  .offer.feature { grid-row: auto; }
  .reserve { gap: 20px; }
  .faq { max-width: none; }
}

@media (max-width: 640px) {
  .wrap, .topline, .nav, .hero, .benefits, .hero-feature-cards, .currency-strip { width: calc(100% - 32px); }
  .hero-shell { padding-top: 16px; }
  .logo { width: 220px; height: auto; }
  .nav-actions .phone, .nav-actions .btn { display: none; }
  .hero h1 { font-size: 30px; }
  .section-title { font-size: 26px; }
  .benefits, .hero-feature-cards { grid-template-columns: 1fr; }
  .benefit { min-height: 72px; font-size: 16px; }
  .hero-feature-card {
    min-height: 150px;
    padding: 22px 24px 24px;
    gap: 28px;
  }
  main { padding: 60px 0; }
  .stack { gap: 70px; }
  .exchange-layout { gap: 16px; }
  .exchange-step {
    gap: 20px;
    padding: 24px 20px;
    border-radius: 16px;
  }
  .step-number {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
  .exchange-copy h3 { font-size: 20px; }
  .exchange-copy p { font-size: 16px; line-height: 1.5; }
  .exchange-promo h3 {
    width: calc(100% - 40px);
    padding: 28px 0 20px;
    font-size: 28px;
  }
  .exchange-promo-visual { min-height: 300px; }
  .trust-panel { padding: 0; border: 0; }
  .award-main, .award-card, .offer, .reserve-form { padding: 20px; border-radius: 16px; }
  .award-main { min-height: 240px; font-size: 18px; }
  .award-main .award-dots { width: 160px; right: 0; }
  .award-main .award-cup { width: 110px; height: 110px; right: 80px; top: auto; bottom: 20px; }
  .award-card { min-height: 140px; }
  .award-card p { font-size: 12px; line-height: 1.2; }
  .award-card img { width: 72px; }
  .offer.feature { padding: 0; }
  .offer.feature img { height: 300px; }
  .offer { flex-direction: column; }
  .faq { padding: 32px 24px; }
  .faq-row { font-size: 16px; }
  .text-section p { font-size: 16px; }
  .article-grid { display: flex; overflow-x: auto; padding-bottom: 10px; }
  .article-card { min-width: 280px; }
  .reserve-form h2 { font-size: 24px; }
  .reserve-form h2 span { font-size: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
