* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  }

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

button, input, select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(229, 231, 235, .8);
  backdrop-filter: blur(18px);
}

.nav-container {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-symbol {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--primary), var(--primary-hover));
  border-radius: 13px;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0, 57, 124, .2);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-copy strong {
  color: var(--primary);
  font-size: 19px;
}

.brand-copy small {
  color: var(--muted);
  font-size: 10px;
  direction: ltr;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.desktop-nav a {
  color: #344054;
  font-size: 14px;
  font-weight: 600;
  transition: .2s ease;
}

.desktop-nav a:hover {
  color: var(--primary-hover);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  min-height: 46px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 10px 22px rgba(0, 57, 124, .18);
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-outline {
  color: var(--primary);
  background: transparent;
  border-color: #BFCFE3;
}

.btn-white {
  color: var(--primary);
  background: var(--white);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-accent {
  color: var(--white);
  background: var(--accent);
}

.btn-large {
  min-height: 54px;
  padding-inline: 25px;
}

.btn-block {
  width: 100%;
}

.menu-button, .mobile-menu {
  display: none;
}

.hero {
  min-height: 690px;
  position: relative;
  overflow: hidden;
  padding: 82px 0 175px;
  background:
    radial-gradient(circle at 10% 15%, rgba(0, 163, 163, .12), transparent 25%),
    linear-gradient(135deg, #F8FBFF 0%, #EEF5FC 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: var(--white);
  clip-path: polygon(0 58%, 100% 0, 100% 100%, 0 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 75px;
}

.eyebrow, .section-label, .light-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary-hover);
  font-size: 13px;
  font-weight: 800;
  }

.eyebrow {
  padding: 7px 13px;
  background: rgba(0, 86, 179, .08);
  border: 1px solid rgba(0, 86, 179, .12);
  border-radius: 999px;
  }

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(16, 185, 129, .12);
}

.hero h1 {
  max-width: 650px;
  margin: 22px 0 18px;
  color: #132238;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.35;
  letter-spacing: -2px;
}

.hero h1 span {
  display: block;
  color: var(--primary);
}

.hero-content > p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
}

.trust-row {
  margin-top: 38px;
  padding-top: 24px;
  display: flex;
  gap: 30px;
  border-top: 1px solid #DDE7F2;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(0, 163, 163, .09);
  border-radius: 10px;
  font-weight: 900;
}

.trust-item div {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

.trust-item strong {
  font-size: 13px;
}

.trust-item small {
  color: var(--muted);
  font-size: 11px;
}

.hero-visual {
  min-height: 435px;
  position: relative;
  display: grid;
  place-items: center;
}

.transfer-card {
  width: 100%;
  max-width: 470px;
  padding: 27px;
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0, 57, 124, .18);
}

.transfer-card-head {
  padding-bottom: 22px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.transfer-card-head div {
  display: flex;
  flex-direction: column;
}

.transfer-card-head small {
  color: var(--muted);
}

.transfer-card-head strong {
  color: var(--primary);
  font-size: 21px;
}

.secure-badge {
  height: fit-content;
  padding: 5px 10px;
  color: #067647;
  background: #ECFDF3;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.route {
  padding: 32px 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
}

.route-city {
  display: flex;
  align-items: center;
  flex-direction: column;
  line-height: 1.6;
}

.flag-circle {
  width: 58px;
  height: 58px;
  margin-bottom: 9px;
  display: grid;
  place-items: center;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 26px;
}

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

.route-line {
  height: 2px;
  position: relative;
  background: linear-gradient(to left, var(--accent), var(--primary));
}

.route-line::before, .route-line::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: -3px;
  background: var(--primary);
  border-radius: 50%;
}

.route-line::before { right: 0; }
.route-line::after { left: 0; background: var(--accent); }

.route-line span {
  width: 39px;
  height: 39px;
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  border: 5px solid var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  font-weight: 800;
}

.transfer-status {
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #067647;
  background: #F0FDF7;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
}

.transfer-status small {
  margin-right: auto;
  color: var(--muted);
  font-weight: 500;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
}

.floating-card {
  position: absolute;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.floating-card > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  border-radius: 10px;
  font-weight: 800;
}

.floating-card div {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

.floating-card strong { font-size: 12px; }
.floating-card small { color: var(--muted); font-size: 9px; }

.floating-pound {
  top: 17px;
  right: -20px;
}

.floating-support {
  bottom: 11px;
  left: -28px;
}

.floating-support > span {
  background: var(--accent);
}

.rate-tools {
  position: relative;
  z-index: 5;
  margin-top: -106px;
  padding-bottom: 50px;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 22px;
}

.panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.panel-heading h2 {
  margin: 2px 0 0;
  color: #172B45;
  font-size: 23px;
}

.update-badge {
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #067647;
  background: #ECFDF3;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.update-badge i {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
}

.rate-note {
  margin: 12px 0 19px;
  color: var(--muted);
  font-size: 11px;
}

.rates-table {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.rate-row {
  min-height: 78px;
  padding: 13px 17px;
  display: grid;
  grid-template-columns: 1.5fr .7fr .55fr;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.rate-row:last-child {
  border-bottom: 0;
}

.rate-header {
  min-height: 41px;
  color: var(--muted);
  background: var(--background);
  font-size: 11px;
  font-weight: 600;
}

.featured-rate {
  background: linear-gradient(to left, rgba(0, 57, 124, .035), transparent);
}

.currency {
  display: flex;
  align-items: center;
  gap: 11px;
}

.currency-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  font-size: 19px;
  font-weight: 800;
}

.gbp { color: var(--primary); background: #EAF2FC; }
.usd { color: #067647; background: #ECFDF3; }
.eur { color: #B54708; background: #FFF6ED; }

.currency div, .price {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

.currency strong, .price strong {
  font-size: 14px;
}

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

.currency em {
  padding: 3px 7px;
  color: var(--primary);
  background: #EAF2FC;
  border-radius: 999px;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}

.rate-action {
  padding: 8px 11px;
  color: var(--primary);
  background: #EEF5FC;
  border-radius: 9px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  transition: .2s ease;
}

.rate-action:hover {
  color: var(--white);
  background: var(--primary);
}

.calculator-icon {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  border-radius: 12px;
  font-weight: 900;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.calculator-panel .field {
  margin-top: 17px;
}

.field label {
  color: #344054;
  font-size: 12px;
  font-weight: 700;
}

.field input, .field select {
  width: 100%;
  height: 49px;
  padding: 0 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid #D0D5DD;
  border-radius: 10px;
  outline: none;
  transition: .2s ease;
}

.field input:focus, .field select:focus {
  border-color: var(--primary-hover);
  box-shadow: 0 0 0 4px rgba(0, 86, 179, .08);
}

.input-with-addon {
  position: relative;
}

.input-with-addon input {
  padding-left: 50px;
  direction: ltr;
  text-align: right;
}

.input-with-addon span {
  position: absolute;
  top: 50%;
  left: 15px;
  color: var(--primary);
  transform: translateY(-50%);
  font-weight: 800;
}

.exchange-divider {
  height: 23px;
  position: relative;
  margin: 9px 0;
  border-bottom: 1px dashed var(--border);
}

.exchange-divider span {
  width: 30px;
  height: 30px;
  position: absolute;
  left: 50%;
  bottom: -15px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  transform: translateX(-50%);
}

.result-box {
  margin: 24px 0 16px;
  padding: 14px;
  background: var(--background);
  border-radius: 12px;
}

.result-box small, .result-box p {
  color: var(--muted);
  font-size: 10px;
}

.result-box div {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.result-box strong {
  color: var(--primary);
  font-size: 22px;
}

.result-box span {
  color: var(--muted);
  font-size: 11px;
}

.result-box p {
  margin: 3px 0 0;
}

.section-heading {
  margin-bottom: 45px;
}

.section-heading.centered {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2, .why-content h2 {
  margin: 7px 0 10px;
  color: #162B45;
  font-size: clamp(27px, 3vw, 39px);
  line-height: 1.45;
}

.section-heading p, .why-content > p {
  margin: 0;
  color: var(--muted);
}

.services {
  background: var(--white);
}

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

.service-card {
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #B9CDE4;
  box-shadow: var(--shadow-md);
}

.primary-service {
  background: linear-gradient(145deg, #F4F8FD, #FFFFFF);
  border-top: 4px solid var(--primary);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  border-radius: 15px;
  font-size: 23px;
  font-weight: 900;
}

.service-icon.teal { background: var(--accent); }
.service-icon.light { color: var(--primary); background: #00a3a3; }

.priority-tag {
  padding: 5px 9px;
  color: var(--primary);
  background: #EAF2FC;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.priority-tag.secondary {
  color: #087F7F;
  background: #E7F8F8;
}

.service-card h3 {
  margin: 21px 0 8px;
  color: #172B45;
  font-size: 19px;
}

.service-card p {
  min-height: 75px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-card ul {
  padding: 0;
  margin: 18px 0 21px;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-right: 22px;
  color: #475467;
  font-size: 12px;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: var(--success);
  font-weight: 900;
}

.service-card > a, .blog-body a, .text-link {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.service-card > a span {
  margin-right: 5px;
}

.why-us {
  background: var(--background);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 85px;
}

.why-list {
  margin-top: 32px;
  display: grid;
  gap: 15px;
}

.why-item {
  padding: 17px;
  display: flex;
  gap: 15px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 15px;
}

.why-item > span {
  width: 43px;
  height: 43px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: #EAF2FC;
  border-radius: 12px;
  font-weight: 900;
}

.why-item h3 {
  margin: 0;
  font-size: 15px;
}

.why-item p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.trust-board {
  padding: 28px;
  background: linear-gradient(145deg, #00397C, #0056B3);
  border-radius: 26px;
  box-shadow: 0 25px 60px rgba(0, 57, 124, .22);
}

.trust-board-head {
  margin-bottom: 23px;
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.trust-board-head span {
  opacity: .72;
  font-size: 12px;
}

.trust-board-head strong {
  font-size: 22px;
}

.office-card {
  padding: 17px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(255, 255, 255, .96);
  border-radius: 15px;
}

.office-flag {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  background: var(--background);
  border-radius: 12px;
  font-size: 22px;
}

.office-card div {
  display: flex;
  flex-direction: column;
}

.office-card strong {
  color: var(--primary);
  font-size: 14px;
}

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

.office-card em {
  margin-right: auto;
  padding: 3px 7px;
  color: #067647;
  background: #ECFDF3;
  border-radius: 999px;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.connection-line {
  height: 49px;
  position: relative;
  display: grid;
  place-items: center;
}

.connection-line::before {
  content: "";
  height: 100%;
  border-right: 2px dashed rgba(255,255,255,.4);
}

.connection-line span {
  position: absolute;
  padding: 2px 8px;
  color: rgba(255,255,255,.8);
  background: #074F98;
  font-size: 9px;
}

.security-strip {
  margin-top: 20px;
  padding: 10px;
  color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .1);
  border-radius: 10px;
  text-align: center;
  font-size: 10px;
}

.process {
  overflow: hidden;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 47px;
  right: 12%;
  left: 12%;
  border-top: 2px dashed #B9CDE4;
}

.timeline-item {
  position: relative;
  padding: 20px;
  text-align: center;
}

.timeline-icon {
  width: 58px;
  height: 58px;
  position: relative;
  z-index: 2;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: var(--white);
  border: 2px solid #C7D8EA;
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--white);
  font-size: 20px;
  font-weight: 900;
}

.timeline-number {
  width: 23px;
  height: 23px;
  position: absolute;
  z-index: 3;
  top: 13px;
  right: calc(50% - 40px);
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  border: 3px solid var(--white);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
}

.timeline-item h3 {
  margin: 0 0 7px;
  color: #172B45;
  font-size: 16px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.consultation {
  padding-top: 45px;
}

.consultation-box {
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: center;
  gap: 70px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 50%, rgba(0,163,163,.28), transparent 30%),
    linear-gradient(135deg, #00316A, #0056B3);
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0, 57, 124, .22);
}

.light-label {
  color: #87E0DE;
}

.consultation-content h2 {
  margin: 8px 0 10px;
  font-size: 33px;
}

.consultation-content p {
  margin: 0;
  color: rgba(255,255,255,.75);
}

.consultation-benefits {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 11px;
}

.consultation-form {
  padding: 23px;
  color: var(--text);
  background: var(--white);
  border-radius: 18px;
}

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

.consultation-form button {
  margin-top: 15px;
}

.consultation-form > small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  text-align: center;
  font-size: 9px;
}

.form-message {
  display: none;
  margin-top: 10px;
  padding: 8px;
  color: #067647;
  background: #ECFDF3;
  border-radius: 8px;
  text-align: center;
  font-size: 11px;
}

.heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.review-summary {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-summary > strong {
  color: var(--primary);
  font-size: 38px;
}

.review-summary div {
  display: flex;
  flex-direction: column;
}

.review-summary span, .stars {
  color: #F79009;
  letter-spacing: 2px;
}

.review-summary small {
  color: var(--muted);
  font-size: 9px;
}

.reviews {
  background: var(--background);
}

.reviews-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.stars {
  font-size: 13px;
}

.review-card > p {
  min-height: 95px;
  color: #475467;
  font-size: 13px;
}

.review-user {
  padding-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
}

.review-user > span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  border-radius: 50%;
  font-weight: 800;
}

.review-user div {
  display: flex;
  flex-direction: column;
}

.review-user strong {
  font-size: 12px;
}

.review-user small {
  color: var(--muted);
  font-size: 9px;
}

.blog-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: .25s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-cover {
  height: 170px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 53px;
  font-weight: 900;
}

.cover-one { background: linear-gradient(135deg, #00397C, #2380D6); }
.cover-two { background: linear-gradient(135deg, #007B7B, #00BDBD); }
.cover-three { background: linear-gradient(135deg, #263B54, #637C99); }

.blog-body {
  padding: 22px;
}

.blog-category {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.blog-body h3 {
  min-height: 58px;
  margin: 6px 0;
  color: #172B45;
  font-size: 16px;
}

.blog-body p {
  color: var(--muted);
  font-size: 11px;
}



@media (max-width: 1050px) {
  .desktop-nav {
    gap: 15px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .hero-grid {
    gap: 35px;
  }

  .why-grid {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .desktop-nav, .desktop-only {
    display: none;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 10px;
  }

  .menu-button span {
    height: 2px;
    width: 100%;
    background: var(--primary);
    border-radius: 2px;
  }

  .mobile-menu {
    padding: 10px 20px 20px;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    background: var(--white);
    border-top: 1px solid var(--border);
  }

  .mobile-menu.open {
    display: grid;
  }

  .mobile-menu a {
    padding: 10px;
    background: var(--background);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
  }

  .hero {
    padding-top: 55px;
  }

  .hero-grid, .tools-grid, .why-grid, .consultation-box {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero h1, .hero-content > p {
    margin-inline: auto;
  }

  .hero-actions, .trust-row {
    justify-content: center;
  }

  .hero-visual {
    max-width: 560px;
    width: 100%;
    margin-inline: auto;
  }

  .rate-tools {
    margin-top: -85px;
  }

  .services-grid, .reviews-grid, .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card:last-child, .blog-card:last-child {
    grid-column: 1 / -1;
  }

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

  .timeline::before {
    display: none;
  }

  .consultation-box {
    gap: 35px;
  }

  
}

@media (max-width: 620px) {
  body {
    padding-bottom: 72px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 70px 0;
  }

  .nav-container {
    min-height: 68px;
  }

  .brand-symbol {
    width: 39px;
    height: 39px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .nav-actions > .btn-primary {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 45px 0 145px;
  }

  .hero::after {
    height: 65px;
  }

  .hero-grid {
    gap: 35px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: 35px;
    letter-spacing: -1px;
  }

  .hero-content > p {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    text-align: right;
  }

  .trust-item:last-child {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .hero-visual {
    min-height: 330px;
  }

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

  .transfer-card-head strong {
    font-size: 17px;
  }

  .route {
    padding: 24px 0;
  }

  .flag-circle {
    width: 49px;
    height: 49px;
    font-size: 21px;
  }

  .transfer-status {
    flex-wrap: wrap;
  }

  .transfer-status small {
    width: 100%;
    margin-right: 17px;
  }

  .floating-card {
    display: none;
  }

  .rate-tools {
    margin-top: -97px;
  }

  .panel {
    padding: 18px;
    border-radius: 17px;
  }

  .panel-heading h2 {
    font-size: 19px;
  }

  .rate-row {
    min-height: 82px;
    padding: 11px;
    grid-template-columns: 1.45fr .65fr;
    gap: 5px;
  }

  .rate-header {
    display: none;
  }

  .currency-icon {
    width: 37px;
    height: 37px;
  }

  .currency em {
    display: none;
  }

  .rate-action {
    grid-column: 1 / -1;
    width: 100%;
    padding: 6px;
  }

  .services-grid, .reviews-grid, .blog-grid, .timeline {
    grid-template-columns: 1fr;
  }

  .service-card:last-child, .blog-card:last-child {
    grid-column: auto;
  }

  .service-card p {
    min-height: 0;
  }

  .why-grid {
    gap: 30px;
  }

  .trust-board {
    padding: 20px;
  }

  .timeline {
    gap: 2px;
  }

  .timeline-item {
    padding: 10px 20px 26px 70px;
    text-align: right;
  }

  .timeline-icon {
    position: absolute;
    top: 10px;
    right: auto;
    left: 0;
  }

  .timeline-number {
    top: 3px;
    right: auto;
    left: 43px;
  }

  .consultation-box {
    width: calc(100% - 28px);
    padding: 28px 20px;
    border-radius: 21px;
  }

  .consultation-content h2 {
    font-size: 25px;
  }

  .consultation-benefits {
    flex-direction: column;
    gap: 5px;
  }

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

  .heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-summary {
    align-self: stretch;
    padding: 12px;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
  }

  .review-card > p, .blog-body h3 {
    min-height: 0;
  }


  .mobile-sticky-action {
    height: 54px;
    position: fixed;
    z-index: 200;
    right: 14px;
    bottom: 10px;
    left: 14px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--primary);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,57,124,.34);
    font-size: 13px;
    font-weight: 800;
  }
}