@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --page-bg: #eaf3ff;
  --nav-bg: #0f0616;
  --text: #000000;
  --white: #ffffff;
  --blue: #005cd7;
  --muted-white: rgba(255, 255, 255, 0.7);
  --card-bg: rgba(228, 228, 228, 0.6);
  --gradient: linear-gradient(180deg, #4bacff 0%, #584cff 100%);
  --max-page-width: 100%;
  --content-width: 1200px;
  --radius-large: 20px;
  --radius-xl: 25px;
  --shadow-soft: 14px 14px 23.2px rgba(0, 0, 0, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  max-width: var(--max-page-width);
  margin: 0 auto;
}

.container {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
}

.navbar {
  background: var(--nav-bg);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 102px;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
  width: 230px;
}

.brand img {
  width: 230px;
  height: 102px;
  object-fit: cover;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 31px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 20px;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: var(--gradient);
  box-shadow: 0 12px 24px rgba(88, 76, 255, 0.24);
  transform: translateY(-1px);
}

.nav-link.is-active {
  background: var(--gradient);
  box-shadow: 0 12px 24px rgba(88, 76, 255, 0.24);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--gradient);
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 12px 24px rgba(88, 76, 255, 0.24);
  transform: translateY(-1px);
}

.button-small {
  min-height: 48px;
  padding: 10px 20px;
}

.nav-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--gradient);
  box-shadow: 0 12px 24px rgba(88, 76, 255, 0.28);
  cursor: pointer;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  width: 25px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition:
    transform 0.28s ease,
    opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) {
  top: 12px;
}

.nav-toggle span:nth-child(2) {
  top: 21px;
}

.nav-toggle span:nth-child(3) {
  top: 30px;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(88, 76, 255, 0.34);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-overlay {
  display: none;
}

.hero-panel {
  min-height: 548px;
  border-bottom-left-radius: var(--radius-xl);
  border-bottom-right-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(8, 18, 103, 0.12) 0%, rgba(8, 18, 103, 0.2) 100%),
    url("../images/hero-bg.webp") center top / cover no-repeat;
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 153px;
  text-align: center;
  color: var(--white);
}

.hero-copy h1 {
  margin: 0 0 30px;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.25;
}

.hero-copy p {
  width: min(996px, 100%);
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.purpose-section {
  padding: 119px 0 164px;
}

.purpose-grid {
  display: grid;
  grid-template-columns: 488px 590px;
  justify-content: space-between;
  align-items: start;
  gap: 48px 72px;
}

.purpose-media {
  margin: 0;
  width: 488px;
  height: 509px;
  overflow: hidden;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

.purpose-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.purpose-copy {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-top: 6px;
}

.eyebrow {
  align-self: flex-start;
  padding: 10px 20px;
  border: 1px solid #4bacff;
  border-radius: 20px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 1.6px;
}

.purpose-copy h2,
.trust-header h3,
.cta-banner h3 {
  margin: 0;
}

.purpose-copy h2 {
  max-width: 590px;
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
}

.purpose-copy h2 span {
  color: var(--blue);
}

.body-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.body-copy p {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.trust-section {
  padding-bottom: 120px;
}

.trust-panel {
  padding: 80px 0;
  border-radius: var(--radius-large);
  background: var(--white);
}

.trust-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: min(558px, calc(100% - 48px));
  margin: 0 auto 80px;
  text-align: center;
}

.trust-header h3 {
  color: var(--blue);
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
}

.trust-header p {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.trust-card {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-height: 237px;
  padding: 30px 45px 30px 32px;
  border-radius: var(--radius-large);
  background: var(--card-bg);
}

.icon-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.25);
}

.icon-shell img {
  max-width: 34px;
  max-height: 34px;
}

.trust-card h4 {
  margin: 0 0 15px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.trust-card p {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.cta-section {
  padding-bottom: 70px;
}

.cta-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  min-height: 243px;
  padding: 56px 48px;
  border-radius: var(--radius-large);
  background: url("../images/hero-bg.webp") center center / cover no-repeat;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 92, 215, 0.24) 0%, rgba(21, 10, 120, 0.28) 100%);
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
}

.cta-banner p {
  max-width: 903px;
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.site-footer {
  background: var(--nav-bg);
  color: var(--white);
  padding: 100px 0 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 126px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 51px;
}

.footer-brand img {
  width: 230px;
  height: 102px;
  object-fit: cover;
}

.footer-brand p,
.footer-column a,
.footer-column p,
.footer-disclaimer,
.footer-copyright {
  color: var(--muted-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 100px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-column h5 {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
}

.footer-column a,
.footer-column p {
  margin: 0;
  transition: opacity 0.2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  opacity: 0.8;
}

.footer-bottom {
  margin-top: 34px;
}

.footer-disclaimer {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--muted-white);
}

.footer-copyright {
  margin: 20px 0 0;
  line-height: 28px;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  width: 84px;
  height: 84px;
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
}

.floating-whatsapp img {
  width: 100%;
  height: 100%;
}

.exchange-hero-panel {
  position: relative;
  min-height: 998px;
  border-bottom-left-radius: var(--radius-xl);
  border-bottom-right-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(8, 18, 103, 0.08) 0%, rgba(8, 18, 103, 0.18) 100%),
    url("../images/exchange-hero-bg.webp") center top / cover no-repeat;
  overflow: hidden;
}

.exchange-hero-copy {
  width: min(996px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 95px;
  color: var(--white);
  text-align: center;
}

.exchange-hero-copy h1 {
  margin: 0 0 30px;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.2;
}

.exchange-hero-copy p {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.exchange-hero-phones-frame {
  position: absolute;
  right: 0;
  bottom: 34px;
  left: 0;
  width: min(1196px, calc(100% - 48px));
  height: 620px;
  margin: 0 auto;
  overflow: visible;
}

.exchange-hero-phones-frame img {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: clamp(420px, 45.85%, 668px);
  transform: translateX(-50%);
}

.exchange-form-section {
  padding: 121px 0 110px;
}

.exchange-form-panel {
  padding: 50px;
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: 16px 16px 39.6px rgba(0, 0, 0, 0.1);
}

.exchange-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.exchange-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 488px));
  gap: 30px 122px;
  width: 100%;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field-group-full {
  grid-column: 1 / -1;
}

.field-label {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.field-control {
  width: 100%;
  height: 44px;
  padding: 10px 20px;
  border: 0;
  border-radius: 10px;
  background: #ededed;
  color: var(--text);
  font-family: inherit;
  font-size: 20px;
  line-height: 1.2;
}

.field-control:focus {
  outline: 2px solid rgba(75, 172, 255, 0.55);
  outline-offset: 2px;
}

.field-control[type="number"]::-webkit-outer-spin-button,
.field-control[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.field-control[type="number"] {
  -moz-appearance: textfield;
}

.field-select-wrap {
  position: relative;
}

.field-select {
  appearance: none;
  padding-right: 58px;
  cursor: pointer;
}

.field-select:invalid {
  color: #777777;
}

.field-chevron {
  position: absolute;
  top: 50%;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  transform: translateY(-50%) scaleY(-1);
  pointer-events: none;
}

.field-chevron img {
  width: 15px;
  height: 9px;
}

.exchange-form-note {
  max-width: 707px;
  color: #777777;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
}

.exchange-form-note p {
  margin: 0;
}

.exchange-form-note ul {
  display: inline-block;
  margin: 0;
  padding-left: 18px;
  text-align: left;
}

.exchange-steps-section {
  padding: 0 0 100px;
}

.exchange-steps-header {
  width: min(558px, calc(100% - 48px));
  margin: 0 auto 40px;
  text-align: center;
}

.exchange-steps-header h2 {
  margin: 0 0 25px;
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
}

.exchange-steps-header h2 span {
  color: var(--blue);
}

.exchange-steps-header p {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.exchange-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 303px));
  justify-content: center;
  gap: 110px;
}

.exchange-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 27px;
  text-align: center;
}

.exchange-step-number {
  width: 100%;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 180px;
  font-weight: 400;
  line-height: 1;
}

.exchange-step h3 {
  margin: 0 0 15px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.exchange-step p {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.exchange-faq-section {
  border-top-left-radius: var(--radius-large);
  border-top-right-radius: var(--radius-large);
  background: var(--white);
  padding: 50px 120px 100px;
}

.exchange-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 700px);
  justify-content: center;
  gap: 160px;
}

.exchange-faq-heading {
  padding-top: 30px;
}

.exchange-faq-heading h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--text);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 90px;
  padding: 30px 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.faq-trigger span {
  flex: 1 1 auto;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.faq-arrow {
  flex: 0 0 auto;
  width: 15px;
  height: 9px;
  transform: scaleY(-1);
  transition: transform 0.35s ease;
}

.faq-item.is-open .faq-arrow {
  transform: scaleY(1);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0;
  opacity: 0;
  overflow: hidden;
  transition: grid-template-rows 0.45s ease, padding 0.45s ease, opacity 0.35s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  padding: 0 0 30px;
  opacity: 1;
}

.faq-answer > * {
  min-height: 0;
}

.faq-answer p {
  margin: 0;
  overflow: hidden;
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
}

@media (max-width: 1100px) {
  .purpose-grid {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
  }

  .purpose-copy {
    width: min(590px, 100%);
    padding-top: 0;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .footer-links {
    gap: 34px 48px;
  }

  .exchange-form-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .exchange-faq-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .exchange-faq-heading {
    padding-top: 0;
  }

  .exchange-steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
  }
}

@media (max-width: 900px) {
  body.nav-open {
    overflow: hidden;
  }

  .navbar {
    position: relative;
    z-index: 130;
  }

  .nav-inner {
    position: relative;
    z-index: 131;
  }

  .container {
    width: min(var(--content-width), calc(100% - 32px));
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 141;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 16px;
    left: 16px;
    z-index: 140;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(15, 6, 22, 0.96);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 125;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0s linear 0.24s;
    appearance: none;
  }

  body.nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.24s ease;
  }

  .nav-link,
  .button-small {
    justify-content: center;
  }

  .hero-panel {
    min-height: 460px;
  }

  .hero-copy {
    padding-top: 124px;
  }

  .hero-copy h1 {
    font-size: 52px;
    line-height: 1.2;
  }

  .purpose-section {
    padding: 88px 0 112px;
  }

  .trust-section {
    padding-bottom: 88px;
  }

  .trust-panel {
    padding: 64px 0;
  }

  .trust-grid,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-section {
    padding-bottom: 56px;
  }

  .cta-banner {
    padding: 48px 28px;
  }

  .site-footer {
    padding: 80px 0 64px;
  }

  .exchange-hero-panel {
    min-height: 860px;
  }

  .exchange-hero-copy {
    width: min(996px, calc(100% - 32px));
    padding-top: 78px;
  }

  .exchange-hero-copy h1 {
    font-size: 52px;
    line-height: 1.2;
  }

  .exchange-hero-phones-frame {
    width: calc(100% - 32px);
    height: 500px;
    margin-top: 60px;
  }

  .exchange-form-section {
    padding: 88px 0;
  }

  .exchange-form-panel {
    padding: 36px 24px;
  }

  .exchange-steps-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 420px;
    gap: 30px;
  }

  .exchange-faq-section {
    padding: 50px 24px 80px;
  }

  .faq-trigger span {
    font-size: 22px;
  }
}

@media (max-width: 680px) {
  .brand,
  .brand img {
    width: 180px;
    height: auto;
  }

  .footer-brand img {
    width: 165px;
    height: 73px;
    object-fit: cover;
  }

  .nav-inner {
    min-height: 88px;
  }

  .hero-panel {
    min-height: 390px;
    background-position: 58% center;
  }

  .hero-copy {
    padding-top: 90px;
  }

  .hero-copy h1 {
    margin-bottom: 18px;
    font-size: 42px;
  }

  .hero-copy p,
  .body-copy p,
  .trust-header p,
  .trust-card p,
  .cta-banner p {
    font-size: 18px;
    line-height: 28px;
  }

  .purpose-media {
    width: 100%;
    height: auto;
    aspect-ratio: 488 / 509;
  }

  .purpose-copy h2,
  .trust-header h3 {
    font-size: 34px;
    line-height: 46px;
  }

  .cta-banner h3 {
    font-size: 30px;
    line-height: 40px;
  }

  .trust-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer {
    position: relative;
    padding: 50px 0;
  }

  .footer-top.container,
  .footer-bottom.container {
    width: calc(100% - 40px);
  }

  .footer-top {
    gap: 40px;
  }

  .footer-brand {
    gap: 25px;
  }

  .footer-brand p,
  .footer-column a,
  .footer-column p,
  .footer-disclaimer,
  .footer-copyright {
    color: #ffffff;
    font-size: 14px;
    line-height: 22px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 40px 24px;
  }

  .footer-column {
    gap: 18px;
  }

  .footer-column h5 {
    font-size: 16px;
    line-height: 21px;
  }

  .footer-bottom {
    margin-top: 40px;
  }

  .footer-disclaimer {
    padding: 0 0 14px;
    border-bottom-color: #ffffff;
  }

  .footer-copyright {
    margin-top: 15px;
    line-height: 22px;
  }

  .trust-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .floating-whatsapp {
    position: fixed;
    right: 14px;
    bottom: 18px;
    top: auto;
    z-index: 30;
    width: 80px;
    height: 80px;
  }

  .exchange-hero-panel {
    min-height: 690px;
    background-position: center center;
  }

  .exchange-hero-copy h1 {
    margin-bottom: 18px;
    font-size: 42px;
  }

  .exchange-hero-copy p,
  .exchange-steps-header p,
  .exchange-step p,
  .faq-answer p {
    font-size: 18px;
    line-height: 28px;
  }

  .exchange-hero-phones-frame {
    height: 340px;
    margin-top: 44px;
  }

  .exchange-hero-phones-frame img {
    width: clamp(300px, 72vw, 460px);
  }

  .field-label,
  .field-control,
  .exchange-step h3 {
    font-size: 18px;
  }

  .exchange-form-note {
    font-size: 15px;
    line-height: 24px;
  }

  .exchange-steps-header h2,
  .exchange-faq-heading h2 {
    font-size: 34px;
    line-height: 46px;
  }

  .exchange-step-number {
    font-size: 120px;
  }

  .faq-trigger {
    min-height: 76px;
    padding: 24px 0;
  }

  .faq-trigger span {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.giftcard-force-motion) .nav-toggle,
  body:not(.giftcard-force-motion) .nav-toggle span {
    transition: none;
  }
}
