:root {
  --text-primary: #111111;
  --text-secondary: #454545;
  --surface: #ffffff;
  --bg: #ffffff;
  --badge-bg: #000000;
  --badge-text: #ffffff;
  --footer-border: #d9dbe1;
  --border: #d8d8d8;
  --panel-bg: #f9f9f9;
  --link: #1f5fa7;
  --container: 1120px;
  --radius-lg: 18px;
  --radius-xl: 2.2rem;
  --section-space: 3rem;
  --section-space-lg: 5rem;
}

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

body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

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

.site-header,
.hero,
.section,
.site-footer,
.support-hero {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 44px;
  height: 44px;
}

.brand-text {
  font-size: 1.1rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.25rem;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--badge-bg);
  color: var(--badge-text);
}

.site-header-language,
.site-header-market {
  position: relative;
}

.site-header-market-flag {
  display: none;
}

.site-header-language select,
.site-header-market select {
  appearance: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  padding: 0.55rem 2rem 0.55rem 0.9rem;
  font: inherit;
  color: inherit;
  cursor: pointer;
  max-width: 11rem;
}

.site-header-language select {
  max-width: 5.5rem;
  padding-right: 1.75rem;
  text-transform: uppercase;
  font-weight: 500;
}

.site-header-select-caret,
.site-header-language-caret {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  width: 12px;
  height: 7px;
  transform: translateY(-50%);
  pointer-events: none;
}

.corridor-picker {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
  max-width: 420px;
}

.corridor-picker-inline {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  max-width: 100%;
  margin-top: 1.75rem;
}

.corridor-picker-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 4.5rem;
  padding: 0 3rem 0 1rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.corridor-picker-flag {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 2.5rem;
}

.corridor-picker-globe {
  width: 2.1rem;
  height: 2.1rem;
  object-fit: contain;
  flex: 0 0 2.1rem;
}

.corridor-picker-inline select {
  appearance: none;
  border: 0;
  background: transparent;
  width: 100%;
  min-width: 0;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #2e6f85;
  cursor: pointer;
  padding: 0;
}

.corridor-picker-inline select:focus {
  outline: none;
}

.corridor-picker-inline option {
  color: var(--text-primary);
}

.corridor-picker-caret {
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 16px;
  height: 10px;
  transform: translateY(-50%);
  pointer-events: none;
  color: #1f3244;
}

.corridor-picker-origin {
  width: fit-content;
  min-width: 7.25rem;
  padding-right: 3.25rem;
}

.corridor-picker-destination {
  width: fit-content;
  min-width: 0;
}

.corridor-picker-display {
  color: var(--text-primary);
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}

.corridor-picker-destination select {
  position: absolute;
  inset: 0;
  width: 100%;
  min-width: 0;
  opacity: 0;
  cursor: pointer;
}

.corridor-picker-origin select {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.corridor-picker-field {
  display: grid;
  gap: 0.35rem;
}

.corridor-picker-field label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.corridor-picker-field select {
  appearance: none;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  padding: 0.7rem 0.85rem;
  font: inherit;
  color: inherit;
}

.corridor-picker .btn {
  justify-self: start;
  margin-top: 0.25rem;
}

.site-header-language {
  position: relative;
}

.site-header-language-caret {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  width: 12px;
  height: 7px;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px);
  gap: 2.2rem;
  align-items: center;
  padding: 3rem 0 5rem;
}

.hero-copy h1,
.section-title,
.support-title {
  margin: 0 0 1.1rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-subtitle,
.section-lead {
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.45;
  max-width: 42rem;
}

.section-lead {
  margin-top: 0.35rem;
}

.root-cta-wrap {
  margin: 1.5rem 0 0;
}

.hero-copy > .btn {
  margin-top: 2rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.mobile-sticky-cta {
  display: none;
}

.bottom-sheet[hidden] {
  display: none;
}

.bottom-sheet {
  position: fixed;
  inset: 0;
  z-index: 110;
}

.bottom-sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.bottom-sheet-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: min(78vh, 34rem);
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: 1.25rem 1.25rem 0 0;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.18);
  padding: 0.5rem 0 calc(1rem + env(safe-area-inset-bottom, 0px));
  animation: bottom-sheet-up 0.22s ease-out;
}

@keyframes bottom-sheet-up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.bottom-sheet-handle {
  width: 2.5rem;
  height: 0.3rem;
  border-radius: 999px;
  background: var(--border);
  margin: 0.35rem auto 0.75rem;
}

.bottom-sheet-title {
  margin: 0 1.25rem 0.75rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.bottom-sheet-list {
  list-style: none;
  margin: 0;
  padding: 0 0.5rem 0.5rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.bottom-sheet-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 0;
  background: transparent;
  padding: 0.9rem 0.85rem;
  border-radius: 0.85rem;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.bottom-sheet-option:hover,
.bottom-sheet-option:focus-visible {
  background: rgba(0, 0, 0, 0.04);
  outline: none;
}

.bottom-sheet-option.is-selected {
  background: rgba(0, 0, 0, 0.06);
}

.bottom-sheet-flag {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 2rem;
}

.bottom-sheet-check {
  margin-left: auto;
  color: var(--text-secondary);
  font-weight: 700;
}

@media (max-width: 920px) {
  .corridor-picker-inline select,
  .site-header-market select {
    pointer-events: none;
  }

  .corridor-picker-pill,
  .site-header-market {
    cursor: pointer;
  }

  .site-header-market {
    box-sizing: border-box;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .site-header-market-flag {
    display: block;
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 999px;
    object-fit: cover;
  }

  .site-header-market select {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    opacity: 0;
    padding: 0;
    border: 0;
    font-size: 0;
  }

  .site-header-market .site-header-select-caret {
    display: none;
  }
}

body.bottom-sheet-open {
  overflow: hidden;
}

body.bottom-sheet-open .mobile-sticky-cta {
  display: none !important;
}

.store-badges {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--badge-bg);
  color: var(--badge-text);
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  min-width: 255px;
  user-select: none;
  text-decoration: none;
}

.badge-icon-image {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 34px;
}

.badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.badge-overline {
  font-size: 0.78rem;
  font-weight: 400;
}

.badge-title {
  margin-top: 0.1rem;
  font-size: 2rem;
  font-weight: 500;
}

.hero-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  background: var(--panel-bg);
}

.section {
  padding: var(--section-space-lg) 0;
}

.section:first-of-type {
  padding-top: var(--section-space);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefit-card {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.benefit-icon {
  width: 210px;
  height: 210px;
  object-fit: contain;
  display: block;
  margin: 0 0 1rem;
  flex-shrink: 0;
}

.benefit-card,
.info-panel,
.referral-card,
.related-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--panel-bg);
}

.info-panel h2,
.referral-copy h2 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  line-height: 1.25;
}

.benefit-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  line-height: 1.25;
}

.info-panel p,
.referral-copy p,
.benefit-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.45;
}

.benefit-card p {
  margin: 0;
  flex: 1;
}

.benefits-cta-wrap {
  margin: 2.5rem 0 0;
  text-align: center;
}

.benefits-cta-wrap .btn {
  display: inline-flex;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.safety-card {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--panel-bg);
}

.safety-icon {
  width: 210px;
  height: 210px;
  object-fit: contain;
  display: block;
  margin: 0 0 1rem;
  flex-shrink: 0;
}

.safety-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  line-height: 1.25;
}

.safety-card p {
  margin: 0;
  flex: 1;
  color: var(--text-secondary);
  line-height: 1.45;
}

.safety-cta-wrap {
  margin: 2.5rem 0 0;
  text-align: center;
}

.safety-cta-wrap .btn {
  display: inline-flex;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.info-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  width: min(100% - 3rem, var(--container));
  margin: 0 auto;
  padding: var(--section-space-lg) 0;
}

.info-panel {
  padding: 1.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.related-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.related-card-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.related-card-flag {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.related-card svg {
  width: 20px;
  height: 12px;
  flex: 0 0 auto;
}

.related-card:hover,
.related-card:focus-visible {
  border-color: var(--text-primary);
  outline: none;
}

.referral-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
}

.customer-support-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--panel-bg);
  padding: clamp(2.5rem, 5vw, 4rem);
  min-height: clamp(20rem, 36vw, 30rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.customer-support-card.has-background {
  min-height: clamp(26rem, 48vw, 40rem);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.customer-support-card-bg {
  position: absolute;
  inset: 0;
  background-image: var(--customer-support-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.customer-support-card.has-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(249, 249, 249, 0) 0%,
    rgba(249, 249, 249, 0.45) 55%,
    rgba(249, 249, 249, 0.8) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.customer-support-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 40rem);
  margin: 0;
  text-align: center;
}

.customer-support-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
}

.customer-support-copy > p:not(.customer-support-cta-wrap) {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.45;
}

.customer-support-cta-wrap {
  margin: 0.75rem 0 0;
}

.customer-support-cta-wrap .btn {
  display: inline-flex;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.badge-coming-soon {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--badge-bg);
  color: var(--badge-text);
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 0.25rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 500;
  padding: 0.75rem 0;
}

.faq-answer p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.support-hero {
  padding: 3rem 0 5rem;
}

.support-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.support-description {
  margin: 1.5rem auto 0;
  max-width: 860px;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  line-height: 1.35;
}

.support-email-card {
  margin: 2rem auto 0;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--panel-bg);
  padding: 2rem 1rem;
}

.support-email-link {
  color: var(--link);
  text-decoration: none;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 500;
}

.blog-empty {
  color: var(--text-secondary);
}

.blog-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.blog-list li + li {
  margin-top: 1rem;
}

.blog-list a {
  color: var(--link);
  font-weight: 500;
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid var(--footer-border);
  padding: 2.25rem 0 3rem;
  margin-top: var(--section-space);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.brand:focus-visible,
.support-email-link:hover,
.support-email-link:focus-visible,
.blog-list a:hover {
  text-decoration: underline;
  outline: none;
}

.copyright {
  margin: 0.85rem 0 0;
  color: var(--text-secondary);
  font-size: 0.94rem;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.modal-dialog {
  position: relative;
  width: min(100%, 420px);
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
}

.signup-modal-subtitle {
  margin: 0.75rem 0 0;
  color: var(--text-secondary);
  line-height: 1.45;
  font-size: 0.95rem;
}

.signup-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.signup-form input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font: inherit;
}

.signup-form [data-signup-submit] {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.signup-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.signup-error {
  margin: 1rem 0 0;
  color: #b42318;
  line-height: 1.45;
}

.signup-success {
  margin: 1rem 0 0;
  color: var(--text-secondary);
  line-height: 1.45;
}

body.signup-modal-open {
  overflow: hidden;
}

body.signup-modal-open .mobile-sticky-cta {
  display: none !important;
}

@media (max-width: 920px) {
  .modal {
    display: block;
    padding: 0;
    place-items: unset;
  }

  .modal-dialog {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: min(88vh, 40rem);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 1.25rem 1.25rem 0 0;
    padding: 0.5rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.18);
    animation: bottom-sheet-up 0.22s ease-out;
  }

  .modal-close {
    top: 0.85rem;
    right: 1rem;
  }

  .modal-dialog > h2 {
    padding-right: 2rem;
    font-size: 1.35rem;
    line-height: 1.25;
    margin-top: 0.35rem;
  }
}

.how-to-send {
  padding-top: calc(var(--section-space-lg) + 2rem);
  padding-bottom: calc(var(--section-space-lg) + 2.5rem);
}

.how-to-send .section-title {
  margin-bottom: 0;
  text-align: center;
}

.how-to-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.how-to-send .how-to-cta-wrap {
  margin-top: 4.5rem;
}

.how-to-send .how-to-cta-wrap .btn {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.how-to-card {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.how-to-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-to-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.how-to-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.3;
}

.how-to-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.45;
  font-size: 0.95rem;
}

.how-to-cta-wrap {
  margin: 2.25rem 0 0;
  text-align: center;
}

.how-to-cta-wrap .btn {
  display: inline-flex;
}

.app-promo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.app-promo-media {
  width: 100%;
  min-height: clamp(32rem, 55vw, 45rem);
  background: transparent;
}

.app-promo-image {
  width: 100%;
  height: 100%;
  min-height: clamp(32rem, 55vw, 45rem);
  aspect-ratio: 4 / 5;
  object-fit: contain;
  display: block;
  border-radius: 0;
  background: transparent;
}

.app-promo-copy .section-title {
  margin-bottom: 1rem;
}

.app-promo-copy .section-lead {
  max-width: none;
}

.app-promo-cta-wrap {
  margin: 2rem 0 0;
  text-align: left;
}

.app-promo-cta-wrap .btn {
  display: inline-flex;
}

.app-promo-features {
  margin: 1.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-primary);
}

.app-promo-features li + li {
  margin-top: 0.45rem;
}

.app-install-button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.install-icon {
  display: inline-flex;
  width: 1.25rem;
  height: 1.25rem;
}

.install-icon.is-empty {
  display: none;
}

.install-icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 920px) {
  .hero,
  .benefits-grid,
  .safety-grid,
  .info-panels,
  .related-grid,
  .how-to-grid,
  .app-promo-grid {
    grid-template-columns: 1fr;
  }

  .app-promo-media,
  .app-promo-image {
    min-height: clamp(22rem, 69vw, 30rem);
  }

  .hero-media {
    max-width: 560px;
  }

  .corridor-picker-inline {
    width: 100%;
  }

  .badge-title {
    font-size: 1.8rem;
  }

  .customer-support-card.has-background::before {
    background: linear-gradient(
      180deg,
      rgba(249, 249, 249, 0) 0%,
      rgba(249, 249, 249, 0.55) 50%,
      rgba(249, 249, 249, 0.8) 100%
    );
  }
}

@media (max-width: 600px) {
  :root {
    --section-space: 2rem;
    --section-space-lg: 3.5rem;
  }

  .how-to-send {
    padding-top: calc(var(--section-space-lg) + 1rem);
    padding-bottom: calc(var(--section-space-lg) + 1.5rem);
  }

  .how-to-grid {
    margin-top: 3rem;
  }

  .how-to-card {
    gap: 0.4rem;
    align-items: center;
    text-align: center;
  }

  .how-to-media {
    min-height: 0;
    max-width: 82%;
    margin-left: auto;
    margin-right: auto;
  }

  .how-to-card h3,
  .how-to-card p {
    max-width: 82%;
  }

  .how-to-send .how-to-cta-wrap {
    margin-top: 3.5rem;
  }

  .site-header,
  .hero,
  .section,
  .site-footer,
  .support-hero,
  .info-panels {
    width: min(100% - 1.4rem, var(--container));
  }

  .site-header {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .site-header-actions {
    flex-wrap: nowrap;
    width: auto;
    margin-left: auto;
    justify-content: flex-end;
    gap: 0.45rem;
    flex-shrink: 0;
  }

  .site-header-actions .btn {
    box-sizing: border-box;
    height: 2.5rem;
    padding: 0 0.85rem;
    font-size: 0.9rem;
  }

  .site-header-language select {
    box-sizing: border-box;
    height: 2.5rem;
    max-width: 4.25rem;
    padding: 0 1.55rem 0 0.65rem;
    font-size: 0.9rem;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .brand-text {
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .corridor-picker {
    max-width: none;
  }

  .corridor-picker-inline {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .corridor-picker-destination {
    min-width: 0;
  }

  .corridor-picker-pill {
    min-height: 4rem;
  }

  .store-badge {
    min-width: 100%;
    padding-inline: 1.2rem;
  }

  .badge-title {
    font-size: 1.65rem;
  }

  .referral-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-sticky-cta.is-visible {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
  }

  .mobile-sticky-cta .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
  }

  body:has(.mobile-sticky-cta.is-visible) {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }
}
